Advertisement
c-hanged

theme 16; inspired in chasing69

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