cadu

theme novo da rodinha q n gira

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