23-32pm

#30

Apr 13th, 2012
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.76 KB | None | 0 0
  1. <THEME TUMBLR POR 23-32PM. NÃO RETIRE OS CRÉDITOS.>
  2.  
  3.  
  4.  
  5.  
  6. <head>
  7.  
  8. <meta name="color:sidebar" content="#fff" />
  9. <meta name="color:background" content="#F5f5f5" />
  10. <meta name="color:font" content="#999999" />
  11. <meta name="color:entry" content="#ffffff" />
  12. <meta name="color:link" content="#D42061" />
  13. <meta name="color:link hover" content= "#9D72B6"/>
  14. <meta name="color:link1" content="#fff" />
  15. <meta name="color:link2" content="#000" />
  16. <meta name="color:link3" content="#fff" />
  17. <meta name="color:linkhover1" content="#fff" />
  18. <meta name="color:linkhover2" content="#FFB553" />
  19. <meta name="color:linkhover3" content="#fff" />
  20. <meta name="color:linkhover4" content="#FC5390" />
  21. <meta name="color:linkhover5" content="#fff" />
  22. <meta name="color:linkhover6" content="#52BDFC" />
  23. <meta name="color:links" content="#999999" />
  24. <meta name="color:pagg" content="#fff" />
  25. <meta name="color:pagt" content="#969696" />
  26.  
  27. <meta name="image:sidebar" content="http://27.media.tumblr.com/tumblr_m286jyTrDc1r74sxlo3_250.jpg"/>
  28. <meta name="image:Background" content=""/>
  29.  
  30.  
  31. <meta name="text:frase" content="passe o mouse na foto." />
  32.  
  33. <meta name="if:Sombreado" content="0"/>
  34. <meta name="if:Font Feminina" content="1"/>
  35.  
  36.  
  37. <meta name="text:Link1" content="/" />
  38. <meta name="text:Link1 Title" content="link" />
  39. <meta name="text:Link2" content="/" />
  40. <meta name="text:Link2 Title" content="link" />
  41. <meta name="text:Link3" content="/" />
  42. <meta name="text:Link3 Title" content="link" />
  43. <meta name="text:Link4" content="/" />
  44. <meta name="text:Link4 Title" content="link" />
  45. <meta name="text:Link5" content="/" />
  46. <meta name="text:Link5 Title" content="link" />
  47. <meta name="text:Link6" content="/" />
  48. <meta name="text:Link6 Title" content="link" />
  49. <meta name="text:Link7" content="/" />
  50. <meta name="text:Link7 Title" content="link" />
  51. <meta name="text:Link8" content="/" />
  52. <meta name="text:Link8 Title" content="link" />
  53. <meta name="text:Link9" content="/" />
  54. <meta name="text:Link9 Title" content="link" />
  55.  
  56. <meta name="text:Sidebar Font Size" content="9px" />
  57. <meta name="text:Navigation Font Size" content="9px" />
  58. <meta name="text:BlogTitle Font Size" content="30px" />
  59.  
  60.  
  61. <script type="text/javascript">
  62.  
  63. // <![CDATA[
  64.  
  65. var bgcolour="#ffffff"; // background colour
  66.  
  67. var fgcolour="#000000"; // foreground colour
  68.  
  69. var speed=100; // speed of bubbling, lower is faster
  70.  
  71.  
  72. var shades=10; // number of shades of bubble
  73.  
  74. /****************************
  75.  
  76. * Bubbling Text Effect *
  77.  
  78.  
  79. *(c) 2003-6 mf2fm web-design*
  80.  
  81. * http://www.mf2fm.com/rv *
  82.  
  83. * DON'T EDIT BELOW THIS BOX *
  84.  
  85.  
  86. ****************************/
  87.  
  88. var bubbcol=new Array();
  89.  
  90. var bubbler, bubbtxt;
  91.  
  92. var bubbchr=new Array();
  93.  
  94. window.onload=function() { if (document.getElementById) {
  95.  
  96. for (bubbler=0; bubbler<=shades; bubbler++) {
  97.  
  98. bubbtxt="#";
  99.  
  100. for (var i=1; i<6; i+=2) {
  101.  
  102. var bg=parseInt(bgcolour.substring(i,i+2),16);
  103.  
  104. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  105.  
  106. }
  107.  
  108.  
  109. bubbcol[bubbler+1]=bubbtxt;
  110.  
  111. }
  112.  
  113.  
  114. bubbler=document.getElementById("bubble");
  115.  
  116. bubbtxt=bubbler.firstChild.nodeValue;
  117.  
  118. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  119.  
  120. for (var i=0; i<bubbtxt.length; i++) {
  121.  
  122. var bubbi=document.createElement("span");
  123.  
  124. bubbi.setAttribute("id", "bubb"+i);
  125.  
  126. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  127.  
  128. bubbler.appendChild(bubbi);
  129.  
  130. }
  131.  
  132. bubbler=setInterval ("bubbling()", speed);
  133.  
  134.  
  135. }}
  136.  
  137. function dechex(dec) {
  138.  
  139. var hex=dec.toString(16);
  140.  
  141. if (dec<16) return "0"+hex;
  142.  
  143. else return hex;
  144.  
  145.  
  146. }
  147.  
  148.  
  149. function bubbling() {
  150.  
  151. for (var i=0; i<bubbtxt.length; i++) {
  152.  
  153. var bubbme=document.getElementById("bubb"+i);
  154.  
  155. if (bubbchr[i]) {
  156.  
  157.  
  158. bubbme.style.color=bubbcol[bubbchr[i]];
  159.  
  160. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  161.  
  162. }
  163.  
  164. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  165.  
  166.  
  167. }
  168.  
  169.  
  170. }
  171.  
  172.  
  173. // ]]>
  174.  
  175. </script>
  176.  
  177.  
  178. <title>{Title}</title>
  179. <link rel="shortcut icon" href="{Favicon}">
  180. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  181. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  182. </head>
  183.  
  184.  
  185. <style type="text/css">
  186.  
  187. body{color:{color:Font}; background-color:{color:Background}; background-image:url("{image:Background}"); background-position:top right; background-repeat: no-repeat; background-attachment:fixed; font-family:verdana; font-size:11px; line-height: 120%; text-align:justify;}
  188.  
  189. a:link, a:active, a:visited{ color: {color:links}; text-decoration:none; -webkit-transition-duration: 0.4s; background-color:;}
  190.  
  191. a:hover{color:{color:Link Hover};}
  192.  
  193.  
  194. ::-webkit-scrollbar {width: 10px; height: 6px;}
  195. ::-webkit-scrollbar-track-piece {background-color: #f5f5f5; repeat scroll 0 0 transparent;}
  196. ::-webkit-scrollbar-thumb:vertical {height: 5px;background-color: #fff; border-right: 0px solid #eee}
  197. ::-webkit-scrollbar-thumb:horizontal {width: 5px;background-color: #000;}
  198.  
  199.  
  200.  
  201. #container {overflow: hidden;width:736px;margin-right: auto; margin-left: 180px; margin-bottom:auto;}
  202.  
  203. #entry { width:505px; margin-bottom:1px; background-color:; padding:15px; top:0px; border: 0px solid #E1CCB9; background-color: {color:entry}; float:right }
  204.  
  205. #entry img{opacity:1; -webkit-transition-duration:.5s;}
  206.  
  207. #entry img:hover{opacity:1; -webkit-transition: 0.5s ease-in;}
  208.  
  209. #titlee {font-family: georgia; font-size: 16px; font-weight:; font-style: none; letter-spacing:0px; text-transform: ; line-height: 18px;text-align: center;}
  210.  
  211. #titlee a{background-color:transparent;}
  212.  
  213.  
  214. .bigquote{font-size: 60px; color: transparent; line-height: 90px; font-family: georgia; margin-left: 85px; margin-top: -50px}
  215. .pquote{font-size: 13px; font-family: georgia; letter-spacing: 0px; serif; line-height: 18px;
  216. text-transform: none; margin-top: -70px; text-indent: 6px; text-align: center; font-style: none; padding-left: 0px}
  217. .source{margin-top: 5px; text-align: right;}
  218.  
  219.  
  220. blockquote {padding-left:2px;border-left:1px solid #ddd;}
  221.  
  222.  
  223. .notes {width: 524px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: left; float:right}
  224.  
  225. ol.notes {list-style: none; margin: 0 0px 0 0px; padding: 0px; z-index: 11;}
  226. ol.notes li {background-color: #fff; margin-bottom: 2px; padding: 5px; }
  227. .notes img{display: none; border:0px}
  228.  
  229.  
  230. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  231.  
  232. .info{ font-size:9px; margin-top: 22px; }
  233. .tags{font-size: 9px; display: inline; text-align: left; margin-left: -0px; text-transform: lowercase; color: #000}
  234. .tags a{font-size: 9px; text-transform: lowercase;}
  235. .origin{font-size: 9px; text-align: left; margin-left: -6px}
  236. .ibottom{margin: 5px 0 2px 0; font-family: verdana; margin-top: 5px; font-family: 9px}
  237. .ibottom a{ padding: 1px 0 1px 0; font-family: 9px; margin-bottom:-20px}
  238. .date{float:left; text-transform: lowercase; font-size: 9px}
  239. .ff {font-size: 9px}
  240. .right {float: right;}
  241.  
  242.  
  243. /* ANSWER */
  244. .question {color: {color:PostFont}; padding: 6px; font-size: 10px; background-color: #ff; margin-bottom: -10px; font-family: verdana; font-style: none; border-bottom: 0px solid #ddd; margin-left: 0px; margin-top: 3px;}
  245.  
  246. .asker {text-transform: lowercase; font-family: verdana; font-style: none; line-height: 16px; font-size: 11px; font-family: verdana;}
  247.  
  248. .asker a:link, .asker a:visited, .asker a:active {margin-left: 0px; color: {color:font}; text-decoration: none;}
  249. .asker a:hover {background-color: {colorbackground};}
  250. .tip {color: {color:background}; font-size: 20px; padding-left: 40px;}
  251.  
  252.  
  253. .chat{line-height: 12px; list-style: none }
  254. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height: 20px;}
  255. .person1 {background-color: {color:entry}; color: {color:text} }
  256. .person1 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color:text} }
  257. .person2 {background-color: {color:entry}; color: {color:text} }
  258. .person2 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color:text} }
  259.  
  260.  
  261. #pic { padding: 5px; position:fixed; background-color: {color:sidebar}; margin-top:352px; margin-left: 737px;}
  262. #pic img{width: 160px; height:170px;}
  263.  
  264.  
  265. #sside {height:100px;top:529px;position:fixed}
  266. #side {margin-top:-169px; background-color:{color:side}; width:300px; height:52px; text align:center; font-size:{text:Navigation Font Size}; margin-left:-270px; letter-spacing:1px; position:fixed important!; z-index:1;}
  267.  
  268. #nav {margin-top:20px; margin-left:30px; position:fixed; }
  269.  
  270. #nav a { padding:5px; color:{color:navigation}; font-weight:bold; font-family: consolas; text-transform:uppercase; font-size:{text:Navigation Font Size}; }
  271.  
  272. #nav a:hover { background-color:{color:background}; color:{color:link}; -moz-border-bottom-right-radius: 30px; border-bottom-right-radius: 30px; -moz-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; -moz-border-top-right-radius: 30px; border-top-right-radius: 30px; -moz-border-top-left-radius: 30px; border-top-left-radius: 30px;}
  273.  
  274. #descr{opacity:0; width:150px; height:85px; margin-left:743px; position: fixed; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-top:422px; font-size: 9px; padding:5px; }
  275. #descr:hover{opacity:0.7; padding: 3px; background-color:{color:sidebar}; width:152px; height:85px; position: fixed; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-top:422px; font-size: 9px; color:{color:text};}
  276.  
  277.  
  278. @font-face {
  279. font-family: 'Give You Glory';
  280. font-style: normal;
  281. font-weight: normal;
  282. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  283. }
  284.  
  285. #baselinks {background-color: {color:sidebar}; width: 207px; float: left; margin-left:210px; margin-top: -45px; padding: 1px; text-align: center; position: absolute; -moz-transition: all 1.5s ease-in-out!important; -o-transition: all 1.5s ease-in-out!important; transition: all 1.5s ease-in-out!important; -webkit-transition: all 1.5s ease-in-out!important; z-index: 999; -moz-transition: all 1.2s ease-in-out!important; -o-transition: all 1.2s ease-in-out!important; transition: all 1.2s ease-in-out!important; -webkit-transition: all 1.2s ease-in-out!important; }
  286.  
  287.  
  288. #baselinks a {float: left; margin-left: 1px; display: block; font-family: tahoma; font-size: 9px; text-align: center; width: 67px; background-color: {color:bg link s}; color:{color:link s}; line-height: 20px; overflow: hidden; margin-top: 0px; margin-bottom: 1px; }
  289.  
  290. .ttle {margin-top: 370px; margin-left:905px; text-align: center; font-family: gabriola; {block:IfFontFeminina}font-family: Give You Glory; {/block:IfFontFeminina} font-size: 16px; color: {color:title}; position: fixed; z-index: 3; width: 150px; {block:IfSombreado} text-shadow: 1px 0px 1px {color:title};{/block:IfSombreado}}
  291.  
  292. #sid3 {width: 145px; margin-left: 732px; height: 10px; margin-top: 535px; float:left; text-align: justify; background-color:{color:pagg}; position:fixed; padding:5px; font-size: 9px; }
  293.  
  294. div#pgs {text-align: center; font-family: verdana; font-size: 8px; line-height: 8px;}
  295.  
  296. div#pgs a {background:{color:background}; padding: 2px 4px; color: {color:pagt}; text-decoration: none; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  297.  
  298. div#pgs a:hover {background: {color:sidebar}; color: {color:text}; border: none;}
  299.  
  300. div#pgs span.pagina_atual {background: {color:background}; margin: 0px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  301.  
  302. #pages{ font-family:verdana; margin-top:0px; font-size:23px; text-transform:lowercase; padding:0px; text-align: center;}
  303.  
  304. #pages a{ font-family:verdana; font-size:23px; text-transform:lowercase; text-align:center;color: #4B4B4B;}
  305.  
  306. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  307.  
  308. #sk8er { margin-left: 907px; margin-top: 400px; width: 3px; text-transform: uppercase; height:86px; position: fixed; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; background-color:transparent; border-left: 3px solid #929292;}
  309.  
  310. .links2 {-webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; background-color:; margin-top: 10px; margin-left: -2px}
  311.  
  312. .links2 a { display: block; font-family: tinytots; transition: all 0.5s ease-out; -o-transition-transition: all 0.5s ease-out; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; width: 110px; text-align: center; font-size: 8px; height:12px; margin: 1px 0 0px 0; background-color:#929292; color: #fff; margin-left: 3px; line-height:12px;}
  313.  
  314. .links2 a:hover {text-transform: uppercase;background-color: ; color:; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 0px; width: 130px;}
  315.  
  316. #sidlinks a {margin-top: 334px; margin-left: 746px; float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-bottom: 1px; width: 49px; background-color:{color:link1}; height: 17px; color:{color:link2}; text-decoration: none; text-transform: uppercase; line-height: 20px; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; position: fixed; -webkit-border-radius: 7px 0px 0px 0px;}
  317.  
  318. #sidlinks a:hover {color: {color:linkhover1}; background-color: {color:linkhover2}; text-align: center; font-weight: bold;}
  319.  
  320. #sidlinks2 a {margin-top: 334px; margin-left: 796px; float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-bottom: 1px; width: 49px; background-color:{color:link1}; height: 17px; color:{color:link2}; text-decoration: none; text-transform: uppercase; line-height: 20px; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; position: fixed; -webkit-border-radius: 0px 0px 0px 0px;}
  321.  
  322. #sidlinks2 a:hover {color: {color:linkhover3}; background-color: {color:linkhover4}; text-align: center; font-weight: bold;}
  323.  
  324. #sidlinks3 a {margin-top: 334px; margin-left: 846px; float: left; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-bottom: 1px; width: 49px; background-color:{color:link1}; height: 17px; color:{color:link2}; text-decoration: none; text-transform: uppercase; line-height: 20px; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; position: fixed; -webkit-border-radius: 0px 7px 0px 0px;}
  325.  
  326. #sidlinks3 a:hover {color: {color:linkhover5}; background-color: {color:linkhover6}; text-align: center; font-weight: bold;}
  327.  
  328. .cred {position: fixed; text-align: center;margin-top: 535px; margin-left: 887px; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 10px; line-height:20px; text-align: center; text-transform: none; height: 20px; width: 20px; background-color: {color:sidebar}; color:{color:text};}
  329.  
  330. </style>
  331. <body>
  332.  
  333.  
  334. <div id="container">
  335.  
  336. <div id="sidlinks">
  337. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  338. </div>
  339.  
  340. <div id="sidlinks2">
  341. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  342. </div>
  343.  
  344. <div id="sidlinks3">
  345. {block:ifLink8}<a href="{text:Link8}">{text:Link8 Title}</a>{/block:ifLink8}
  346. </div>
  347.  
  348. <div id="pic"><img src="{image:sidebar}"/></div>
  349.  
  350.  
  351. <div id="sk8er">
  352. <div class="links2">
  353. <a href="{text:Link1}">{text:Link1 Title} </a>
  354. <a href="{text:Link2}">{text:Link2 Title} </a>
  355. <a href="{text:Link3}">{text:Link3 Title} </a>
  356. <a href="{text:Link4}">{text:Link4 Title} </a>
  357. <a href="{text:Link5}">{text:Link5 Title} </a>
  358.  
  359. </div></div>
  360.  
  361.  
  362. <div id="descr">{description}</div>
  363.  
  364.  
  365. <div class="ttle"><span id="bubble">{text:frase}</span></div>
  366.  
  367.  
  368.  
  369. <div id="baselinks">
  370. </div>
  371.  
  372. <div class="cred"><a href="http://23-32pm.tumblr.com">©</a> <a href="http://restitui.tumblr.com">+</a> <a href="http://chasing69.tumblr.com">+</a></div>
  373.  
  374. <div id="sid3">
  375. <center><div id="sspagination"><div id="pgs">{block:JumpPagination length="5"}{block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage} {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}</div></div></div></center>
  376.  
  377. {block:Posts}<div id="entry">
  378.  
  379. {block:Answer}<div class="question"><div class="asker"><b>{Asker} asked:</b> {Question}</div></div>
  380. <div class="caption">{Answer}</div>{/block:Answer}
  381.  
  382.  
  383. {block:Text}
  384. <div id="titlee">{block:Title}<a href="{Permalink}">{Title}</a>{Block:Title}</div>{Body}
  385. {/block:Text}
  386.  
  387. {block:Photo}
  388. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width="500px" />{block:Caption}{Caption}{/block:Caption}
  389. {/block:Photo}
  390.  
  391. {block:Photoset}
  392. {block:ContentSource} <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" /> {/block:SourceLogo} {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --> {/block:ContentSource}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  393. {/block:Photoset}
  394.  
  395. {block:Quote}
  396. <b class="bigquote">“</b><div class="pquote">"{Quote}"</div>{block:Source}
  397. <div class="source">{Source}</div>{/block:Source}
  398. {/block:Quote}
  399.  
  400.  
  401. {block:Link}
  402. <a href="{URL}" class="link" {Target}><div id="titlee">{Name}</div></a>{block:Description}{Description}{/block:Description}
  403. {/block:Link}
  404.  
  405. {block:Chat}
  406. {block:Title}<titlee><center><a href="{Permalink}">{Title}</a></center></titlee>{/block:Title}
  407. <div class="chat"><ul>{block:Lines}
  408. <li class="person{UserNumber}">{block:Label}
  409. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  410. {/block:Chat}
  411.  
  412. {block:Video}
  413. {Video-500}{block:Caption}{Caption}{/block:Caption}
  414. {/block:Video}
  415.  
  416. {block:Audio}
  417. <div style="width:500px;background-color:;">{AudioPlayer}</div>{block:Caption}{Caption}{/block:Caption}
  418. {/block:Audio}
  419.  
  420. {block:Date}
  421. <div class="ibottom">
  422. <div class="ff">
  423. {block:HasTags}{block:Tags}<div class="tags"><a href="{TagURL}">#{Tag}</a> </div>{/block:Tags}{/block:HasTags}<br />
  424. <span class="date">
  425. <a href="{Permalink}">{TimeAgo} </a> </span> <div class="right"><a href="{ReblogUrl}" target="_blank"> reblog this sweet</a></div> {block:NoteCount} <a href="{Permalink}">· {NoteCountWithLabel}</a>{/block:NoteCount} <a href="http://twitter.com/share" class="twitter-share-button"
  426. data-text="{Title}"
  427. data-url="{permalink}"
  428. data-via="seutwitter"
  429. data-count="horizontal">· tweet</a>{/block:Date}
  430. {block:RebloggedFrom} <br> reblogged from: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a> <div class="right"> © <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a></div>{/block:RebloggedFrom}
  431. </div></div></div>
  432.  
  433. {/block:Posts}
  434.  
  435. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  436. </div>
  437. </div>
  438.  
  439.  
  440.  
  441.  
  442. </body>
  443. </html>
Advertisement
Add Comment
Please, Sign In to add comment