Advertisement
rasperries

ivcors mix2

Nov 19th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.52 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.  
  22.  
  23.  
  24. <meta name="text:Link 1 URL" content="" />
  25. <meta name="text:Link 1" content="" />
  26. <meta name="text:Link 2 URL" content="" />
  27. <meta name="text:Link 2" content="" />
  28. <meta name="text:Link 3 URL" content="" />
  29. <meta name="text:Link 3" content="" />
  30.  
  31. <meta name="image:audio bg" content="http://static.tumblr.com/1fe0fb2eb9179fdba195906aa5c7bc29/ygd3n2x/TPHmil7fo/tumblr_static_diagonal_striped_brick.png">
  32. <meta name="if:Hide Tags" content="1">
  33.  
  34.  
  35.  
  36.  
  37. <!-- jquery -->
  38. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  39.  
  40. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  41.  
  42. <script>
  43.  
  44. (function($){
  45.  
  46. $(document).ready(function(){
  47.  
  48. $("a[title]").style_my_tooltips({
  49.  
  50. tip_follows_cursor:true,
  51.  
  52. tip_delay_time:30,
  53.  
  54. tip_fade_speed:300,
  55.  
  56. attribute:"title"
  57.  
  58. });
  59.  
  60. });
  61.  
  62. })(jQuery);
  63.  
  64. </script>
  65.  
  66. <!--pop up-->
  67. <script type="text/javascript"
  68. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  69. <script>
  70. $(document).ready(function() {
  71. //
  72. $('a.poplight[href^=#]').click(function() {
  73. var popID = $(this).attr('rel'); //Get Popup Name
  74. var popURL = $(this).attr('href'); //Get Popup href to define size
  75. var query= popURL.split('?');
  76. var dim= query[1].split('&');
  77. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  78. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  79. var popMargTop = ($('#' + popID).height()) / 2;
  80. var popMargLeft = ($('#' + popID).width()) / 2;
  81. //Apply Margin to Popup
  82. $('#' + popID).css({
  83. 'margin-top' : -popMargTop,
  84. 'margin-left' : -popMargLeft
  85. });
  86. $('body').append('<div id="fade"></div>');
  87. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  88. return false;
  89. });
  90. $('a.close, #fade').live('click', function() {
  91. $('#fade , .popup_block').fadeOut(function() {
  92. $('#fade, a.close').remove(); //fade them both out
  93. });
  94. return false;
  95. });
  96. });
  97. </script>
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. <!--CSS time baby. This is where you change font size, color, etc. Just be careful, my dears. -->
  105.  
  106. <style type="text/css">
  107.  
  108. #s-m-t-tooltip {max-width:300px;
  109. padding:2px;
  110. margin:10px 0px 0px 10px;
  111. padding:3px 5px;
  112. background-color:#ffffff;
  113. text-transform:uppercase;
  114. font-size:7px;
  115. letter-spacing:1px;
  116. color:#747474;
  117. border-bottom:1px solid {color:text};
  118. z-index:999 }
  119.  
  120. /*pop up*/
  121. #fade { /*--Transparent background layer--*/
  122. display: none; /*--hidden by default--*/
  123. background: #000;
  124. position: fixed;
  125. left: 0;
  126. top: 0;
  127. width: 100%; height: 100%;
  128. opacity: .70;
  129. z-index: 9999;
  130. }
  131. .popup_block{
  132. display: none; /*--hidden by default--*/
  133. background-color:#fff;
  134. padding: 20px 0;
  135. position: fixed;
  136. width:400px;
  137. margin-left:-200px;
  138. top:50%;
  139. font-family:times;
  140. left:50%;
  141. z-index: 99999;
  142. }
  143.  
  144.  
  145.  
  146. /*--Making IE6 Understand Fixed Positioning--*/
  147. *html #fade {
  148. position: absolute;
  149. }
  150. *html .popup_block {
  151. position: absolute;
  152. }
  153.  
  154.  
  155. #t {
  156. }
  157.  
  158. #tt {font-size:12px;
  159. font-weight:bold;
  160. text-align:right;
  161. padding-right:20px;
  162. padding-bottom:5px;
  163. border-bottom:1px solid black}
  164.  
  165. #ts {font-size:12px;
  166. margin-top:30px;
  167. padding-left:30px;
  168. padding-bottom:20px;
  169. text-align:left;
  170. font-style:italic;
  171. line-height:130%}
  172.  
  173. /*scrollbar*/
  174. ::-webkit-scrollbar{height: 5px;
  175. width: 5px;
  176. -webkit-border-radius: 0px;
  177. background-color:{color:background}}
  178. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  179. ::-webkit-scrollbar-track{background-color:{color:background};}
  180. iframe#tumblr_controls {
  181. position: fixed !important;
  182. z-index: 9999;
  183. opacity:.5;
  184. -webkit-transition:all 0.5s ease-in-out;
  185. -moz-transition:all 0.5s ease-in-out;
  186. transition:all 0.5s ease-in-out;}
  187. iframe#tumblr_controls:hover {
  188. opacity: 0.9;
  189. -webkit-transition:all 0.5s ease-in-out;
  190. -moz-transition:all 0.5s ease-in-out;
  191. transition:all 0.5s ease-in-out;}
  192. ::selection {
  193. background:black;
  194. color:white;
  195. }
  196.  
  197. ::-moz-selection {
  198. background:black;
  199. color:white;
  200. }
  201.  
  202. ::-webkit-selection {
  203. background:black;
  204. color:white;
  205. }
  206.  
  207. iframe#tumblr_controls {
  208. position: fixed !important;
  209. z-index: 9999;
  210. opacity:.5;
  211. -webkit-transition:all 0.5s ease-in-out;
  212. -moz-transition:all 0.5s ease-in-out;
  213. transition:all 0.5s ease-in-out;}
  214. iframe#tumblr_controls:hover {
  215. opacity: 0.9;
  216. -webkit-transition:all 0.5s ease-in-out;
  217. -moz-transition:all 0.5s ease-in-out;
  218. transition:all 0.5s ease-in-out;}
  219.  
  220.  
  221. #credit {position:fixed;
  222. float:right;
  223. opacity:0.7;
  224. bottom:5px;
  225. right:5px;
  226. text-align:center;
  227. padding:5px 5px;
  228. font-size:7px;
  229. font-family:helvetica}
  230. @font-face
  231. {
  232. font-family:'Inconsolata';
  233. src:url('http://static.tumblr.com/sas2ex2/3lgmqt637/inconsolata.otf');
  234. }
  235.  
  236.  
  237. /*main structure*/
  238. blockquote {
  239. max-width:400px!important;
  240. margin-left:0px;
  241. border-left:1px solid #f2f2f2;
  242. padding-left:10px;
  243. width:95%;}
  244.  
  245. h1 {
  246. font-size:11px;
  247. color:#555454;}
  248.  
  249. body {
  250. background-color:#ffffff;
  251. color:#747474;
  252. font-family: helvetica;
  253. font-size:9px;
  254. text-align:justify;
  255. line-height:13px;
  256. margin:0;
  257. line-height:120%;}
  258.  
  259.  
  260. a {
  261. color:#747474;
  262. text-decoration:none;}
  263.  
  264. a:hover {
  265. color:#020101}
  266.  
  267. img{
  268. opacity:1;
  269. border:none;
  270. text-decoration:none}
  271.  
  272.  
  273. b, strong {
  274. color:#3c3c3c}
  275. i, em {
  276. color:#161616}
  277. p {
  278. margin-top:5px;
  279. margin-bottom:5px}
  280. ol {
  281. list-style:normal;}
  282. ul {
  283. list-style:square;}
  284.  
  285. small {
  286. font-size:7px;}
  287.  
  288. big {
  289. font-size:11px;}
  290.  
  291.  
  292.  
  293.  
  294. .title{font-size:10px;
  295. font-weight:none;
  296. float:left;
  297. letter-spacing:1px;
  298. text-transform:uppercase;
  299. padding:10px 20px 5px 5px;
  300. color:#555454;} .title a:hover {text-decoration:underline;}
  301.  
  302.  
  303.  
  304.  
  305.  
  306. /*header*/
  307.  
  308.  
  309. #header {width:400px;
  310. text-align:center;
  311. margin-top:50px;
  312. }
  313.  
  314.  
  315. #blogt {
  316. line-height:120%;
  317. font-size:7px;
  318. text-align:left; letter-spacing:1px;
  319. text-transform:uppercase;
  320.  
  321. display:none;
  322.  
  323. }
  324.  
  325. #blogt a {color:#555454;}
  326. #blogt a:hover {
  327. text-decoration:none;
  328. color:#747474}
  329.  
  330. #standardlinks {
  331. font-size:7px;
  332. text-transform:uppercase;
  333. font-weight:normal;
  334. letter-spacing:1px;
  335. text-align:right;
  336. border-top:1px solid #ededed
  337. }
  338.  
  339.  
  340. #standardlinks a {
  341. line-height:25px;
  342. padding:0 10px;
  343. text-align:center;
  344. display:inline-block;
  345. } #standardlinks a:hover {color:#4A4A4A;}
  346.  
  347. #description {
  348. font-size:9px;
  349. line-height:130%;
  350. text-align:justify;
  351. padding:15px 25px;}
  352.  
  353. #description a {
  354. text-transform:uppercase;
  355. font-size:7px;
  356. letter-spacing:1px;}
  357.  
  358. /*#description a:hover {text-decoration:underline;}*/
  359.  
  360.  
  361. /*pagination*/
  362.  
  363. #pagination {
  364. font-size:7px;
  365. font-style:normal;
  366. text-align:right;
  367. letter-spacing:2px;
  368. font-family:helvetica;
  369. margin:50px 0;
  370.  
  371. }
  372.  
  373. #pagination a {
  374. text-align:center;
  375. display:inline-block;
  376. margin-left:2px;
  377. line-height:15px;
  378. padding:0 2px 2px 2px;
  379. text-decoration:none;}
  380. #pagination a:hover {text-decoration:underline;}
  381.  
  382. .current_page {text-align:center;
  383. margin-left:2px;
  384. font-size:9px;
  385. line-height:15px;
  386. padding:0 2px 2px 2px;
  387. text-decoration:none;}
  388. .current_page:hover {text-decoration:underline;}
  389.  
  390. /*container*/
  391. #con {position:absolute;
  392. left:50%;
  393. margin-left:-200px;
  394. }
  395. /*posts*/
  396. #entries {position:absolute;
  397. width:400px;
  398. margin-top:110px;
  399.  
  400. }
  401.  
  402. #posts {
  403. margin-bottom:120px;
  404. overflow:hidden;
  405. width:400px;
  406. }
  407.  
  408. #posts a {font-size:7px; letter-spacing:1px; text-transform:uppercase;}
  409. /*#posts a:hover {text-decoration:underline;}*/
  410.  
  411. #posts img {max-width: 400px;
  412.  
  413. }
  414.  
  415.  
  416.  
  417.  
  418.  
  419. #titlequote{font-size:9px;
  420. color:#747474;
  421. text-align:justify; text-transform:; letter-spacing:px;
  422. padding:15px 0;
  423. border-bottom:1px solid #ededed
  424. }
  425.  
  426. #posts img, #posts li, #posts blockquote {max-width: 100%;
  427. }
  428. .caption img{max-width:100%;}
  429. .caption {width:100%;
  430. text-align:justify;
  431. display: block;
  432. margin-top: 5px;
  433. text-transform:none;
  434. font-size:8px;
  435. border-top:1px solid #ededed;
  436. padding-top:5px
  437. } .caption a {font-size:7px; text-transform:uppercase;} .caption a:hover {text-decoration:underline;} .caption blockquote {padding:5px; margin-left:5px; border-left:1px solid #161616;}
  438.  
  439. #source {text-align:right;
  440. padding-top:5px;
  441. font-size:9px}
  442.  
  443.  
  444.  
  445.  
  446.  
  447. /*audio*/
  448. .audio {
  449. width:100%;
  450. background-color:{color:toplinkbackground};
  451. background-image: url('{image:audio bg}');
  452. background-attachment:repeat;
  453. }
  454.  
  455. .audioplayer{
  456. height:27px;
  457. width:6.5%;
  458. overflow:hidden;
  459. opacity: 1;
  460. }
  461.  
  462.  
  463.  
  464.  
  465.  
  466. /*asks*/
  467. #question {color:#747474}
  468. .as {text-align:right;
  469. padding-top:5px;
  470. text-transform:uppercase;
  471. font-size:7px; letter-spacing:1px;}
  472. .as a {#747474}
  473. .q {
  474. padding:15px 0;
  475. border-bottom:1px solid #ededed;
  476. color:#747474;
  477. text-align:right;
  478. }
  479. .a {color:#747474;
  480. margin-top:15px;
  481. text-align:justify}
  482.  
  483.  
  484.  
  485. .chat ol {
  486. padding:0;
  487. line-height:180%;
  488. list-style:none;
  489. }
  490.  
  491. .line.odd {
  492. background-color:#FAFAFA;
  493. padding:5px;
  494. }
  495.  
  496. .line.even {
  497. background-color:#ffffff;
  498. padding:5px;
  499. }
  500.  
  501. .label {
  502. padding-right:1px;
  503. text-transform:uppercase;font-size:7px; letter-spacing:1px;
  504. color:#161616;
  505. }
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513. /*permalink and notes*/
  514.  
  515. #posts:hover #permalink {opacity:1;
  516. -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}
  517.  
  518. #permalink {
  519. margin-left:410px!important;
  520. width:200px;
  521. position:absolute;
  522. z-index:99;
  523. text-align:left;
  524. margin-top:-21px;
  525. font-size:7px;letter-spacing:1px;
  526. text-transform:uppercase;
  527. padding:20px;
  528. opacity:0;
  529. -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
  530. }
  531. #permalink a {text-decoration:none!important;}
  532.  
  533.  
  534. .tags {
  535. font-family:helvetica;
  536. margin-top:10px; line-height:200%;
  537. margin-bottom:10px; text-align:left;
  538. font-size:7px; letter-spacing:1px;
  539. text-transform:uppercase;
  540. width:400px;
  541. }
  542.  
  543. .tags a{
  544. letter-spacing:1px; padding:1px; background:#fafafa;
  545. padding:3px 4px;margin-right:5px; text-decoration:none!important;}
  546.  
  547.  
  548. .pagenotes {
  549.  
  550.  
  551. width:450px; margin-top:100px;margin-left:-45px;
  552.  
  553. text-align:left;
  554.  
  555. }
  556. .pagenotes img {
  557. display:none!important;}
  558. .pagenotes li {
  559. text-transform:uppercase;
  560. letter-spacing:1px; font-size:7px;
  561. list-style-type:none;
  562. padding:10px;
  563. text-align:left;
  564. margin:0 0 0 -40px;
  565. line-height:130%;
  566. }
  567. .pagenotes li:hover {background-color:#F5F5F5;}
  568.  
  569. #fade {
  570. display: none;
  571. background: #f2f2f2;
  572. position: fixed;
  573. left: 0;
  574. top: 0;
  575. width: 100%;
  576. height: 100%;
  577. opacity: .80;
  578. z-index: 9999;
  579. }
  580.  
  581. .popup_block{
  582. -webkit-border-radius: 0px;
  583. -moz-border-radius: 0px;
  584. border-radius: 0px;
  585. display: none;
  586. background: #FFFFFF;
  587. padding: 20px;
  588. float: left;
  589. position: fixed;
  590. top: 50%;
  591. left: 50%;
  592. z-index: 99999;
  593. }
  594.  
  595. img.btn_close {
  596. float: right; display:none;
  597. margin: -55px -55px 0 0;
  598. }
  599.  
  600. *html #fade {
  601. position: absolute;
  602. }
  603.  
  604. *html .popup_block {
  605. position: absolute;
  606. }
  607.  
  608.  
  609. </style>
  610.  
  611.  
  612.  
  613.  
  614.  
  615. </head>
  616.  
  617. <body>
  618.  
  619.  
  620.  
  621. <div id="credit"><a title="credit" href="http://leepace.tumblr.com">LP</a></div>
  622.  
  623. <div id="con">
  624.  
  625. <div id="header">
  626.  
  627. <div id="blogt"><a href="/">{Title}</a></div>
  628. <div id="description">{Description}</div>
  629.  
  630. <div id="standardlinks">
  631. <a href="/">Home</a>
  632. <a href="/ask">ask</a>
  633. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a> {/block:ifLink1}
  634. {block:ifLink2}<a title="links" href="{text:Link 2 URL}">{text:Link 2}</a> {/block:ifLink2}
  635. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  636. <script language="JavaScript">
  637. var ref = (''+document.referrer+'');
  638. var w_h = window.screen.width + " x " + window.screen.height;
  639. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID3539933&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  640. </script>
  641.  
  642. </div>
  643.  
  644.  
  645.  
  646.  
  647.  
  648. </div>
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656. <div id="entries">
  657.  
  658. {block:Posts}
  659. <div id="posts">
  660.  
  661. {block:PermalinkPage}
  662. {block:Date}
  663. <div id="permalink">
  664. <a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a>
  665. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  666. {block:ContentSource}
  667. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  668. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  669. {/block:SourceLogo}
  670. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  671. {/block:ContentSource}ยท
  672. {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}
  673. {block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
  674. </div>
  675. {/block:Date}
  676. {/block:PermalinkPage}
  677.  
  678. {block:IndexPage}
  679. {block:Date}
  680.  
  681.  
  682. <div id="permalink">
  683. <a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a>
  684. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  685. {block:ContentSource}
  686. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  687. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  688. {/block:SourceLogo}
  689. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  690. {/block:ContentSource}
  691. {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}
  692. {block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
  693. </div>
  694. {/block:Date}
  695. {/block:Date}
  696.  
  697. {/block:IndexPage}
  698.  
  699. {block:Quote}
  700.  
  701.  
  702. <div id="titlequote">{Quote}</div>
  703. {block:Source}<div id="source">{Source}</div>{/block:Source}
  704. {/block:Quote}
  705.  
  706.  
  707.  
  708. {block:Text}
  709.  
  710. {block:Title}
  711. <div id="title">{Title}</div>{/block:Title}
  712. {Body}
  713.  
  714.  
  715. {/block:Text}
  716.  
  717. {block:Link}
  718.  
  719. <h1><a href="{URL}">โŸฉ {Name}</a></h1>{block:Description}{Description}{/block:Description}
  720.  
  721. {/block:Link}
  722.  
  723. {block:Chat}
  724. {block:Title}
  725. <h1>{Title}</h1>
  726. {/block:Title}
  727. <div class="chat">
  728. <ol>{block:Lines}
  729. <li class="line {Alt}">
  730. {block:Label}
  731. <span class="label">
  732. {Label}</span>
  733. {/block:Label}{Line}</li>
  734. {/block:Lines}
  735. </ol></div>
  736. {/block:Chat}
  737.  
  738. {block:Photo}
  739.  
  740. <center>{LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  741.  
  742.  
  743.  
  744. {/block:Photo}
  745.  
  746. {block:Photoset}
  747.  
  748. <center>{Photoset-400}</center>
  749.  
  750.  
  751.  
  752.  
  753. {/block:Photoset}
  754.  
  755. {block:Video}
  756.  
  757.  
  758. {Video-400}
  759. {/block:Video}
  760.  
  761.  
  762.  
  763. <div style="margin-bottom: -5px;">{block:Audio}
  764. <center><div style="border-top:1px solid #eee;"></div>
  765. <div class="audio"><div class="audioplayer">{AudioPlayerWhite}</div></div><div style="border-top:1px solid #eee;"></div></center><br>{block:Caption}{Caption}{/block:Caption}<br>
  766. {/block:Audio}</div>
  767.  
  768.  
  769.  
  770.  
  771.  
  772. {block:Answer}
  773. <div id="question">
  774. <div class="q">
  775. {Question}</div>
  776. <div class="as">{Asker}</div>
  777. <div class="a">{Answer}</div>
  778. </div>
  779.  
  780. {/block:Answer}
  781.  
  782.  
  783.  
  784.  
  785. {block:HasTags}<div class="tags">File Under:&nbsp;{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  786. </div>
  787. <div class="pagenotes">
  788. <ol class="notes">
  789. {block:PostNotes}{PostNotes}{/block:PostNotes}
  790. {block:PermalinkPage}
  791. {/block:PermalinkPage}
  792.  
  793. </ol>
  794.  
  795.  
  796. </div>
  797. {/block:Posts}
  798.  
  799.  
  800. <div id="pagination">
  801.  
  802. {block:Pagination}
  803. {block:PreviousPage}
  804. <a class="jump_page" href="{PreviousPage}">BACK</a>
  805. {/block:PreviousPage}
  806.  
  807. {block:JumpPagination length="5"}
  808. {block:CurrentPage}
  809. <span class="current_page">{PageNumber}</span>
  810. {/block:CurrentPage}
  811.  
  812. {block:JumpPage}
  813. <a class="jump_page" href="{URL}">{PageNumber}</a>
  814. {/block:JumpPage}
  815. {/block:JumpPagination}
  816.  
  817. {block:NextPage}
  818. <a class="jump_page" href="{NextPage}">FORTH</a>
  819. {/block:NextPage}
  820. {/block:Pagination}</div>
  821. </div>
  822.  
  823. </div>
  824.  
  825. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement