Advertisement
skullsandrosesthemes

feeling blue

Jul 20th, 2013
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.74 KB | None | 0 0
  1. <!--Theme was made by brittany at tropicalii.tk please don't remove credits thank you!-->
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6.  
  7. <!-- DEFAULT VARIABLES -->
  8. <meta name="image:Portrait" content=""/>
  9. <meta name="image:Background" content="http://static.tumblr.com/jnukgfq/Qpemq9lvj/simple.png"/>
  10. <meta name="text:Custom Link One" content="" />
  11. <meta name="text:Custom Link One Title" content="" />
  12. <meta name="text:Custom Link Two" content="" />
  13. <meta name="text:Custom Link Two Title" content="" />
  14. <meta name="text:Custom Link Three" content="" />
  15. <meta name="text:Custom Link Three Title" content="" />
  16. <meta name="text:Custom Link Four" content="" />
  17. <meta name="text:Custom Link Four Title" content="" />
  18. <meta name="text:Custom Link Five" content="" />
  19. <meta name="text:Custom Link Five Title" content="" />
  20.  
  21.  
  22.  
  23. <script type="text/javascript">
  24. // <![CDATA[
  25. var colour="#c3cef2"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  26. var sparkles=60;
  27.  
  28. /****************************
  29. * Tinkerbell Magic Sparkle *
  30. *(c)2005-11 mf2fm web-design*
  31. * http://www.mf2fm.com/rv *
  32. * DON'T EDIT BELOW THIS BOX *
  33. ****************************/
  34. var x=ox=400;
  35. var y=oy=300;
  36. var swide=800;
  37. var shigh=600;
  38. var sleft=sdown=0;
  39. var tiny=new Array();
  40. var star=new Array();
  41. var starv=new Array();
  42. var starx=new Array();
  43. var stary=new Array();
  44. var tinyx=new Array();
  45. var tinyy=new Array();
  46. var tinyv=new Array();
  47.  
  48. window.onload=function() { if (document.getElementById) {
  49. var i, rats, rlef, rdow;
  50. for (var i=0; i<sparkles; i++) {
  51. var rats=createDiv(3, 3);
  52. rats.style.visibility="hidden";
  53. document.body.appendChild(tiny[i]=rats);
  54. starv[i]=0;
  55. tinyv[i]=0;
  56. var rats=createDiv(5, 5);
  57. rats.style.backgroundColor="transparent";
  58. rats.style.visibility="hidden";
  59. var rlef=createDiv(1, 5);
  60. var rdow=createDiv(5, 1);
  61. rats.appendChild(rlef);
  62. rats.appendChild(rdow);
  63. rlef.style.top="2px";
  64. rlef.style.left="0px";
  65. rdow.style.top="0px";
  66. rdow.style.left="2px";
  67. document.body.appendChild(star[i]=rats);
  68. }
  69. set_width();
  70. sparkle();
  71. }}
  72.  
  73. function sparkle() {
  74. var c;
  75. if (x!=ox || y!=oy) {
  76. ox=x;
  77. oy=y;
  78. for (c=0; c<sparkles; c++) if (!starv[c]) {
  79. star[c].style.left=(starx[c]=x)+"px";
  80. star[c].style.top=(stary[c]=y)+"px";
  81. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  82. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  83. star[c].style.visibility="visible";
  84. starv[c]=50;
  85. break;
  86. }
  87. }
  88. for (c=0; c<sparkles; c++) {
  89. if (starv[c]) update_star(c);
  90. if (tinyv[c]) update_tiny(c);
  91. }
  92. setTimeout("sparkle()", 40);
  93. }
  94.  
  95. function update_star(i) {
  96. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  97. if (starv[i]) {
  98. stary[i]+=1+Math.random()*3;
  99. if (stary[i]<shigh+sdown && starx[i]>0) {
  100. star[i].style.top=stary[i]+"px";
  101. starx[i]+=(i%5-2)/5;
  102. star[i].style.left=starx[i]+"px";
  103. }
  104. else {
  105. star[i].style.visibility="hidden";
  106. starv[i]=0;
  107. return;
  108. }
  109. }
  110. else {
  111. tinyv[i]=50;
  112. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  113. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  114. tiny[i].style.width="2px";
  115. tiny[i].style.height="2px";
  116. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  117. star[i].style.visibility="hidden";
  118. tiny[i].style.visibility="visible"
  119. }
  120. }
  121.  
  122. function update_tiny(i) {
  123. if (--tinyv[i]==25) {
  124. tiny[i].style.width="1px";
  125. tiny[i].style.height="1px";
  126. }
  127. if (tinyv[i]) {
  128. tinyy[i]+=1+Math.random()*3;
  129. if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
  130. tiny[i].style.top=tinyy[i]+"px";
  131. tinyx[i]+=(i%5-2)/5;
  132. tiny[i].style.left=tinyx[i]+"px";
  133. }
  134. else {
  135. tiny[i].style.visibility="hidden";
  136. tinyv[i]=0;
  137. return;
  138. }
  139. }
  140. else tiny[i].style.visibility="hidden";
  141. }
  142.  
  143. document.onmousemove=mouse;
  144. function mouse(e) {
  145. set_scroll();
  146. y=(e)?e.pageY:event.y+sdown;
  147. x=(e)?e.pageX:event.x+sleft;
  148. }
  149.  
  150. function set_scroll() {
  151. if (typeof(self.pageYOffset)=="number") {
  152. sdown=self.pageYOffset;
  153. sleft=self.pageXOffset;
  154. }
  155. else if (document.body.scrollTop || document.body.scrollLeft) {
  156. sdown=document.body.scrollTop;
  157. sleft=document.body.scrollLeft;
  158. }
  159. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  160. sleft=document.documentElement.scrollLeft;
  161. sdown=document.documentElement.scrollTop;
  162. }
  163. else {
  164. sdown=0;
  165. sleft=0;
  166. }
  167. }
  168.  
  169. window.onresize=set_width;
  170. function set_width() {
  171. if (typeof(self.innerWidth)=="number") {
  172. swide=self.innerWidth;
  173. shigh=self.innerHeight;
  174. }
  175. else if (document.documentElement && document.documentElement.clientWidth) {
  176. swide=document.documentElement.clientWidth;
  177. shigh=document.documentElement.clientHeight;
  178. }
  179. else if (document.body.clientWidth) {
  180. swide=document.body.clientWidth;
  181. shigh=document.body.clientHeight;
  182. }
  183. }
  184.  
  185. function createDiv(height, width) {
  186. var div=document.createElement("div");
  187. div.style.position="absolute";
  188. div.style.height=height+"px";
  189. div.style.width=width+"px";
  190. div.style.overflow="hidden";
  191. return (div);
  192. }
  193.  
  194. function newColour() {
  195. var c=new Array();
  196. c[0]=255;
  197. c[1]=Math.floor(Math.random()*256);
  198. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  199. c.sort(function(){return (0.5 - Math.random());});
  200. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  201. }
  202. // ]]>
  203. </script>
  204.  
  205.  
  206. <script type="text/javascript">
  207.  
  208.  
  209.  
  210. <!--
  211. //(c) Ian Muscat 2007
  212. function IE(e)
  213. {
  214. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  215. {
  216. return false;
  217. }
  218. }
  219. function NS(e)
  220. {
  221. if (document.layers || (document.getElementById && !document.all))
  222. {
  223. if (e.which == "2" || e.which == "3")
  224. {
  225. return false;
  226. }
  227. }
  228. }
  229. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  230. //-->
  231. </script>
  232.  
  233.  
  234.  
  235.  
  236. <script type="text/javascript"
  237. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  238.  
  239.  
  240.  
  241. <style type="text/css">
  242.  
  243.  
  244.  
  245. ::selection {
  246. background: #c3cef2;
  247. color: #ffffff;
  248. }
  249.  
  250. ::-moz-selection {
  251. background: #c3cef2;
  252. color: #ffffff;
  253. }
  254.  
  255. #tumblr_controls{
  256. position:fixed !important;
  257. }
  258.  
  259.  
  260. .wrapper{
  261. margin: 0px auto;
  262. width: 802px;
  263. }
  264.  
  265. .header{
  266. float: left;
  267. width: 100%;
  268. }
  269.  
  270. .left{
  271. float: left;
  272. margin-right: 20px;
  273. width: 802px;
  274. }
  275.  
  276. .right{
  277. float: right;
  278. width: 200px;
  279. background-color: ;
  280. }
  281.  
  282. @font-face
  283. {font-family: "silkscreen"; src: url('http://static.tumblr.com/jzyx4rl/MMBm86zxd/pf_arma_five.ttf');}
  284.  
  285.  
  286. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/yqxw8ss/qOClwq07v/handy00.ttf'); }
  287.  
  288.  
  289. body {
  290. background-image: url('http://static.tumblr.com/jnukgfq/Qpemq9lvj/simple.png');
  291. CURSOR: URL(http://media.tumblr.com/tumblr_lqs4jvaaz71qfoi4t.png), PROGRESS;
  292. background-color:#fff;
  293. background-repeat;
  294. margin: 0px;
  295. padding: 0px;
  296. font-family:silkscreen;
  297. color:#787878;
  298. font-size:8px; line-height:9px;
  299. text-align:justify;
  300. background-attachment:fixed;
  301.  
  302. }
  303.  
  304. a:link, a:active, a:visited {
  305. text-decoration:none;
  306. font-family:silkscreen;
  307. font-size:8px;
  308. CURSOR: URL(http://media.tumblr.com/tumblr_lqs4jvaaz71qfoi4t.png), PROGRESS;
  309. line-height:8px;
  310. font-weight:normal; text-transform:normal;
  311. color:#c3cef2;
  312. }
  313.  
  314. a:hover {
  315. color:#c3cef2;
  316. CURSOR: URL(http://media.tumblr.com/tumblr_lqs4jvaaz71qfoi4t.png), PROGRESS;
  317. font-family:handy;
  318. font-size:8px;
  319. font-style: underline;
  320. }
  321.  
  322.  
  323. b{
  324. font-family: silkscreen;
  325. font-size: 8px;
  326. color:#c3cef2;
  327. font-weight:normal;
  328. text-transform: lowercase;}
  329.  
  330. i{
  331. font-family: silkscreen;
  332. font-size: 8px;
  333. color:#c3cef2;
  334. font-weight:normal;
  335. text-transform: lowercase;}
  336.  
  337. s{
  338. font-family: silkscreen;
  339. font-size: 8px;
  340. color:#c3cef2;
  341. font-weight:normal;
  342. text-transform: lowercase;}
  343.  
  344. u{
  345. font-family: silkscreen;
  346. font-size: 8px;
  347. color:#c3cef2;
  348. font-weight:normal;
  349. text-transform: lowercase;}
  350.  
  351.  
  352.  
  353. @font-face { font-family: "lobster"; src: url('http://themes.googleusercontent.com/static/fonts/lobster/v3/MWVf-Rwh4GLQVBEwbyI61Q.woff'); }
  354.  
  355.  
  356.  
  357. a.linke, a.linke:link, a.linke:active, a.linke:visited {
  358. display: inline-block;
  359. width: 100%;
  360. font-family: silkscreen;
  361. font-size: 8px;
  362. color: #595959;
  363. text-align: center;
  364. font-style: normal;
  365. line-height: 8px;
  366. letter-spacing: 0px;
  367. text-transform: lowercase;
  368. background: #dee5fb;
  369. margin: 0px;
  370. margin-bottom: 2px;
  371. margin-left: -3px;
  372. background-repeat: no-repeat;
  373. background-position: left;
  374. padding-top: 1px; padding-bottom: 1px;
  375. border: 1px dashed #c3cef2;
  376. }
  377.  
  378.  
  379. ::-webkit-scrollbar { background-color: #c3cef2; width: 5px; height: 10px; -webkit-border-radius: 5px;} ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment { height: 0px; display: block; background-color:;} ::-webkit-scrollbar-track-piece {background-color:#c3cef2; -webkit-border-radius: 0px;} ::-webkit-scrollbar-thumb:vertical {height: 15px; background-color:#c3cef2; -webkit-border-radius: 0px;}
  380.  
  381.  
  382. .entry {
  383. margin:2px;
  384. color: #464646;
  385. padding: 1px;
  386. float:left;
  387. background-color: white;
  388. font-size: 8px;
  389. line-height:10px;
  390. border: 1px solid #fff;
  391. width:235px;
  392. }
  393.  
  394. .entry .permalink{
  395. position:absolute;
  396. width:auto;
  397. height:11px;
  398. left:25px;
  399. top:6px;
  400. padding:1px;
  401. background-color:#fff;
  402. overflow:hidden;
  403. font-family: handy;
  404. text-transform: lowercase;
  405. font-size: 8px;
  406. line-height:9px;
  407. text-align:center;
  408. opacity:0.0;
  409. border-radius:4px;
  410. -moz-border-radius:4px;
  411. }
  412.  
  413. .entry:hover .permalink{
  414. margin-top:0%;
  415. overflow:visible;
  416. -webkit-transition: all 0.4s linear; opacity: 0.8;
  417. -webkit-transition: all 0.4s linear;
  418. -moz-transition: all 0.4s linear;
  419. transition: all 0.4s linear;
  420. }
  421.  
  422. .box{
  423. border: 1px dashed #eeeeee;
  424. background-color: #000000;
  425. margin-bottom:2px;
  426. padding:3px;
  427. text-align:justify;
  428. overflow:hidden;
  429. }
  430.  
  431. .bubble {align:right;background: #ececec; margin:7px 0px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  432. .bubble p {margin:1px 0px;}
  433. .bubble span {display:block; position:absolute; width:1px; height:1px; font-size: 0; line-height: 1px; left:-10px;top:10px; border-top:7px solid transparent;
  434. border-bottom:7px solid transparent; border-right:10px solid #ececec;}
  435.  
  436. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: #ececec}
  437.  
  438.  
  439. div#sidebar{
  440. position:fixed !important;
  441. margin-left:-198px;
  442. border-right: 1px #f1f1f1 dashed;
  443. width: 200px;
  444. top: 0px;
  445. height:auto;
  446. padding: 2px;
  447. font-size: 8px;
  448. line-height:10px;
  449. letter-spacing:0px;
  450. background-color: white;
  451. {block:PermalinkPage}
  452. margin-left:-250px;
  453. {/block:PermalinkPage}
  454.  
  455. }
  456.  
  457. #posts {
  458. width: 900px;
  459. margin-left:50px;
  460. {block:PermalinkPage}
  461. margin-left:50px;
  462. {/block:PermalinkPage}
  463. top: 0px;
  464. float:left;
  465. }
  466.  
  467. #infscr-loading{
  468. top: -70px;
  469. position: absolute;
  470. left: 50%;
  471. margin-left:-8px;
  472. width:16px;
  473. height:11px;
  474. overflow:hidden;
  475. margin-bottom: 50px;
  476. }
  477.  
  478. .title{
  479. font-family: lobster;
  480. color: #c3cef2;
  481. font-size: 26px;
  482. text-align:left;
  483. text-transform:lowercase;
  484. margin:1px;
  485.  
  486.  
  487. blockquote {
  488. width:200px;
  489. margin-left: 10px;
  490. margin-right: 10px;
  491. text-align:center;
  492. color:#d73b8b;
  493. font-family:handy;
  494. font-size:8px;
  495. background-color: #fff;
  496. background-image: url('');
  497. border-radius:5px;
  498. -moz-border-radius:5px;
  499. }
  500.  
  501.  
  502.  
  503.  
  504. @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
  505. @font-face { font-family: "lovenote"; src: url('http://static.tumblr.com/4yxykdm/k6plrfhwf/ck_love_note.ttf'); }
  506. @font-face {
  507. font-family: "tinytots";
  508. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  509. }
  510.  
  511. @font-face {
  512. font-family: 'Cretino';
  513. src: url('Cretino?') format('ttf'),
  514. font-weight: normal;
  515. font-style: none;
  516. }
  517.  
  518. @font-face {
  519.  
  520. font-family: 'pixel';
  521.  
  522. font-style: normal;
  523.  
  524. font-weight: normal;
  525.  
  526. src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff'); }
  527.  
  528.  
  529.  
  530. @font-face
  531. {font-family: "silkscreen"; src: url('http://static.tumblr.com/jzyx4rl/MMBm86zxd/pf_arma_five.ttf');}
  532.  
  533.  
  534. @font-face {
  535.  
  536. font-family: "toonish";
  537.  
  538. src: url('http://static.tumblr.com/yqxw8ss/FmVlyztnh/green_fuz.ttf');}
  539.  
  540.  
  541.  
  542. @font-face { font-family: "kingcoolkc"; src: url('http://static.tumblr.com/4yxykdm/wmVlrea61/king_cool_kc_1_.ttf'); }
  543.  
  544. {CustomCSS}
  545.  
  546. </style>
  547.  
  548. {block:IndexPage}
  549. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  550. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  551.  
  552. <script type="text/javascript">
  553. $(window).load(function () {
  554. var $content = $('#posts');
  555. $content.masonry({itemSelector: '.entry'}),
  556. $content.infinitescroll({
  557. navSelector : 'div#pagination',
  558. nextSelector : 'div#pagination a#nextPage',
  559. itemSelector : '.entry',
  560. loading: {
  561. finishedMsg: '',
  562. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  563. },
  564. bufferPx : 600,
  565. debug : false,
  566. },
  567. // call masonry as a callback.
  568. function( newElements ) {
  569. var $newElems = $( newElements );
  570. $newElems.hide();
  571. // ensure that images load before adding to masonry layout
  572. $newElems.imagesLoaded(function(){
  573. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  574.  
  575.  
  576. });
  577. });
  578. });
  579. </script>
  580.  
  581. {/block:IndexPage}
  582.  
  583. <title>{title}</title>
  584. <link rel="shortcut icon" href="http://olhar-43.net/conteudo/minigifs/11/1.gif">
  585.  
  586. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  587. <meta name="viewport" content="width=820" />
  588.  
  589. </head>
  590. <body>
  591. <div class="wrapper">
  592. <div class="header">
  593. </div>
  594.  
  595. <div id="sidebar">
  596.  
  597. <a href="/"><img src="{image:Portrait}" width="100%" style="padding-bottom:2px;"></a>
  598.  
  599.  
  600. {description}
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607. <center>
  608. <a class="linke" href="{text:Custom Link One}">{text:Custom Link One Title}</a>
  609. <a class="linke" href="{text:Custom Link Two}">{text:Custom Link Two Title}</a>
  610. <a class="linke" href="{text:Custom Link Three}">{text:Custom Link Three Title}</a>
  611. <a class="linke" href="{text:Custom Link Four}">{text:Custom Link Four Title}</a>
  612. <a class="linke" href="{text:Custom Link Five}">{text:Custom Link Five Title}</a>
  613. <a class="linke" href="http://tropicalii.tk">credits</a>
  614. </center>
  615.  
  616.  
  617.  
  618. </div>
  619.  
  620.  
  621. <div class="left">
  622.  
  623. <div id="posts">
  624.  
  625. {block:Posts}
  626. <div class="entry">
  627.  
  628. {block:IndexPage}
  629. <div class="permalink">
  630. <a href="{permalink}"> {NoteCountWithLabel}</a> // <a href="{ReblogURL}" target="_blank">reblog &hearts;</a></span></div>
  631. {/block:IndexPage}
  632.  
  633. {block:Text}
  634. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  635. {/block:Text}
  636.  
  637. {block:Link}
  638. <a href="{URL}" class="title">{Name}</a>
  639. {block:Description}{Description}{/block:Description}
  640. {block:Link}
  641.  
  642. {block:Photo}
  643. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>{LinkCloseTag}{/block:IndexPage}
  644. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500"/></a>{LinkCloseTag}{/block:PermalinkPage}
  645. {/block:Photo}
  646.  
  647. {block:Photoset}
  648. {block:IndexPage}
  649. <center>
  650. {Photoset-200}</center>
  651. {/block:IndexPage}
  652. {block:PermalinkPage}
  653. <center>
  654. {Photoset-500}</center>
  655. {/block:PermalinkPage}
  656. {/block:Photoset}
  657.  
  658. {block:Quote}
  659. {Quote}</span>
  660. {block:Source}<strong>{Source}</strong>{/block:Source}
  661. {/block:Quote}
  662.  
  663. {block:Chat}
  664. {block:Title}<span class="title">{Title}</span>{/block:Title}
  665. <ul class="chat">
  666. {block:Lines}
  667. <li class="user_{UserNumber}">
  668. {block:Label}
  669. <span class="label">{Label}</span>
  670. {/block:Label}
  671.  
  672. {Line}
  673. </li>
  674. {/block:Lines}
  675. </ul>
  676. {/block:Chat}
  677.  
  678. {block:Audio}
  679. <center><div style="width:250px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  680. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  681. {/block:Audio}
  682.  
  683. {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>{Answer}{/block:Answer}
  684.  
  685. {block:Video}
  686. {block:IndexPage}
  687. <center>
  688. {Video-250}</center>
  689. {/block:IndexPage}
  690. {block:PermalinkPage}
  691. <center>
  692. {Video-500}</center>
  693. {/block:PermalinkPage}
  694. {block:Video}
  695.  
  696. {block:PermalinkPage}
  697. <center>
  698. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  699.  
  700.  
  701. {/block:PermalinkPage}
  702.  
  703.  
  704. {block:PostNotes}{PostNotes}
  705. {/block:PostNotes}
  706. </div>
  707.  
  708.  
  709. {/block:Posts}
  710. </div>
  711. </div>
  712. {block:IndexPage}
  713. {block:Pagination}
  714. <div id="pagination">
  715. {block:NextPage}
  716. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  717. {/block:NextPage}
  718. {block:PreviousPage}
  719. <a href="{PreviousPage}">&larr;&nbsp;</a>
  720. {/block:PreviousPage}
  721. </div>
  722. {/block:Pagination}
  723. {/block:IndexPage}
  724. </div>
  725.  
  726.  
  727. </body>
  728. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement