Bakaway

theme 12

Jul 7th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.88 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  5.  
  6. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7.  
  8. <!-- ----------------------------------
  9.  
  10. THEME #12 por estranhus
  11.  
  12. ---------------------------------- -->
  13. <head>
  14.  
  15.  
  16. <meta name="color:Background" content="#f3f3f3" />
  17. <meta name="color:text" content="#000" />
  18. <meta name="color:entry" content="#fff" />
  19. <meta name="color:borda" content="#000" />
  20. <meta name="color:text link" content="#000" />
  21. <meta name="color:bg link" content="#fff" />
  22. <meta name="color:Link" content="#000" />
  23. <meta name="color:link hover" content="#CECECE" />
  24.  
  25. <meta name="font:Body" content="verdana" />
  26. <meta name="font:Title" content="Georgia" />
  27.  
  28. <meta name="text:frase" content="COLOCA SUA FRASE BEM BONITA ">
  29.  
  30. <meta name="image:Background" content=""/>
  31. <meta name="image:foto" content="http://static.tumblr.com/yjntqzi/kCAm5xru8/42.png"/>
  32.  
  33.  
  34.  
  35. <meta name="text:Link1" content="/" />
  36. <meta name="text:Link1 Title" content="LINK ONE" />
  37. <meta name="text:Link2" content="/" />
  38. <meta name="text:Link2 Title" content="LINK TWO" />
  39. <meta name="text:Link3" content="/" />
  40. <meta name="text:Link3 Title" content="LINK THREE" />
  41. <meta name="text:Link4" content="" />
  42. <meta name="text:Link4 Title" content="" />
  43. <meta name="text:Link5" content="/" />
  44. <meta name="text:Link5 Title" content="" />
  45. <meta name="text:Link6" content="/" />
  46. <meta name="text:Link6 Title" content="" />
  47.  
  48.  
  49. <script type="text/javascript">
  50.  
  51. // <![CDATA[
  52.  
  53. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  54.  
  55. var fgcolour="#ffffff"; // foreground colour
  56.  
  57. var hlcolour="#ffffff"; // highlight colour
  58.  
  59. var bgcolour="#b5b5b5"; // background colour
  60.  
  61. var glcolour="#f8f8f8"; // colour of glow around letters
  62.  
  63. var speed=66; // speed colours change, 1 second = 1000
  64.  
  65. var delay=50; // how long to wait between wipes
  66.  
  67. var alink="/"; // page to link text to (set to ="" for no link)
  68.  
  69.  
  70.  
  71. /****************************
  72.  
  73. *Multi-Wipe Neon Text Effect*
  74.  
  75. *(c)2003-12 mf2fm web-design*
  76.  
  77. * http://www.mf2fm.com/rv *
  78.  
  79. * DON'T EDIT BELOW THIS BOX *
  80.  
  81. ****************************/
  82.  
  83. var w_txt, w_txl;
  84.  
  85. var w_flp=bgcolour;
  86.  
  87. var w_sty=Math.floor(Math.random()*8);
  88.  
  89. var w_cnt=-1;
  90.  
  91. var wipes=new Array();
  92.  
  93. var wrand=new Array();
  94.  
  95. window.onload=function() { if (document.getElementById) {
  96.  
  97. var i, wiper, wipei;
  98.  
  99. wiper=document.getElementById("wipe");
  100.  
  101. w_txt=wiper.firstChild.nodeValue;
  102.  
  103. w_txl=w_txt.length;
  104.  
  105. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  106.  
  107. for (i=0; i<w_txl; i++) {
  108.  
  109. wipei=document.createElement("span");
  110.  
  111. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  112.  
  113. wipes[i]=wipei.style;
  114.  
  115. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  116.  
  117. wipes[i].color=fgcolour;
  118.  
  119. wiper.appendChild(wipei);
  120.  
  121. }
  122.  
  123. if (alink) {
  124.  
  125. wiper.style.cursor="pointer";
  126.  
  127. wiper.onclick=function() { top.location.href=alink; }
  128.  
  129. }
  130.  
  131. for (i=0; i<w_txl; i++) wrand[i]=i;
  132.  
  133. wiper=setInterval("randwipe()", speed);
  134.  
  135. }}
  136.  
  137.  
  138.  
  139. function c(i, shade) {
  140.  
  141. if (shade==bgcolour) wipes[i].textShadow="none";
  142.  
  143. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  144.  
  145. wipes[i].color=shade;
  146.  
  147. }
  148.  
  149.  
  150.  
  151. function randwipe() {
  152.  
  153. var w_old;
  154.  
  155. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  156.  
  157. else {
  158.  
  159. w_cnt=-1;
  160.  
  161. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  162.  
  163. w_old=w_sty;
  164.  
  165. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  166.  
  167. }
  168.  
  169. }
  170.  
  171.  
  172.  
  173. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  174.  
  175.  
  176.  
  177. function wipe0() { // curtains
  178.  
  179. if (w_cnt<Math.floor(w_txl/2)) {
  180.  
  181. c(w_cnt, hlcolour);
  182.  
  183. c(w_txl-w_cnt-1, hlcolour);
  184.  
  185. }
  186.  
  187. else if (w_cnt<w_txl) {
  188.  
  189. c(w_cnt, w_flp);
  190.  
  191. c(w_txl-w_cnt-1, w_flp);
  192.  
  193. }
  194.  
  195. }
  196.  
  197.  
  198.  
  199. function wipe1() { // random
  200.  
  201. var i, rand, temp;
  202.  
  203. if (w_cnt==0) {
  204.  
  205. for (i=0; i<w_txl; i++) {
  206.  
  207. rand=Math.floor(Math.random()*w_txl);
  208.  
  209. temp=wrand[i];
  210.  
  211. wrand[i]=wrand[rand];
  212.  
  213. wrand[rand]=temp;
  214.  
  215. }
  216.  
  217. }
  218.  
  219. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  220.  
  221. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  222.  
  223. }
  224.  
  225.  
  226.  
  227. function wipe2() { // forwards
  228.  
  229. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  230.  
  231. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  232.  
  233. }
  234.  
  235.  
  236.  
  237. function wipe3() { // backwards
  238.  
  239. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  240.  
  241. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  242.  
  243. }
  244.  
  245.  
  246.  
  247. function wipe4() { // searchlight
  248.  
  249. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  250.  
  251. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  252.  
  253. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  254.  
  255. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  256.  
  257. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  258.  
  259. }
  260.  
  261.  
  262.  
  263. function wipe5() { // fade
  264.  
  265. var i;
  266.  
  267. if (w_cnt<w_txl+3) {
  268.  
  269. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  270.  
  271. var temp="#";
  272.  
  273. for (i=1; i<6; i+=2) {
  274.  
  275. var hex1=parseInt(start.substring(i,i+2),16);
  276.  
  277. var hex2=parseInt(w_flp.substring(i,i+2),16);
  278.  
  279. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  280.  
  281. }
  282.  
  283. for (i=0; i<w_txl; i++) c(i, temp);
  284.  
  285. }
  286.  
  287. }
  288.  
  289.  
  290.  
  291. function wipe6() { // flash
  292.  
  293. var i;
  294.  
  295. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  296.  
  297. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  298.  
  299. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  300.  
  301. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  302.  
  303. }
  304.  
  305. }
  306.  
  307.  
  308.  
  309. function wipe7() { // checkerboard
  310.  
  311. var qtr=Math.floor(w_txl/4);
  312.  
  313. if (w_cnt<qtr) {
  314.  
  315. c(w_cnt, hlcolour);
  316.  
  317. c(w_cnt+2*qtr, hlcolour);
  318.  
  319. }
  320.  
  321. else if (w_cnt<2*qtr) {
  322.  
  323. c(w_cnt-qtr, w_flp);
  324.  
  325. c(w_cnt+qtr, w_flp);
  326.  
  327. }
  328.  
  329. else if (w_cnt<3*qtr) {
  330.  
  331. c(w_cnt-qtr, hlcolour);
  332.  
  333. c(w_cnt+qtr, hlcolour);
  334.  
  335. }
  336.  
  337. else if (w_cnt<w_txl) {
  338.  
  339. c(w_cnt-2*qtr, w_flp);
  340.  
  341. c(w_cnt, w_flp);
  342.  
  343. }
  344.  
  345. }
  346.  
  347. // ]]>
  348.  
  349. </script>
  350.  
  351.  
  352. <title>{Title}</title>
  353. <link rel="shortcut icon" href="{Favicon}">
  354. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  355. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  356. </head>
  357.  
  358.  
  359. <style type="text/css">
  360.  
  361. ::-webkit-scrollbar{width:9px;height:9px;}
  362. ::-webkit-scrollbar-button:start:decrement
  363. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  364. ::-webkit-scrollbar-track-piece{background-color:{color:background};-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  365. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:text};-webkit-border-radius:px;}
  366. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:text};-webkit-border-radius:px;}
  367.  
  368. body {background-color:{color:background}; font-family: {font:body}; color: {color:#000}; text-align: center; font-size: 11px; background-image:url('{image:background}') }
  369.  
  370. a:link, a:active, a:visited{; text-decoration:none; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;font-size:11px; color: {color:link}}
  371. a:hover{color:{color:link hover}; }
  372.  
  373. p {margin: 6px 0 0 0}
  374.  
  375. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:entry}; padding-left: 5px; }
  376. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:entry};}
  377. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:blockquote}; }
  378. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:blockquote}; }
  379.  
  380. #entriess {margin:0px 0 10px 0; }
  381. .posts {width: 500px; background-color: {color:entry}; padding: 10px; margin-bottom:-16px; text-align: justify; font-family: {font:body}; font-size: 11px; margin-top: 17px; margin-left: 300px; }
  382.  
  383. h1 {font-family: {font:title}; text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  384.  
  385. h1 a {text-align: center; font-size: 66px; color: {color:link}; font-weight: normal; line-height: 18px;}
  386.  
  387. .post img{margin: 2px 0 2px 0 image-aling: center}
  388.  
  389. h1 a:hover {text-align: center; font-size: 16px; color: {color:link hover}; font-weight: normal; line-height: 18px;}
  390.  
  391. .xquote {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  392. .xquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  393. .xquotesource a, a:hover{text-transform: none;}
  394.  
  395. .chat {line-height: 12px; list-style: none }
  396. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  397. .person1 {background-color:{color:entry}; color: {color:text}; }
  398. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  399. .person2 {color: {color:text} }
  400. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  401.  
  402. .audio{background-color:black; display:block;}
  403. .audio img{text-align: left; max-width: 250px; height: auto; padding: 20px 0 20px 0}
  404.  
  405. #info {background-color:{color:entry}; padding:1px; text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; -webkit-transition:1s;}
  406.  
  407. #info a {font-size: 9px;}
  408.  
  409. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
  410. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  411.  
  412. #cap {width: 500px; margin-top: -2px;}
  413. .notes {width: 520px; padding: 0px; margin-bottom: -16px; font-size: 9px; text-align: left;margin-top: 17px; margin-left: 300px;}
  414. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  415. ol.notes li {background-color: {color:entry}; margin-bottom: 1px; padding: 5px; }
  416. .notes img{display: none; border:0px}
  417. .source {display: none;}
  418.  
  419. #panda { margin-top: 3px; background-color: #000; color; #fff; margin-left:-134}
  420. #tumblr_controls{position: fixed!important}
  421. #tumblr_controls{position: fixed!important}
  422. #tumblr_controls{position: fixed!important}
  423. #tumblr_controls{position: fixed!important}
  424.  
  425. #galinha {font-family: verdana; font-size: 8px; text-align: left;}
  426.  
  427. #galinha a {background:{color:background}; margin: 0 2px 0 0; padding: 3px 5px; color: {color:text}; font-style:bold; -moz-border-bottom-right-radius: 20px; border-bottom-right-radius: 20px; -moz-border-bottom-left-radius: 20px; border-bottom-left-radius: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;font-size: 8px; margin-left: 0px}
  428.  
  429. #galinha a:hover {background: {color:background}; color: {color:text}; font-style:bold; opacity:1.0;}
  430.  
  431. #galinha span.pagina_atual {background: {color:background}; margin: 0 1px 0 0; padding: 3px 5px;; color:{color:border}; font-weight: none; text-decoration: none; -moz-border-bottom-right-radius: 20px; border-bottom-right-radius: 20px; -moz-border-bottom-left-radius: 20px; border-bottom-left-radius: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  432.  
  433. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  434. #asker a {font-size: 11px}
  435. .answer {padding: 2px}
  436. .answer img {max-width: 470px;}
  437.  
  438.  
  439. #img {width: 154px; margin-left:120px; margin-top:300px; position: fixed; height: 154px; color: {color:sidebar}; -webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; transition: all 0.6s linear; border: 5px solid {color:sidebar}; -moz-border-radius: 180px;-webkit-border-radius: 90px;}
  440. .img img {width: 155px; height: 155px; -webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; transition: all 0.6s linear; -moz-border-radius: 180px; -webkit-border-radius: 80px;}
  441. #img:hover {opacity: 1.0;}
  442.  
  443.  
  444. .titulo {font-size: 10px; font-family: georgia; background-color: {color:background}; color: {color:text}; position:fixed; width: 0px; padding: 4px; margin-left: 292px; margin-top: 510px;height: autopx}
  445.  
  446. .frase {font-size: 11px; font-family: georgia; background-color: {color:borda}; color: {color:text}; position:fixed; width:200px; padding: 4px; margin-left: -210px; margin-top: -230px;height: autopx}
  447.  
  448.  
  449.  
  450. #links {margin-top: 350px; margin-left: 111px; position:fixed; background-color:{color:#000};}
  451. #links a{padding:2px 2px 2px 15px; display:block; width: 165px; line-height: 6px; font-size: 10px; margin-bottom: 1px; text-align: left; font-family: tahoma; text-transform: uppercase; color: {color:entry}; background-color: {color:borda}; -webkit-transition: 1.3s ease-in; -moz-transition: 1.3s ease-in; transition: 1.3s ease-in; {block:ifFontTinytots} font-family:tinytots;{/block:ifFontTinytots} }
  452. #links a:hover{margin-left: -70px;}
  453.  
  454. .descri {width:190px; height: auto; margin-left:-202px; margin-top:-49px; position:fixed; overflow:hidden; background-color: transparent ; color: #000; font-family: verdana; font-size:9px;text-transform:; border-left:0px solid; border-right:0px solid; padding:3px;}
  455.  
  456.  
  457.  
  458. #urubu{ position: fixed; margin-top: -70px; margin-left: -180px; width: autopx; height:autopx; background-color: #trans; color: {color:text}; font-size:9px; text-align:center; padding: 4px}
  459.  
  460.  
  461. </style>
  462. <body>
  463.  
  464. <div id="links">
  465. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  466. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  467. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  468. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  469. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  470. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  471.  
  472.  
  473. </div>
  474.  
  475. <Div id="nana"></div>
  476. <div id="img"><div class="img">
  477. <a href="/" title="back to top?"><img src="{image:foto}"></a>
  478. </div></div>
  479. </div>
  480.  
  481. <div class="titulo">{text:titulo}
  482. <Div class="descri">{description}</div>
  483. <Div class="frase"><span id="wipe">{text:frase}</span></div>
  484. <div id="urubu"><div class="galinha">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><big>«</big></a>{/block:PreviousPage}
  485. {block:NextPage}<a href="{NextPage}"><big><big><b>»</b></big></big></a>{/block:NextPage}
  486. </div> {/block:Pagination} </div></a></div>
  487. </div>
  488.  
  489. <div style="margin-left: 145px; margin-top: 304px; position:fixed"><a href="http://estranhus.tumblr.com">©</a></div>
  490. <div id="entriess">
  491. {block:Posts}
  492. <div class="posts">
  493.  
  494. {block:Text}{block:Title}<h1><div class="cufon">{Title}</div></h1>{/block:Title}{Body}{/block:Text}
  495.  
  496. {block:Photo}{LinkOpenTag}<center><div class="image"><img src="{PhotoURL-500}"></div></center>{LinkCloseTag}{/block:Photo}
  497.  
  498. {block:Photoset}{Photoset-500}{/block:Photoset}
  499.  
  500. {block:Quote}
  501. <div class="xquote">“{Quote}”</div>
  502. {block:Source}<div class="xquotesource"><b> — {Source}</b></div>
  503. {/block:Source}
  504. {/block:Quote}
  505.  
  506. {block:Link}
  507. <h1><a href="{URL}" {Target}><font size="3px">{Name}</font></a></h1>
  508. {block:Description}{Description}{/block:Description}
  509. {/block:Link}
  510.  
  511. {block:Chat}
  512. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  513. <div class="chat"><ul>{block:Lines}
  514. <li class="person{UserNumber}">{block:Label}
  515. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  516. {/block:Chat}
  517.  
  518. {block:Audio}
  519. <br>
  520. <div class="audio">{AudioPlayerBlack}</div>
  521. {block:Caption}{Caption}{/block:Caption}
  522. {/block:Audio}
  523.  
  524. {block:Video}{Video-500}{/block:Video}
  525.  
  526. {block:Answer}
  527. <div id="asker"><b>{Asker} gemeu baixinho:</b> {Question}</div>
  528. <div class="answer">{Answer}</div>
  529. {/block:Answer}
  530.  
  531. <div id="cap">
  532. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  533. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  534. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  535.  
  536. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  537. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  538. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  539. {/block:ContentSource}</div></div><p>
  540.  
  541. <div id="info">
  542. {block:Date}<div class="tags">{block:HasTags}<b>indiretas:</b> {block:Tags}<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  543. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} · <a href="{ReblogUrl}" target="_blank">fucking <b>reblog</b></a>{/block:IndexPage}
  544. {block:RebloggedFrom}<br>originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} · via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  545. {/block:RebloggedFrom}
  546. </div>
  547. </div>{/block:Date}
  548.  
  549. {/block:posts}
  550.  
  551. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  552.  
  553. </div>
  554. </div>
  555.  
  556.  
  557.  
  558. </body>
  559. </html>
Advertisement
Add Comment
Please, Sign In to add comment