malaxo-fobia

theme 33 mf

May 28th, 2012
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 18.12 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="#f3f3f3" />
  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="#ffffff" />
  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. <meta name="color:barra" content="#000000" />
  28. <meta name="color:txbarra" content="#ffffff" />
  29.  
  30. <meta name="if:WipeTitle" content="1"/>
  31. <meta name="if:Show tags" content="1"/>
  32. <meta name="if:Enable endless scrolling" content="0"/>
  33.  
  34. <meta name="image:background" content="" />
  35. <meta name="image:sidebar 1" content="http://24.media.tumblr.com/tumblr_m3zk2cWwDB1rw4gr6o1_400.jpg" />
  36.  
  37. <meta name="text:titulo" content="titulo bem aqui rsrs" />
  38. <meta name="text:Link1" content="/" />
  39. <meta name="text:Link1 Title" content="link" />
  40. <meta name="text:Link2" content="/" />
  41. <meta name="text:Link2 Title" content="link" />
  42. <meta name="text:Link3" content="/" />
  43. <meta name="text:Link3 Title" content="link" />
  44. <meta name="text:Link4" content="/" />
  45. <meta name="text:Link4 Title" content="link" />
  46. <meta name="text:Link5" content="/" />
  47. <meta name="text:Link5 Title" content="link" />
  48. <meta name="text:Link6" content="/" />
  49. <meta name="text:Link6 Title" content="link" />
  50. <meta name="text:Link7" content="/" />
  51. <meta name="text:Link7 Title" content="link" />
  52. <meta name="text:Link7" content="/" />
  53. <meta name="text:Link7 Title" content="link" />
  54.  
  55. <script type="text/javascript">
  56.  
  57. // <![CDATA[
  58.  
  59. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  60.  
  61. var fgcolour="#656565"; // foreground colour
  62.  
  63. var hlcolour="#b5b5b5"; // highlight colour
  64.  
  65. var bgcolour="#FFFFFF"; // background colour
  66.  
  67. var glcolour="#f8f8f8"; // colour of glow around letters
  68.  
  69. var speed=66; // speed colours change, 1 second = 1000
  70.  
  71. var delay=50; // how long to wait between wipes
  72.  
  73. var alink="/"; // page to link text to (set to ="" for no link)
  74.  
  75.  
  76.  
  77. /****************************
  78.  
  79. *Multi-Wipe Neon Text Effect*
  80.  
  81. *(c)2003-12 mf2fm web-design*
  82.  
  83. *  http://www.mf2fm.com/rv  *
  84.  
  85. * DON'T EDIT BELOW THIS BOX *
  86.  
  87. ****************************/
  88.  
  89. var w_txt, w_txl;
  90.  
  91. var w_flp=bgcolour;
  92.  
  93. var w_sty=Math.floor(Math.random()*8);
  94.  
  95. var w_cnt=-1;
  96.  
  97. var wipes=new Array();
  98.  
  99. var wrand=new Array();
  100.  
  101. window.onload=function() { if (document.getElementById) {
  102.  
  103. var i, wiper, wipei;
  104.  
  105. wiper=document.getElementById("wipe");
  106.  
  107. w_txt=wiper.firstChild.nodeValue;
  108.  
  109. w_txl=w_txt.length;
  110.  
  111. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  112.  
  113. for (i=0; i<w_txl; i++) {
  114.  
  115.   wipei=document.createElement("span");
  116.  
  117.   wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  118.  
  119.   wipes[i]=wipei.style;
  120.  
  121.   wipes[i].textShadow=glcolour+" 0px 0px 5px";
  122.  
  123.   wipes[i].color=fgcolour;
  124.  
  125.   wiper.appendChild(wipei);
  126.  
  127. }
  128.  
  129. if (alink) {
  130.  
  131.   wiper.style.cursor="pointer";
  132.  
  133.   wiper.onclick=function() { top.location.href=alink; }
  134.  
  135. }
  136.  
  137. for (i=0; i<w_txl; i++) wrand[i]=i;
  138.  
  139. wiper=setInterval("randwipe()", speed);
  140.  
  141. }}
  142.  
  143.  
  144.  
  145. function c(i, shade) {
  146.  
  147. if (shade==bgcolour) wipes[i].textShadow="none";
  148.  
  149. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  150.  
  151. wipes[i].color=shade;
  152.  
  153. }
  154.  
  155.  
  156.  
  157. function randwipe() {
  158.  
  159. var w_old;
  160.  
  161. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  162.  
  163. else {
  164.  
  165.   w_cnt=-1;
  166.  
  167.   w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  168.  
  169.   w_old=w_sty;
  170.  
  171.   while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  172.  
  173. }
  174.  
  175. }
  176.  
  177.  
  178.  
  179. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  180.  
  181.  
  182.  
  183. function wipe0() { // curtains
  184.  
  185. if (w_cnt<Math.floor(w_txl/2)) {
  186.  
  187.   c(w_cnt, hlcolour);
  188.  
  189.   c(w_txl-w_cnt-1, hlcolour);
  190.  
  191. }
  192.  
  193. else if (w_cnt<w_txl) {
  194.  
  195.   c(w_cnt, w_flp);
  196.  
  197.   c(w_txl-w_cnt-1, w_flp);
  198.  
  199. }
  200.  
  201. }
  202.  
  203.  
  204.  
  205. function wipe1() { // random
  206.  
  207. var i, rand, temp;
  208.  
  209. if (w_cnt==0) {
  210.  
  211.   for (i=0; i<w_txl; i++) {
  212.  
  213.     rand=Math.floor(Math.random()*w_txl);
  214.  
  215.     temp=wrand[i];
  216.  
  217.     wrand[i]=wrand[rand];
  218.  
  219.     wrand[rand]=temp;
  220.  
  221.   }
  222.  
  223. }
  224.  
  225. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  226.  
  227. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  228.  
  229. }
  230.  
  231.  
  232.  
  233. function wipe2() { // forwards
  234.  
  235. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  236.  
  237. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  238.  
  239. }
  240.  
  241.  
  242.  
  243. function wipe3() { // backwards
  244.  
  245. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  246.  
  247. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  248.  
  249. }
  250.  
  251.  
  252.  
  253. function wipe4() { // searchlight
  254.  
  255. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  256.  
  257. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  258.  
  259. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  260.  
  261. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  262.  
  263. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  264.  
  265. }
  266.  
  267.  
  268.  
  269. function wipe5() { // fade
  270.  
  271. var i;
  272.  
  273. if (w_cnt<w_txl+3) {
  274.  
  275.   var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  276.  
  277.   var temp="#";
  278.  
  279.   for (i=1; i<6; i+=2) {
  280.  
  281.     var hex1=parseInt(start.substring(i,i+2),16);
  282.  
  283.     var hex2=parseInt(w_flp.substring(i,i+2),16);
  284.  
  285.     temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  286.  
  287.   }
  288.  
  289.   for (i=0; i<w_txl; i++) c(i, temp);
  290.  
  291. }
  292.  
  293. }
  294.  
  295.  
  296.  
  297. function wipe6() { // flash
  298.  
  299. var i;
  300.  
  301. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  302.  
  303.   if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  304.  
  305.   else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  306.  
  307.   else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  308.  
  309. }
  310.  
  311. }
  312.  
  313.  
  314.  
  315. function wipe7() { // checkerboard
  316.  
  317. var qtr=Math.floor(w_txl/4);
  318.  
  319. if (w_cnt<qtr) {
  320.  
  321.   c(w_cnt, hlcolour);
  322.  
  323.   c(w_cnt+2*qtr, hlcolour);
  324.  
  325. }
  326.  
  327. else if (w_cnt<2*qtr) {
  328.  
  329.   c(w_cnt-qtr, w_flp);
  330.  
  331.   c(w_cnt+qtr, w_flp);
  332.  
  333. }
  334.  
  335. else if (w_cnt<3*qtr) {
  336.  
  337.   c(w_cnt-qtr, hlcolour);
  338.  
  339.   c(w_cnt+qtr, hlcolour);
  340.  
  341. }
  342.  
  343. else if (w_cnt<w_txl) {
  344.  
  345.   c(w_cnt-2*qtr, w_flp);
  346.  
  347.   c(w_cnt, w_flp);
  348.  
  349. }
  350.  
  351. }
  352.  
  353. // ]]>
  354.  
  355. </script>
  356.  
  357.  
  358.  
  359.                       <title>{Title}</title>
  360.         <link rel="shortcut icon" href="{Favicon}">
  361.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  362.         {block:Description}
  363.   <meta name="description" content="{MetaDescription}" />
  364.         {/block:Description}
  365.  
  366.     <style type="text/css">
  367.  
  368.  
  369. body {background-color: {color:background}; font-family: verdana; color: {color:text};
  370.  
  371. text-align: center; font-size: 11px; background-image:url('{image:background}');
  372.  
  373. background-attachment: fixed; }
  374.  
  375. a {color: {color:link}; text-decoration: none; }
  376. a:hover {color: {color:linkhover}; background-color: transparent; text-decoration: none;}
  377.  
  378. p {margin: 6px 0 0 0}
  379.  
  380. blockquote{border-left: 3px solid {color:text}; margin:5px 5px 2px 2px; padding-left:2px;
  381.  
  382. border-bottom:0px;}
  383.  
  384. #tudo {text-align: center; width: 935px; margin: 20px auto 20px auto; padding: 0px; z-index: 1}
  385.  
  386. #entries{ background-color: transparent; text-align: center; float: left; margin-left:137px; margin-top:0px; }
  387. .post {width: 500px; background-color: {color:post}; padding: 10px; margin-bottom: 1px;
  388. text-align: justify; font-family: {font:text}; font-size: 11px;  color:{color:text};
  389. margin-left: 0px; }
  390.  
  391. .tags{font-size: 9px; color:{color:link}; font-family: verdana;  background-color:
  392.  
  393. {color:post}; -webkit-transition: all .2s linear; -moz-transition:  all .2s linear;
  394.  
  395. transition:  all 0.2s linear;}
  396. .tags a:hover {background-color: {color:post}; color:{linkhover}; }
  397.  
  398. h1 {font-family: georgia; text-align: center; font-size: 16px;  color: {color:text}; font-
  399.  
  400. weight: normal; line-height: 17px; text-transform: uppercase;}
  401. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text};
  402.  
  403. font-weight: normal; line-height: 17px;}
  404. h1 a:hover {text-align: center; font-size: 16px;   color: {color:text}; font-weight:
  405.  
  406. normal; line-height: 17px; text-transform: uppercase;}
  407.  
  408. .image {text-align: center; border: 0px; }
  409. .image img {max-width: 500px; margin-bottom: 3px }
  410. .markqt {font-size: 80px; font-family: verdana; color:{color:text}; line-height: 90px;
  411.  
  412. margin-left: 0px; opacity: 0.2; filter:alpha (opacity=100); }
  413. .qt {font-family: georgia; font-size: 15px; line-height: 15px;  margin-top: 0px; margin-
  414.  
  415. left: 5px; padding: 10px; text-align:center; }
  416. .qsr{margin: -5px 0px 0 0; text-align: center; text-transform: none;}
  417. .qsr a, a:hover{text-transform: none;}
  418.  
  419. .chat {line-height: 12px; list-style: none }
  420. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  421. .person1 {background-color:{color:background}; color: {color:text}; }
  422. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  423. .person2 {color: {color:text}; }
  424. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  425.  
  426. .audio{background-color:black; display:block;}
  427. .source{display:none}
  428.  
  429. .asker {font-family:georgia; font-size:10px; font-style:italic;}
  430. .asker a {font-family:georgia; font-size:10px; font-style:italic;}
  431.  
  432. #questions {color: {color:text}; padding:5px; margin-bottom:0px; font-family:verdana;
  433.  
  434. font-size:10px; font-style:italic; padding-bottom:0px;}
  435. #questions a {color:{color:link}; font-size:10px;}
  436.  
  437. .answers {font-size:11px; font-family:verdana;}
  438. .answers a {font-size:9px; font-family:verdana;}
  439.  
  440. #cap {width: 500px; margin-top: -2px;}
  441.  
  442. #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
  443. .dda a {font-size: 9px;}
  444.  
  445.  
  446. .notes {width: 520px; padding: 0px; margin-top: 3px; margin-bottom: 10px; font-size: 9px; text-align: left; }
  447. ol.notes {list-style: none;  margin: 0 20px 0 0px; padding: 0px; z-index: 11;  margin-bottom:1px;}
  448. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  449. .notes img{display: none; border:0px}
  450.  
  451. #tumblr_controls{position: fixed!important}
  452.  
  453. ::-webkit-scrollbar{width:4px;height:5px;}
  454. ::-webkit-scrollbar-button:start:decrement
  455. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-
  456.  
  457. color:transparent;}
  458. ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-
  459.  
  460. 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-
  462.  
  463. border-radius:px;}
  464. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-
  465.  
  466. border-radius:px;}
  467.  
  468. #tumblr_controls{position: fixed!important}
  469. #tumblr_controls{position: fixed!important}
  470. #tumblr_controls{position: fixed!important}
  471. #tumblr_controls{position: fixed!important}
  472.  
  473. #sidebar {position: fixed; margin: 660px 0px 0px -63px; }
  474.  
  475.  
  476. #malaxofobia {position: fixed; margin-left: 49px; width: 143px; height: 17px; background-color: {color:barra};padding: 4px; margin-top: -187px; opacity:1;  text-align: center; font-family: comic sans; text-transform: normal; font-size: 17px; color: {color:txbarra};font-weight: normal; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; z-index: 10 }
  477.  
  478. #creditoo {position: fixed; margin-left: 59px; width: 130px; height: 15px; background-color: {color:sidebar};padding-top: 1px; margin-top: -113px; opacity:1;  text-align: center; font-family: tinytots; text-transform: normal; font-size: 9px; color: {color:text};font-weight: normal; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; z-index: 10; border-top: 2px solid {color:border};}
  479.  
  480.  
  481. #sidebarimage{margin-left: 49px; margin-top: -327px; width: auto; float: center;
  482. background-color: {color:sidebar}; padding: 4px; position: fixed; height: auto; z-index:2;  }
  483.  
  484. .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; }
  485. .sidebarimg img{width: 142px; height: 167px; display: block; overflow: auto; }
  486.  
  487. #links {width: 130px; margin-left: 57px; margin-top: -147px; position:fixed; overflow:hidden; background-color: {color:sidlinks}; padding:3px; font-family: georgia; font-size: 9px; font-style: normal; text-align: center; letter-spacing: 1px; z-index: 10; border-bottom: 2px solid {color:border};}
  488. #links a {color: {color:sidlinks txt};}
  489. #links a:hover {color: {color:sidlinks txt hover}; text-shadow:1px 1px 8px #E0E0E0;}
  490.  
  491. #sidescri {margin-left: 49px; margin-top: -402px; width: 150px; float: left;  background-color: {color:sidebar}; padding: 0px; position: fixed; height: 75px; overflow: hidden; z-index: 10}
  492. .sidescri{margin: 0px; padding: 0px; text-align: center; font-size: 9px; font-family: {font:body2}; padding: 2px; color: {color:text}; overflow: hidden; }
  493. .sidescri a{font-size: 9px; {font:body2};}
  494.  
  495. #barrona {margin-left: 49px; margin-top: -405px; width: 150px; float: left;  background-color: {color:sidebar}; padding: 0px; position: fixed; height: 310px; overflow: hidden; border-top: 2px solid {color:border}; }
  496.  
  497. .pagination {font-family: georgia; position: fixed; margin-left: 89px; margin-top: -435px; font-size: 35px; z-index: 10; }
  498. .pagination a {color: {color:text}; margin-right: 2px; background-color:transparent ; width:150px; }
  499. .pagination a:hover {color:{color:text};}
  500.  
  501.  
  502.  
  503. </style>
  504.  
  505. <body>
  506. <div id="tudo">
  507. <div id="sidebar">
  508.  
  509. <div class="pagination">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"></a>{/block:PreviousPage}{block:NextPage}
  510. <a href="{NextPage}"></a>{/block:NextPage}{/block:Pagination}</div>
  511.  
  512.  
  513. <div id="malaxofobia">{text:titulo}</div>
  514. <div id="creditoo">theme by uncensore-d ©</div>
  515.  
  516. <div id="sidescri">
  517. <div class="sidescri">{block:Description}{Description}{/block:Description}</div>
  518. </div>
  519.  
  520. <div id="barrona"></div>
  521.  
  522. <div id="links">
  523.  
  524. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1} -
  525. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2} -
  526. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3} -
  527. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4} -
  528. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5} -
  529. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6} -
  530. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  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