Don't like ads? PRO users don't see any ads ;-)

Theme 08

By: ItsMaath on Jun 13th, 2012  |  syntax: None  |  size: 19.52 KB  |  hits: 77  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <!-- Theme por alugado, dont copy" -->
  6.  
  7.  
  8. <head> <!-- DEFAULT VARIABLES -->
  9. <meta name="color:background" content="#ffffff" />
  10. <meta name="color:text" content="#000" />
  11. <meta name="color:posts" content="#ddd" />
  12. <meta name="color:hover" content="#fff" />
  13. <meta name="color:link" content="#000" />
  14. <meta name="color:bgsidebar" content="#ddd">
  15. <meta name="color:bglinks" content="#ddd">
  16. <meta name="color:sombreado" content="#ddd" />
  17. <meta name="color:titulo" content="#000" >
  18. <meta name="color:textdescricao" content="#000">
  19.  
  20. <meta name="image:sidebar1" content=""/>
  21.  
  22. <meta name="text:frase" content="Uma frase pequena aqui"/>
  23.  
  24. <meta name="text:Link1" content="/" />
  25. <meta name="text:Link1 Title" content="Link1" />
  26. <meta name="text:Link2" content="/" />
  27. <meta name="text:Link2 Title" content="Link2" />
  28. <meta name="text:Link3" content="/" />
  29. <meta name="text:Link3 Title" content="Link3" />
  30. <meta name="text:Link4" content="/" />
  31. <meta name="text:Link4 Title" content="Link4" />
  32. <meta name="text:Link5" content="/" />
  33. <meta name="text:Link5 Title" content="Link5" />
  34. <meta name="text:Link6" content="/" />
  35. <meta name="text:Link6 Title" content="Link6" />
  36. <meta name="text:Link7" content="/" />
  37. <meta name="text:Link7 Title" content="Link7" />
  38. <meta name="text:Link8" content="/" />
  39. <meta name="text:Link8 Title" content="Link8" />
  40. <meta name="text:Link9" content="/" />
  41. <meta name="text:Link9 Title" content="Link9" />
  42. <meta name="text:Link10" content="/" />
  43. <meta name="text:Link10 Title" content="Link10" />
  44.  
  45.  
  46. <script type="text/javascript">
  47.  
  48. // <![CDATA[
  49.  
  50. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  51.  
  52. var fgcolour="#000"; // foreground colour
  53.  
  54. var hlcolour="#000"; // highlight colour
  55.  
  56. var bgcolour="#ffffff"; // background colour
  57.  
  58. var glcolour="#fdfcfc"; // colour of glow around letters
  59.  
  60. var speed=66; // speed colours change, 1 second = 1000
  61.  
  62. var delay=50; // how long to wait between wipes
  63.  
  64. var alink="/"; // page to link text to (set to ="" for no link)
  65.  
  66.  
  67.  
  68. /****************************
  69.  
  70. *Multi-Wipe Neon Text Effect*
  71.  
  72. *(c)2003-12 mf2fm web-design*
  73.  
  74. *  http://www.mf2fm.com/rv  *
  75.  
  76. * DON'T EDIT BELOW THIS BOX *
  77.  
  78. ****************************/
  79.  
  80. var w_txt, w_txl;
  81.  
  82. var w_flp=bgcolour;
  83.  
  84. var w_sty=Math.floor(Math.random()*8);
  85.  
  86. var w_cnt=-1;
  87.  
  88. var wipes=new Array();
  89.  
  90. var wrand=new Array();
  91.  
  92. window.onload=function() { if (document.getElementById) {
  93.  
  94.   var i, wiper, wipei;
  95.  
  96.   wiper=document.getElementById("wipe");
  97.  
  98.   w_txt=wiper.firstChild.nodeValue;
  99.  
  100.   w_txl=w_txt.length;
  101.  
  102.   while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  103.  
  104.   for (i=0; i<w_txl; i++) {
  105.  
  106.     wipei=document.createElement("span");
  107.  
  108.     wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  109.  
  110.     wipes[i]=wipei.style;
  111.  
  112.     wipes[i].textShadow=glcolour+" 0px 0px 5px";
  113.  
  114.     wipes[i].color=fgcolour;
  115.  
  116.     wiper.appendChild(wipei);
  117.  
  118.   }
  119.  
  120.   if (alink) {
  121.  
  122.     wiper.style.cursor="pointer";
  123.  
  124.     wiper.onclick=function() { top.location.href=alink; }
  125.  
  126.   }
  127.  
  128.   for (i=0; i<w_txl; i++) wrand[i]=i;
  129.  
  130.   wiper=setInterval("randwipe()", speed);
  131.  
  132. }}
  133.  
  134.  
  135.  
  136. function c(i, shade) {
  137.  
  138.   if (shade==bgcolour) wipes[i].textShadow="none";
  139.  
  140.   else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  141.  
  142.   wipes[i].color=shade;
  143.  
  144. }
  145.  
  146.  
  147.  
  148. function randwipe() {
  149.  
  150.   var w_old;
  151.  
  152.   if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  153.  
  154.   else {
  155.  
  156.     w_cnt=-1;
  157.  
  158.     w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  159.  
  160.     w_old=w_sty;
  161.  
  162.     while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  163.  
  164.   }
  165.  
  166. }
  167.  
  168.  
  169.  
  170. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  171.  
  172.  
  173.  
  174. function wipe0() { // curtains
  175.  
  176.   if (w_cnt<Math.floor(w_txl/2)) {
  177.  
  178.     c(w_cnt, hlcolour);
  179.  
  180.     c(w_txl-w_cnt-1, hlcolour);
  181.  
  182.   }
  183.  
  184.   else if (w_cnt<w_txl) {
  185.  
  186.     c(w_cnt, w_flp);
  187.  
  188.     c(w_txl-w_cnt-1, w_flp);
  189.  
  190.   }
  191.  
  192. }
  193.  
  194.  
  195.  
  196. function wipe1() { // random
  197.  
  198.   var i, rand, temp;
  199.  
  200.   if (w_cnt==0) {
  201.  
  202.     for (i=0; i<w_txl; i++) {
  203.  
  204.       rand=Math.floor(Math.random()*w_txl);
  205.  
  206.       temp=wrand[i];
  207.  
  208.       wrand[i]=wrand[rand];
  209.  
  210.       wrand[rand]=temp;
  211.  
  212.     }
  213.  
  214.   }
  215.  
  216.   if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  217.  
  218.   if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  219.  
  220. }
  221.  
  222.  
  223.  
  224. function wipe2() { // forwards
  225.  
  226.   if (w_cnt<w_txl) c(w_cnt, hlcolour);
  227.  
  228.   if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  229.  
  230. }
  231.  
  232.  
  233.  
  234. function wipe3() { // backwards
  235.  
  236.   if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  237.  
  238.   if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  239.  
  240. }
  241.  
  242.  
  243.  
  244. function wipe4() { // searchlight
  245.  
  246.   if (w_cnt<w_txl) c(w_cnt, hlcolour);
  247.  
  248.   if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  249.  
  250.   if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  251.  
  252.   if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  253.  
  254.   if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  255.  
  256. }
  257.  
  258.  
  259.  
  260. function wipe5() { // fade
  261.  
  262.   var i;
  263.  
  264.   if (w_cnt<w_txl+3) {
  265.  
  266.     var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  267.  
  268.     var temp="#";
  269.  
  270.     for (i=1; i<6; i+=2) {
  271.  
  272.       var hex1=parseInt(start.substring(i,i+2),16);
  273.  
  274.       var hex2=parseInt(w_flp.substring(i,i+2),16);
  275.  
  276.       temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  277.  
  278.     }
  279.  
  280.     for (i=0; i<w_txl; i++) c(i, temp);
  281.  
  282.   }
  283.  
  284. }
  285.  
  286.  
  287.  
  288. function wipe6() { // flash
  289.  
  290.   var i;
  291.  
  292.   if (w_cnt<6*Math.floor(w_txl/6)+3) {
  293.  
  294.     if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  295.  
  296.     else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  297.  
  298.     else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  299.  
  300.   }
  301.  
  302. }
  303.  
  304.  
  305.  
  306. function wipe7() { // checkerboard
  307.  
  308.   var qtr=Math.floor(w_txl/4);
  309.  
  310.   if (w_cnt<qtr) {
  311.  
  312.     c(w_cnt, hlcolour);
  313.  
  314.     c(w_cnt+2*qtr, hlcolour);
  315.  
  316.   }
  317.  
  318.   else if (w_cnt<2*qtr) {
  319.  
  320.     c(w_cnt-qtr, w_flp);
  321.  
  322.     c(w_cnt+qtr, w_flp);
  323.  
  324.   }
  325.  
  326.   else if (w_cnt<3*qtr) {
  327.  
  328.     c(w_cnt-qtr, hlcolour);
  329.  
  330.     c(w_cnt+qtr, hlcolour);
  331.  
  332.   }
  333.  
  334.   else if (w_cnt<w_txl) {
  335.  
  336.     c(w_cnt-2*qtr, w_flp);
  337.  
  338.     c(w_cnt, w_flp);
  339.  
  340.   }
  341.  
  342. }
  343.  
  344. // ]]>
  345.  
  346. </script>
  347.  
  348.  
  349.  
  350. <title>{Title}</title>
  351. <link rel="shortcut icon" href="{Favicon}">
  352. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  353. {block:Description}
  354. <meta name="description" content="{MetaDescription}" />
  355. {/block:Description}
  356.  
  357.  
  358.  
  359.  
  360. <style type="text/css">
  361. @font-face {font-family: "Arsenale White";src:url("http://static.tumblr.com/ovjik2o/IJLm4wytn/arsenale_white.ttf");}
  362. @font-face {font-family: "Jenna Sue";src:url('http://static.tumblr.com/ekfbsgu/TbGluxp84/jennasue.ttf');}
  363. @font-face {font-family: "Dancing In The Minefields";src:url("http://static.tumblr.com/ovjik2o/BJ1m4ywnb/dancingintheminefields.ttf");}
  364. @font-face {font-family: "Give You Glory";src:url("http://static.tumblr.com/ovjik2o/NeZm523s2/giveyouglory.ttf");}
  365.  
  366. @font-face {
  367. font-family: 'Levimarker,';
  368.  
  369. src: url('http://static.tumblr.com/ekfbsgu/K39ltk1o6/levimarker.ttf') format('eot'),
  370.  
  371. url('Levimarker.woff') format('woff'),
  372.  
  373. url('Levimarker.ttf') format('truetype');
  374.  
  375. }
  376.  
  377. body {background-color:{color:background}; color:{color:text}; font-family: tahoma, helvetica; font-size: 11px; text-align: justify; line-height:110%; background-image:url('{image:background}'); background-attachment: fixed; }
  378.  
  379.  
  380. a {color:{color:link}; text-decoration:none; -moz-transition: all .7s ease-in-out!important; -o-transition: all .7s ease-in-out!important; transition: all .7s ease-in-out!important; -webkit-transition: all .7s ease-in-out!important;}
  381.  
  382. a:hover {color:{color:hover}; text-shadow:2px 2px 6px {color:sombreado};}
  383.  
  384. p{margin-top: 1px}
  385. blockquote{margin-left:5px; margin-right: 0px; border-left: 5px solid {color:background}; padding-left:5px;margin-top: 4px;}
  386.  
  387. background-image:url("{image:background}"); background-attachment: fixed}
  388. .topa{padding: 35px 0 0 0; margin: 0 auto 0 auto; width: 317px; height: 65px; text-align: center; }
  389. {block:AskEnabled}.topa{width:400px}{/block:AskEnabled}
  390.  
  391. .title{ text-align: center; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;}
  392. .title a{text-decoration: none; font-size: 20px; color: {color:text}; letter-spacing: -1px; text-transform:normal; line-height: 20px;}
  393. .title a:hover{color:{color:text};}
  394. .userpic{float: left}
  395. .userpic img{border: 7px solid {color:text};}
  396. .pages{margin-left: 125px}
  397. .pages a{background-color: {color:background};color:{color:text}; padding: 5px 10px 5px 10px; text-transform: normal; text-decoration: none; font-size: 9px}
  398.  
  399.  
  400. #content{width: 800px; text-align: center; margin:20px auto 0 auto; margin-left: 41px; padding-bottom: 150px; background-color:
  401. transparent; color:{color:text}; padding: 0px; margin-top: 5px;}
  402.  
  403. #entries{float: left; background-color: transparent; text-align: center}
  404. .post{width: 500px; padding: 10px; margin-left: 242px; text-align: justify; background-color: {color:posts}; margin-bottom:3px;}
  405. .post img{margin: 2px 0 2px 0}
  406. h1{font-family: ; text-align: center; font-size: 16px; letter-spacing: 0px; color: {color:text}; font-weight: normal; line-height: 18px;}
  407. h1 a{font-size: 16px; letter-spacing: -1px; line-height: 18px; letter-spacing: 0px; text-align:center}
  408. .image{text-align: center; height: auto; margin-bottom: 0px; -webkit-border-radius: 70px; -moz-border-radius: 70px; border-radius: 70px; -webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out; z-index: 59; }
  409. .image:hover {-webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; -webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out;}
  410. h2{font-size: 9px; display: block; width: 250px; color:{color:text}; background-color: {color:background}; text-align: center; margin: 0px 0px 3px 0px; padding: 3px 0 3px 0; text-transform: normal; text-decoration: none; font-weight: normal}
  411.  
  412. .qquote{font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 2px; }
  413.  
  414. .qsource{text-align: center; text-transform: none; margin-bottom: 3px;}
  415.  
  416. .chat{line-height: 12px; list-style: none }
  417. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height: 20px;}
  418. .person1 {color: {color:text} }
  419. .person1 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text} }
  420. .person2 {color: {color:text} }
  421. .person2 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text} }
  422. .iaudio{text-align: center; margin-bottom: 2px; width: 100%; background-color: {color:background};}
  423. .iaudio img{max-width: 180px; height: auto; padding: 20px 0 20px 0}
  424. .icap{margin-top: 1px}
  425. .source{display:none}
  426. .asker {font-size: 15px; width: 100%; background-color: {color:background}; color:{color:link} ;
  427.  
  428. text-transform: uppercase; line-height: 30px}
  429. .asker a a:hover{color:{color:link}}
  430. .asker img{margin-top: 3px; margin-bottom: -3px; margin-left:3px; -moz-border-radius: 10px; border-radius: 10px;}
  431. .q {padding:10px; font-style: italic; background-color:#ddd;}
  432. .a {padding-top: 5px}
  433. .cap {padding-top: 0px; width: 500px;}
  434.  
  435. #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
  436. .dda a {font-size: 9px; color: {color:link};}
  437. .dda a:hover {font-size: 9px; color: {color:hover};}
  438.  
  439. .origin{font-size:9px}
  440. .ibottom{margin-top: 5px; font-family: 'Century Gothic', 'Apple Gothic', sans-serif}
  441. .date{float:left; padding-left: 10px; text-transform: uppercase; font-size: 10px}
  442. .permalink{float:left; text-transform: uppercase; font-size: 9px;}
  443.  
  444. #notes {width: 500px; padding: 5px; margin-left: 300px;font-size: 9px; text-align: left;}
  445. ol.notes {list-style: none; margin: 0 20px 0 0; padding: 0px}
  446. ol.notes li {margin: 0px; padding: 2px;}
  447. #notes img{border:0px}
  448.  
  449. #page{text-align: center; font-size:50px}
  450. #page a{font-size: 30px; text-decoratin: none; font-family: georgia;}
  451.  
  452. #clear{width: 500px; height: 30px}
  453.  
  454.  
  455.  /* Links */
  456.  
  457. #math1 {position: fixed; margin: 0px 0px 0px 12px;}
  458.  
  459. #math {text-align: justify; font-size: 9px; font-family: verdana; position: relative; margin-left: 22px; margin-top: 96px; width: 0px; height: 0px; background-color: transparent; color: {color:text}; padding: 5px; background-attachment: fixed;}
  460.  
  461.  
  462. .links1 {position: absolute; width: 110px; margin-left:4px; margin-top:0px; padding: 0px; text-align: center; z-index:3;}
  463.  
  464. .links1 a {float: left; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-bottom:2px; margin-top:-1px; width: 70px; background-color: transparent; color:{color:links}; text-decoration: none; text-transform: lowercase; line-height:18px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  465.  
  466. .links1  a:hover{text-align: center; background-color: {color:bglinks}; color: #000000;}
  467.  
  468. #math3 {position: fixed; margin: 0px 0px 0px 12px;}
  469.  
  470. #math2 {text-align: justify; font-size: 9px; font-family: verdana; position: relative; margin-left: 785px; margin-top: 96px; width: 0px; height: 0px; background-color: transparent; color: {color:text}; padding: 5px; background-attachment: fixed;}
  471.  
  472.  
  473. .links2 {position: absolute; width: 110px; margin-left:4px; margin-top:0px; padding: 0px; text-align: center; z-index:3;}
  474.  
  475. .links2 a {float: left; display: block; letter-spacing: 0px; font-family: verdana; font-size: 9px; text-align: center; margin-bottom:2px; margin-top:-1px; width: 70px; background-color: transparent; color:{color:links}; text-decoration: none; text-transform: lowercase; line-height:18px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  476.  
  477. .links2  a:hover{text-align: center; background-color: {color:bglinks}; color: #000000;}
  478.  
  479. /* Titulo e Descrição */
  480.  
  481. #descricao {margin-top: 100px; margin-left: 880px; width: 170px; height: 200px; background-color: transparent; font-family: futura; position: fixed; text-align: center;}
  482.  
  483. #titulom {margin-top: 60px; margin-left: 815px; width: 237px; height: 20px; background-color: transparent; color: {color:titulo}; font-family: "Give You Glory"; src:url('http://static.tumblr.com/ovjik2o/NeZm523s2/giveyouglory.ttf'); position: fixed; font-size: 20px; text-align: center;}
  484.  
  485.  
  486.  /* Imagens */
  487.  
  488. #sidebar {width: 160px; height: 190px; margin-left: 114px; margin-top: 100px; position:fixed;  overflow:hidden; background-color: {color:bgsidebar}; border-left:0px solid; border-right:0px solid; padding:3px; }
  489.  
  490. #imagem img{width: 160px; height:190px; position: fixed; }
  491. /* Paginação */
  492.  
  493. #paginacao {top: 35%; margin-left: -5px; width: 80px; position: fixed; padding: 0px;}
  494. .paginacao1 {font-size: 20px; font-family: verdana; padding: 1px;}
  495. .paginacao1 a{color: {color:link}; background-color: {color:background};}
  496. .paginacao1 a:hover {color: #000000; background-color: #ff00000;}
  497.  
  498. /* Creditos */
  499.  
  500. #creditos {width:140px; height: 20px; margin-left: 142px; margin-top: 290px; position:fixed; font-family:Futura, 'Century Gothic', AppleGothic, sans-serif; ; font-size:10px; line-height: 15px;overflow:hidden; background-color: transparent; border-left:0px solid; border-right:0px solid; padding:3px;}
  501.  
  502.  
  503. </style>
  504.  
  505. </head>
  506.  
  507.  
  508. <body>
  509.  
  510. <div id="math1">
  511. <div id="math"><div class="links1">
  512. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  513. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  514. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  515. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  516. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  517.  
  518. </div></div></div>
  519.  
  520. <div id="math3">
  521. <div id="math2"><div class="links2">
  522. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  523. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  524. {block:ifLink8}<a href="{text:Link8}">{text:Link8 Title}</a>{/block:ifLink8}
  525. {block:ifLink9}<a href="{text:Link9}">{text:Link9 Title}</a>{/block:ifLink9}
  526. {block:ifLink10}<a href="{text:Link10}">{text:Link10 Title}</a>{/block:ifLink10}
  527. </div></div></div>
  528.  
  529. <div id="descricao">{Description}</div>
  530.  
  531. <div id="titulom"><span id="wipe">{text:frase}</span>
  532. </div></div>
  533.  
  534.  
  535.  
  536. </div></div></div></div>
  537.  
  538. <div id="sidebar"><div id="imagem">
  539.  
  540. <img src="{image:sidebar1}"/>
  541.  
  542. </div></div>
  543.    
  544. </div></div>
  545.  
  546. <div id="creditos"><a href="http://alugado.tumblr.com/">© alugado</a>
  547. </div></div>
  548.  
  549. <div id="content">
  550. <br><br>
  551. <br>
  552.  
  553. <div id="entries">
  554. {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
  555. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
  556.  
  557.  
  558. {block:Posts}
  559. <div class="post">
  560.  
  561. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  562.  
  563. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}" ></div>{LinkCloseTag}{/block:Photo}
  564.  
  565. {block:Photoset}{Photoset-500}{/block:Photoset}
  566.  
  567. {block:Quote}
  568. <div class="qquote">{Quote}</div><br>
  569. {block:Source}<div class="qsource"> — {Source}</div>{/block:Source}
  570. {/block:Quote}
  571.  
  572. {block:Link}
  573. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  574. {block:Description}{Description}{/block:Description}
  575. {/block:Link}
  576.  
  577. {block:Chat}
  578. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  579. <div class="chat"><ul>{block:Lines}
  580. <li class="person{UserNumber}">{block:Label}
  581. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  582. {/block:Chat}
  583.  
  584. {block:Audio}
  585. <div class="iaudio">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  586. {AudioPlayerGrey}
  587. <div class="icap">{block:Caption}{Caption}{/block:Caption}</div>
  588. {/block:Audio}
  589.  
  590. {block:Video}{Video-500}{/block:Video}
  591.  
  592. {block:Answer}
  593. <center><div class="asker"><img src="{AskerPortraitURL-24}"> {Asker}</div></center>
  594. <div class="q">{Question}</div>
  595. <div class="a">{Answer}</div>
  596. {/block:Answer}
  597.  
  598.  
  599. <div class="cap">
  600. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  601. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  602. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  603.  
  604. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  605. <img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  606. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  607. {/block:ContentSource}</div></div>
  608.  
  609.  
  610. <div id="dda">
  611.  
  612. <div style="float:left;" class="details">
  613. {block:HasTags}{block:Tags} <a href="{TagURL}"><b>#</b>{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}<br>
  614. {block:Date} {block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} {block:NoteCount} » <a href="{Permalink}">{NoteCount} notes</a>{/block:NoteCount} » <a href="{ReblogURL}" target="_blank"><b>reblog it now</b></a><br>
  615. {block:RebloggedFrom}originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  616. </span> {/block:RebloggedFrom} » via {block:RebloggedFrom}<a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  617. </div>
  618.  
  619. <br clear="all" /></div></div>
  620.  
  621.  
  622. <div id="paginacao">
  623.     <div class="paginacao1">
  624.             {block:PreviousPage}
  625.                 <a href="{PreviousPage}">←</a>
  626.             {/block:PreviousPage}
  627.  
  628.             {block:NextPage}
  629.                 <a href="{NextPage}">→</a>
  630.             {/block:NextPage}
  631. </div></div>
  632.  
  633.  
  634.  
  635. {/block:Posts}
  636.  
  637.  
  638. {block:IfEnableEndlessScrolling}</div>{/block:IfEnableEndlessScrolling}
  639. {block:PostNotes}
  640. <div id="notes"><div id="notestext">{PostNotes}</div></div>
  641. {/block:PostNotes}
  642.  
  643. </div>
  644. </div>
  645. </div>
  646. </div>
  647.  
  648.  
  649.  
  650. </body>
  651. </html>