malaxo-fobia

theme 31 mf

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