Advertisement
rasperries

300px lp

Jan 19th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.29 KB | None | 0 0
  1. <!--I only ask you keep the credit intact--DO NOT MOVE IT/HIDE IT. Other than that, edit it all ye want. If you have questions, trot on over to leepace.tumblr.com -->
  2.  
  3.  
  4. <!DOCTYPE html>
  5. <head>
  6.  
  7. <!--random shit you need-->
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  13.  
  14. <!--Default Variables are here, folks-->
  15. <meta name="color:Background" content="#ffffff"/>
  16. <meta name="color:Text" content="#cccccc"/>
  17. <meta name="color:link" content="#a7a7a7"/>
  18. <meta name="color:title"content="#070707"/>
  19. <meta name="color:scrollbar" content="#d5d5d5" />
  20. <meta name="color:link hover" content="#8F8F8F"/>
  21. <meta name="image:header" content=""/>
  22.  
  23.  
  24.  
  25. <meta name="text:Link 1 URL" content="" />
  26. <meta name="text:Link 1" content="" />
  27. <meta name="text:Link 2 URL" content="" />
  28. <meta name="text:Link 2" content="" />
  29. <meta name="text:Link 3 URL" content="" />
  30. <meta name="text:Link 3" content="" />
  31.  
  32. <meta name="image:audio bg" content="http://static.tumblr.com/1fe0fb2eb9179fdba195906aa5c7bc29/ygd3n2x/TPHmil7fo/tumblr_static_diagonal_striped_brick.png">
  33. <meta name="if:Hide Tags" content="1">
  34.  
  35.  
  36.  
  37.  
  38. <!-- jquery -->
  39. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  40.  
  41.  
  42. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  43.  
  44. <script>
  45.  
  46. (function($){
  47.  
  48. $(document).ready(function(){
  49.  
  50. $("a[title]").style_my_tooltips({
  51.  
  52. tip_follows_cursor:true,
  53.  
  54. tip_delay_time:30,
  55.  
  56. tip_fade_speed:300,
  57.  
  58. attribute:"title"
  59.  
  60. });
  61.  
  62. });
  63.  
  64. })(jQuery);
  65.  
  66. </script>
  67.  
  68. <!--pop up-->
  69. <script type="text/javascript"
  70. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  71. <script>
  72. $(document).ready(function() {
  73. //
  74. $('a.poplight[href^=#]').click(function() {
  75. var popID = $(this).attr('rel'); //Get Popup Name
  76. var popURL = $(this).attr('href'); //Get Popup href to define size
  77. var query= popURL.split('?');
  78. var dim= query[1].split('&');
  79. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  80. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  81. var popMargTop = ($('#' + popID).height()) / 2;
  82. var popMargLeft = ($('#' + popID).width()) / 2;
  83. //Apply Margin to Popup
  84. $('#' + popID).css({
  85. 'margin-top' : -popMargTop,
  86. 'margin-left' : -popMargLeft
  87. });
  88. $('body').append('<div id="fade"></div>');
  89. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  90. return false;
  91. });
  92. $('a.close, #fade').live('click', function() {
  93. $('#fade , .popup_block').fadeOut(function() {
  94. $('#fade, a.close').remove(); //fade them both out
  95. });
  96. return false;
  97. });
  98. });
  99. </script>
  100.  
  101.  
  102. <script type="text/javascript">
  103. /* Photoset Resize Code by Kevin - EXCOLO.TUMBLR.COM */
  104. $(document).ready(function() {
  105. function photosetResize() {
  106. $('iframe.photoset').each(function(){
  107. var newSize = 300;
  108. var newSrc = $(this).attr('src').replace('500',newSize);
  109. $(this).attr('src', newSrc).width(newSize);
  110. var high = $(this).css('height');
  111. var calculate = parseInt(high, 10)* newSize/500;
  112. $(this).css('height', calculate);
  113. });
  114. }
  115. photosetResize();
  116. });
  117. </script>
  118.  
  119. <link href='http://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'>
  120.  
  121. <!--CSS time baby. This is where you change font size, color, etc. Just be careful, my dears. -->
  122.  
  123. <style type="text/css">
  124.  
  125. #s-m-t-tooltip {max-width:300px;
  126. padding:2px;
  127. margin:10px 0px 0px 10px;
  128. padding:3px 5px;
  129. background-color:#ffffff;
  130. text-transform:uppercase;
  131. font-size:7px;
  132. letter-spacing:1px;
  133. color:#747474;
  134. border-bottom:1px solid {color:text};
  135. z-index:999 }
  136.  
  137. /*pop up*/
  138. #fade { /*--Transparent background layer--*/
  139. display: none; /*--hidden by default--*/
  140. background: #000;
  141. position: fixed;
  142. left: 0;
  143. top: 0;
  144. width: 100%; height: 100%;
  145. opacity: .70;
  146. z-index: 9999;
  147. }
  148. .popup_block{
  149. display: none; /*--hidden by default--*/
  150. background-color:#fff;
  151. padding: 20px 0;
  152. position: fixed;
  153. width:400px;
  154. margin-left:-200px;
  155. top:50%;
  156. font-family:times;
  157. left:50%;
  158. z-index: 99999;
  159. }
  160.  
  161.  
  162.  
  163. /*--Making IE6 Understand Fixed Positioning--*/
  164. *html #fade {
  165. position: absolute;
  166. }
  167. *html .popup_block {
  168. position: absolute;
  169. }
  170.  
  171.  
  172. #t {
  173. }
  174.  
  175. #tt {font-size:12px;
  176. font-weight:bold;
  177. text-align:right;
  178. padding-right:20px;
  179. padding-bottom:5px;
  180. border-bottom:1px solid black}
  181.  
  182. #ts {font-size:12px;
  183. margin-top:30px;
  184. padding-left:30px;
  185. padding-bottom:20px;
  186. text-align:left;
  187. font-style:italic;
  188. line-height:130%}
  189.  
  190. /*scrollbar*/
  191. ::-webkit-scrollbar{height: 5px;
  192. width: 5px;
  193. -webkit-border-radius: 0px;
  194. background-color:{color:background}}
  195. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  196. ::-webkit-scrollbar-track{background-color:{color:background};}
  197. iframe#tumblr_controls {
  198. position: fixed !important;
  199. z-index: 9999;
  200. opacity:.5;
  201. -webkit-transition:all 0.5s ease-in-out;
  202. -moz-transition:all 0.5s ease-in-out;
  203. transition:all 0.5s ease-in-out;}
  204. iframe#tumblr_controls:hover {
  205. opacity: 0.9;
  206. -webkit-transition:all 0.5s ease-in-out;
  207. -moz-transition:all 0.5s ease-in-out;
  208. transition:all 0.5s ease-in-out;}
  209. ::selection {
  210. background:black;
  211. color:white;
  212. }
  213.  
  214. ::-moz-selection {
  215. background:black;
  216. color:white;
  217. }
  218.  
  219. ::-webkit-selection {
  220. background:black;
  221. color:white;
  222. }
  223.  
  224. iframe#tumblr_controls {
  225. position: fixed !important;
  226. z-index: 9999;
  227. opacity:.5;
  228. -webkit-transition:all 0.5s ease-in-out;
  229. -moz-transition:all 0.5s ease-in-out;
  230. transition:all 0.5s ease-in-out;}
  231. iframe#tumblr_controls:hover {
  232. opacity: 0.9;
  233. -webkit-transition:all 0.5s ease-in-out;
  234. -moz-transition:all 0.5s ease-in-out;
  235. transition:all 0.5s ease-in-out;}
  236.  
  237.  
  238. #credit {position:fixed;
  239. float:right;
  240. opacity:0.7;
  241. bottom:5px;
  242. right:5px;
  243. text-align:center;
  244. padding:5px 5px;
  245. font-size:7px;
  246. font-family:helvetica}
  247. @font-face
  248. {
  249. font-family:'Inconsolata';
  250. src:url('http://static.tumblr.com/sas2ex2/3lgmqt637/inconsolata.otf');
  251. }
  252.  
  253.  
  254. /*main structure*/
  255. blockquote {
  256. max-width:300px!important;
  257. margin-left:0px;
  258. border-left:1px solid #f2f2f2;
  259. padding-left:10px;
  260. width:95%;}
  261.  
  262. h1 {
  263. margin-left: px; font-size:22px;line-height:200%;margin-bottom:0px;font-style:;letter-spacing:-1px;text-align:left;font-family: raleway;text-transform:uppercase;}
  264.  
  265. body {
  266. background-color:#ffffff;
  267. color:#747474;
  268. font-family: helvetica;
  269. font-weight:lighter;
  270. font-size:9px;
  271. text-align:justify;
  272. line-height:13px;
  273. margin:0;
  274. line-height:120%;}
  275.  
  276.  
  277. a {
  278. color:#747474;
  279. text-decoration:none;
  280. font-size:7px;}
  281.  
  282. a:hover {
  283. color:#020101}
  284.  
  285. img{
  286. opacity:1;
  287. border:none;
  288. text-decoration:none}
  289.  
  290.  
  291. b, strong {
  292. color:#3c3c3c}
  293. i, em {
  294. color:#747474;}
  295. p {
  296. margin-top:5px;
  297. margin-bottom:5px}
  298. ol {
  299. list-style:normal;}
  300. ul {
  301. list-style:square;}
  302.  
  303. small {
  304. font-size:7px;}
  305.  
  306. big {
  307. font-size:11px;}
  308.  
  309.  
  310.  
  311.  
  312. .title{font-size:16px;
  313.  
  314. font-weight:lighter;
  315. float:left;
  316. letter-spacing:1px;
  317. text-transform:uppercase;
  318. padding:10px 20px 5px 5px;
  319. color:#555454;} .title a:hover {text-decoration:underline;}
  320.  
  321.  
  322.  
  323.  
  324.  
  325. /*header*/
  326.  
  327. #essentiel {padding:90px;width:400px; margin:auto;}
  328.  
  329. div#header{
  330. width:380px;
  331. margin-left:-7px;
  332. padding-left:18px;
  333. padding-top:10%;
  334.  
  335. padding-top:6%;
  336.  
  337.  
  338. }
  339.  
  340. div#links{
  341. margin:8px 0px 10px 0px;
  342. text-align:center;}
  343.  
  344. div#links{margin:13px 0px 13px 0px;text-align:center;}
  345.  
  346. a.nav{
  347. display:navigate;
  348. opacity:.90;
  349. font-size:6px;
  350. margin-right:0px;
  351. padding-left:0px;
  352. text-align:center;
  353. font-style:normal;
  354. font-weight:lighter;
  355. letter-spacing: 1px;
  356. text-transform: uppercase;
  357. font-family: times;
  358. padding:2px 4px 3px 5px;
  359. background-color:#fff;
  360. border: 3px double #fff;
  361.  
  362. }
  363. a.nav{color:#597578;}
  364. a.nav:hover{
  365. color:#597578;
  366. background-color:#ffffff;
  367. border: 3px double #fff;
  368. padding:2px 4px 3px 5px;}
  369.  
  370. #topimg{
  371. margin:auto;
  372. width:30px;
  373. }
  374.  
  375. .info{
  376. font-family: times;
  377. font-style:normal;
  378. border-top:double 1px #ffffff;
  379. border-bottom:double 1px #ffffff;
  380. opacity:1.0;
  381. padding-top:6px;
  382. padding-bottom:8px;
  383. text-align:center;}
  384.  
  385.  
  386. /*pagination*/
  387.  
  388. #pagination {
  389. font-size:7px;
  390. font-style:normal;
  391. text-align:center;
  392. letter-spacing:2px;
  393. font-family:times;
  394. margin:50px 0;
  395.  
  396. }
  397.  
  398. #pagination a {
  399. text-align:center;
  400. display:inline-block;
  401. margin-left:2px;
  402. line-height:15px;
  403. padding:0 4px 4px 4px;
  404. text-decoration:none;}
  405. #pagination a:hover {text-decoration:underline;}
  406.  
  407. .current_page {text-align:center;
  408. margin-left:2px;
  409. font-size:9px;
  410. line-height:15px;
  411. padding:0 2px 2px 2px;
  412. text-decoration:none;}
  413. .current_page:hover {text-decoration:underline;}
  414.  
  415. /*container*/
  416. #con {position:absolute;
  417. left:50%;
  418. margin-left:-280px;
  419. }
  420. /*posts*/
  421. #entries {position:absolute;
  422. width:300px;
  423. margin-top:50px;
  424. font-size:9px;
  425. font-family:times;
  426. font-weight:lighter;
  427. line-height:130%;
  428. letter-spacing:px;
  429. margin-left:52px;
  430. font-style:normal;
  431. color:#626262;
  432.  
  433. background:#ffffff;
  434.  
  435. }
  436.  
  437. #posts {
  438. margin-bottom:-75px;
  439. overflow:hidden;
  440. width:300px;
  441. }
  442.  
  443. #posts a {font-size:7px; letter-spacing:1px; text-transform:uppercase;}
  444. /*#posts a:hover {text-decoration:underline;}*/
  445.  
  446. #posts img {
  447. width:300px;
  448. display:block;
  449. }
  450.  
  451.  
  452.  
  453.  
  454.  
  455. #titlequote{font-size:9px;
  456. color:#747474;
  457. text-align:justify; text-transform:; letter-spacing:px;
  458. padding:15px 0;
  459. border-bottom:1px solid #ededed
  460. }
  461.  
  462. #posts img, #posts li, #posts blockquote {max-width: 100%;
  463. }
  464. .caption img{max-width:100%;}
  465. .caption {width:100%;
  466. text-align:justify;
  467. display: block;
  468. margin-top: 5px;
  469. text-transform:none;
  470. font-size:9px;
  471. border-top:px solid #ededed;
  472. padding-top:5px
  473. } .caption a {font-size:8px; text-transform:uppercase;} .caption a:hover {text-decoration:underline;} .caption blockquote {padding:5px; margin-left:5px; border-left:1px solid #f2f2f2;}
  474.  
  475. #source {text-align:right;
  476. padding-top:5px;
  477. font-size:9px}
  478.  
  479.  
  480.  
  481.  
  482.  
  483. /*audio*/
  484.  
  485. .player {
  486. width:25px;
  487. height:25px;
  488. opacity:0.6;
  489. overflow:hidden;
  490. margin-left:12px;
  491. padding:5px;
  492. position:absolute;
  493. margin-top:12px;
  494. background:white;
  495. z-index:2;}
  496.  
  497. .audioinfo {
  498. text-align:right;
  499. z-index:2;
  500. position:absolute;
  501. padding-top:12px;
  502. text-transform:uppercase;
  503. width:230px;
  504. font-size:8px;
  505. margin-left:50px;
  506. }
  507.  
  508.  
  509. .playerback {height:58px;
  510. background-color:#fafafa;
  511. }
  512.  
  513.  
  514.  
  515.  
  516.  
  517. /*asks*/
  518. #question {color:#747474}
  519. .as {text-align:right;
  520. padding-top:5px;
  521. text-transform:uppercase;
  522. font-size:7px; letter-spacing:1px;}
  523. .as a {#747474}
  524. .q {
  525. padding:15px 0;
  526. border-bottom:1px solid #ededed;
  527. color:#747474;
  528. text-align:right;
  529. }
  530. .a {color:#747474;
  531. margin-top:15px;
  532. text-align:justify}
  533.  
  534.  
  535.  
  536. .chat ol {
  537. padding:0;
  538. line-height:180%;
  539. list-style:none;
  540. }
  541.  
  542. .line.odd {
  543. background-color:#FAFAFA;
  544. padding:5px;
  545. }
  546.  
  547. .line.even {
  548. background-color:#ffffff;
  549. padding:5px;
  550. }
  551.  
  552. .label {
  553. padding-right:1px;
  554. text-transform:uppercase;font-size:7px; letter-spacing:1px;
  555. color:#161616;
  556. }
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564. /*permalink and notes*/
  565.  
  566. #posts:hover #permalink {opacity:1;
  567. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out}
  568.  
  569. #posts:hover .tags {opacity:1;
  570. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out}
  571.  
  572. #permalink {
  573. margin-left:300px!important;
  574. width:200px;
  575. position:absolute;
  576. z-index:99;
  577. text-align:left;
  578. margin-top:-21px;
  579. font-size:7px;letter-spacing:1px;
  580. text-transform:uppercase;
  581. padding:20px;
  582. opacity:0;
  583. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out
  584. }
  585. #permalink a {text-decoration:none!important;font-size:6px;letter-spacing:1px;}
  586.  
  587.  
  588. .tags {
  589. font-family:times;
  590. margin-top:10px; line-height:200%;
  591. margin-bottom:10px; text-align:left;
  592. display:navigate;
  593. opacity:.90;
  594. font-size:6px;
  595. text-transform:uppercase;
  596. width:300px;
  597. opacity:0;
  598. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out
  599. }
  600.  
  601. .tags a{
  602. font-size:6px;letter-spacing:1px; padding:1px; background:#fafafa;
  603. padding:3px 4px;margin-right:5px; text-decoration:none!important;}
  604.  
  605.  
  606. .pagenotes {
  607.  
  608.  
  609. width:350px; margin-top:100px;margin-left:-145px;
  610.  
  611. text-align:left;
  612.  
  613. }
  614. .pagenotes img {
  615. display:none!important;}
  616. .pagenotes li {
  617. text-transform:uppercase;
  618. letter-spacing:1px; font-size:7px;
  619. list-style-type:none;
  620. padding:10px;
  621. text-align:left;
  622. margin:0 0 0 60px;
  623. line-height:130%;
  624. }
  625. .pagenotes li:hover {background-color:#F5F5F5;}
  626.  
  627. #fade {
  628. display: none;
  629. background: #525252;
  630. position: fixed;
  631. left: 0;
  632. top: 0;
  633. width: 100%;
  634. height: 100%;
  635. opacity: .80;
  636. z-index: 9999;
  637. }
  638.  
  639. .popup_block{
  640. display: none;
  641. background: #fff;
  642. padding: 35px;
  643. float: left;
  644. position: fixed;
  645. top: 50%;
  646. left: 50%;
  647. z-index: 99999;
  648. }
  649.  
  650. img.btn_close {
  651. float: right;
  652. margin: -55px -55px 0 0;
  653. }
  654.  
  655. *html #fade {
  656. position: absolute;
  657. }
  658.  
  659. *html .popup_block {
  660. position: absolute;
  661. }
  662.  
  663. #linkpopup {
  664. background-color: #fff;
  665. font-family:helvetica;
  666. font-size:9px;
  667. text-align:justify;
  668. }
  669.  
  670.  
  671. #aboutpopup {
  672. background-color: #fff;
  673. font-family:helvetica;
  674. font-size:9px;
  675. text-align:justify;
  676. }
  677.  
  678. #minepopup {
  679. background-color: #fff;
  680. font-family:helvetica;
  681. font-size:9px;
  682. text-align:justify;
  683. }
  684.  
  685. #askpopup {
  686. background-color: #fff;
  687. font-family:helvetica;
  688. font-size:9px;
  689. text-align:justify;
  690. width:220px;
  691. }
  692.  
  693.  
  694.  
  695.  
  696. </style>
  697.  
  698. <script>
  699.  
  700.  
  701.  
  702. $(document).ready(function() {
  703.  
  704. //
  705.  
  706.  
  707.  
  708. //When you click on a link with class of poplight and the href starts with a #
  709.  
  710. $('a.poplight[href^=#]').click(function() {
  711.  
  712. var popID = $(this).attr('rel'); //Get Popup Name
  713.  
  714. var popURL = $(this).attr('href'); //Get Popup href to define size
  715.  
  716.  
  717.  
  718. //Pull Query & Variables from href URL
  719.  
  720. var query= popURL.split('?');
  721.  
  722. var dim= query[1].split('&');
  723.  
  724. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  725.  
  726.  
  727.  
  728. //Fade in the Popup and add close button
  729.  
  730. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  731.  
  732.  
  733. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  734.  
  735. var popMargTop = ($('#' + popID).height() + 80) / 2;
  736.  
  737. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  738.  
  739.  
  740.  
  741. //Apply Margin to Popup
  742.  
  743. $('#' + popID).css({
  744.  
  745. 'margin-top' : -popMargTop,
  746.  
  747. 'margin-left' : -popMargLeft
  748.  
  749. });
  750.  
  751.  
  752.  
  753. //Fade in Background
  754.  
  755. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  756.  
  757. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  758.  
  759.  
  760.  
  761. return false;
  762.  
  763. });
  764.  
  765.  
  766.  
  767. //Close Popups and Fade Layer
  768.  
  769. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  770.  
  771. $('#fade , .popup_block').fadeOut(function() {
  772.  
  773. $('#fade, a.close').remove(); //fade them both out
  774.  
  775. });
  776.  
  777. return false;
  778.  
  779. });
  780.  
  781.  
  782.  
  783.  
  784.  
  785. });
  786.  
  787. </script>
  788.  
  789.  
  790.  
  791. </head>
  792.  
  793. <body>
  794.  
  795.  
  796.  
  797. <div id="credit"><a title="leepace themes" href="http://leepace.tumblr.com">LP</a></div>
  798.  
  799. <div id="con">
  800.  
  801. <div id="essentiel">
  802. <div style="margin-top:-85px;"></div>
  803. <div id="header">
  804.  
  805. <div id"topimg" style="margin-bottom:15px;">
  806. <center><a href="/"><img src="{image:header}"width="50"></a>
  807. </center></div>
  808. <center><a href="/" style="color:black" class="nav">maybe i just wanna be yours</a></center>
  809. <div id="links">
  810.  
  811. <div class="top">&nbsp;
  812. <a href="/ask" class="nav">message</a>
  813. <a href="/aboutme" class="nav">about</a>
  814. <a href="/mine" class="nav">edits</a>
  815. <a href="/links" class="nav">more</a>
  816.  
  817.  
  818.  
  819. </div>
  820.  
  821.  
  822. </div>
  823.  
  824. <div class="info">{Description}</div></div>
  825.  
  826.  
  827.  
  828. <div id="entries">
  829.  
  830. {block:Posts}
  831. <div id="posts">
  832.  
  833. {block:PermalinkPage}
  834. {block:Date}
  835. <div id="permalink">
  836. <a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a>
  837. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  838. {block:ContentSource}
  839. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  840. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  841. {/block:SourceLogo}
  842. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  843. {/block:ContentSource}·
  844. {block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}&nbsp;·&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  845.  
  846. </div>
  847. {/block:Date}
  848. {/block:PermalinkPage}
  849.  
  850. {block:IndexPage}
  851. {block:Date}
  852.  
  853.  
  854. <div id="permalink">
  855. <a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a>
  856. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  857. {block:ContentSource}
  858. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  859. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  860. {/block:SourceLogo}
  861. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  862. {/block:ContentSource}
  863. {block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}&nbsp;·&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  864.  
  865. </div>
  866. {/block:Date}
  867. {/block:Date}
  868.  
  869. {/block:IndexPage}
  870.  
  871. {block:Quote}
  872.  
  873.  
  874. <div id="titlequote">{Quote}</div>
  875. {block:Source}<div id="source">{Source}</div>{/block:Source}
  876. {/block:Quote}
  877.  
  878.  
  879.  
  880. {block:Text}
  881.  
  882. {block:Title}
  883. <div id="titlee">{Title}</div>{/block:Title}
  884. {Body}
  885.  
  886.  
  887. {/block:Text}
  888.  
  889. {block:Link}
  890.  
  891. <h1><a href="{URL}">⟩ {Name}</a></h1>{block:Description}{Description}{/block:Description}
  892.  
  893. {/block:Link}
  894.  
  895. {block:Chat}
  896. {block:Title}
  897. <h1>{Title}</h1>
  898. {/block:Title}
  899. <div class="chat">
  900. <ol>{block:Lines}
  901. <li class="line {Alt}">
  902. {block:Label}
  903. <span class="label">
  904. {Label}</span>
  905. {/block:Label}{Line}</li>
  906. {/block:Lines}
  907. </ol></div>
  908. {/block:Chat}
  909.  
  910. {block:Photo}
  911.  
  912. <center>{LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
  913.  
  914.  
  915.  
  916. {/block:Photo}
  917.  
  918. {block:Photoset}
  919. {Photoset-500}
  920. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  921.  
  922.  
  923. {/block:Photoset}
  924.  
  925. {block:Video}
  926.  
  927.  
  928. {Video-400}
  929. {/block:Video}
  930.  
  931.  
  932.  
  933. {block:Audio}
  934.  
  935. <div class="audioinfo">
  936. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  937. </div>
  938. <div class="playerback">
  939. <div class="player">{AudioPlayerWhite}</div>
  940. </div>
  941. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  942. {/block:Audio}
  943.  
  944.  
  945.  
  946.  
  947.  
  948. {block:Answer}
  949. <div id="question">
  950. <div class="q">
  951. {Question}</div>
  952. <div class="as">{Asker}</div>
  953. <div class="a">{Answer}</div>
  954. </div>
  955.  
  956. {/block:Answer}
  957.  
  958.  
  959.  
  960.  
  961. {block:HasTags}<div class="tags">File Under:&nbsp;{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  962. </div>
  963. <div class="pagenotes">
  964. <ol class="notes">
  965. {block:PostNotes}{PostNotes}{/block:PostNotes}
  966. {block:PermalinkPage}
  967. {/block:PermalinkPage}
  968.  
  969. </ol>
  970.  
  971.  
  972. </div>
  973. {/block:Posts}
  974.  
  975.  
  976. <div id="pagination">
  977.  
  978. {block:Pagination}
  979. {block:PreviousPage}
  980. <a class="jump_page" href="{PreviousPage}">BACK</a>
  981. {/block:PreviousPage}
  982.  
  983. {block:JumpPagination length="5"}
  984. {block:CurrentPage}
  985. <span class="current_page">{PageNumber}</span>
  986. {/block:CurrentPage}
  987.  
  988. {block:JumpPage}
  989. <a class="jump_page" href="{URL}">{PageNumber}</a>
  990. {/block:JumpPage}
  991. {/block:JumpPagination}
  992.  
  993. {block:NextPage}
  994. <a class="jump_page" href="{NextPage}">FORTH</a>
  995. {/block:NextPage}
  996. {/block:Pagination}</div>
  997. </div>
  998.  
  999. </div>
  1000. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement