cadu

descr barra

May 28th, 2012
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.33 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:link 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 sidebar" content="#fff" />
  24. <meta name="color:text" content="#000000" />
  25. <meta name="color:post" content="#ffffff" />
  26.  
  27.  
  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. <meta name="text:Link7" content="/" />
  45. <meta name="text:Link7 Title" content="link" />
  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="#656565"; // foreground colour
  53.  
  54. var hlcolour="#b5b5b5"; // highlight colour
  55.  
  56. var bgcolour="#FFFFFF"; // background colour
  57.  
  58. var glcolour="#f8f8f8"; // 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. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  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. {block:IfEnableEndlessScrolling}
  358. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  359. {/block:IfEnableEndlessScrolling}
  360.  
  361.  
  362. <style type="text/css">
  363.  
  364.  
  365. ::-webkit-scrollbar{width:6px;height:6px;}
  366.  
  367. ::-webkit-scrollbar-button:start:decrement
  368.  
  369. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  370.  
  371. ::-webkit-scrollbar-track-piece{background-color:{color:background};-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  372.  
  373. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  374.  
  375. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  376.  
  377.  
  378.  
  379.  
  380. body {
  381. background-color: {color:background};
  382. color:{color:text};
  383. font-family: verdana;
  384. font-size: 10px;
  385. text-align: center;
  386. line-height:120%;
  387. margin:0;
  388. padding:0;
  389. background-image:url('{image:background}');
  390. background-attachment: fixed
  391. }
  392.  
  393. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition-duration: .40s;}
  394. a:hover {color: {color:hover}; background-color: {color:bg hover}; text-decoration: none;}
  395.  
  396. p {margin: 6px 0 0 0}
  397.  
  398. blockquote {border-left:2px {color:post} solid; padding-left:5px; margin:0px 2px 0px 10px}
  399.  
  400.  
  401. blockquote {padding:0px; padding-left:5px; margin:5px; border-left:2px solid {color:background}}
  402.  
  403. #entries{margin-top:20px; z-index:40}
  404.  
  405. .post {width: 450px; background-color: {color:post}; padding: 10px; margin-bottom: 1px; text-align: justify; font-family: tahoma; font-size: 11px; position: relative; color:{color:text}; margin-left:470px; border-bottom: 1px solid #f1f1f1; z-index:80 ; margin-top:1px; }
  406.  
  407. #xright {position: fixed; margin-top: 52px; margin-left: 357px; overflow: auto; width: 450px; height: 703px;}
  408.  
  409.  
  410.  
  411. .tags{font-size: 9px; color:{color:link}; font-family: verdana; background-color: {color:post};}
  412. .tags a:hover {background-color: {color:post}; color:{linkhover}; -webkit-transition: all .2s linear; -moz-transition: all .2s linear; transition: all 0.2s linear;}
  413.  
  414.  
  415. h1 {font-family: georgia; text-align: center; font-size: 25px; color: {color:text}; font-style: italic; line-height: 18px; text-transform: none; font-weight: normal;}
  416.  
  417. h1 a {text-align: center; font-size: 18px; color: {color:text}; font-weight: normal; line-height: 18px;}
  418.  
  419. h1 a:hover {text-align: center; font-size: 18px; color: {color:text}; font-weight: normal; line-height: 18px;}
  420.  
  421.  
  422. .image {text-align: center; border: 0px; }
  423. .image img {max-width: 450px; margin-bottom: 3px }
  424. .markqt {font-size: 90px; font-family: {font:title}; color:{color:text}; line-height: 90px; margin-left: 5px; opacity: 0.1; filter:alpha (opacity=100);}
  425. .qt {font-family: tahoma; font-size: 15px; line-height: 23px; margin-top: -95px; margin-left: 45px; padding: 10px;}
  426. .qsr{margin: 5px 15px 0 0; text-align: right; text-transform: none;}
  427. .qsr a, a:hover{text-transform: none;}
  428.  
  429. .chat {line-height: 12px; list-style: none }
  430. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  431. .person1 {background-color:{color:background}; color: {color:text}; }
  432. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  433. .person2 {color: {color:text}; }
  434. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  435.  
  436. .audio{background-color:black; display:block;}
  437. .source{display:none}
  438.  
  439. #questions {background-color:{color:background}; color: {color:text}; padding:10px; margin-bottom:0px; font-family:verdana; font-size:9px}
  440. #questions a {color:{color:link}}
  441.  
  442.  
  443.  
  444. #cap {width: 450px; margin-top: -2px;}
  445.  
  446. #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
  447. .dda a {font-size: 9px;}
  448.  
  449.  
  450.  
  451. .tags {color: #000000; font-family: calibri; display: inline; list-style: none; text-transform:uppercase; font-style:none; font-size:10px;}
  452.  
  453. .tags a {font-size: 10px; color: verdana; display: inline; list-style: none; text-transform: uppercase;}
  454.  
  455. .qqmarks{
  456. font-size: 80px;
  457. font-weight: bold;
  458. line-height: 80px;
  459. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  460. opacity: 0.2;
  461. filter:alpha (opacity=20)
  462. }
  463.  
  464. .qqmarks{font-size: 80px; font-weight: bold; font-family: georgia; line-height: 80px; color: #000000;}
  465.  
  466. .qquote{font-family: Georgia; font-size: 18px; letter-spacing: -1px; line-height: 20px; margin-top: -70px; text-indent: 45px; text-align: justified}
  467.  
  468. .qsource{margin: 5px 15px 0 0; text-align: right}
  469.  
  470.  
  471.  
  472. .notes {width: 450px; padding: 0px; margin-top: 0px; margin-bottom: 10px; font-size: 9px; text-align: right; margin-left:418px;}
  473.  
  474. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11; margin-left:450px;}
  475.  
  476. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  477.  
  478. .notes img{display: none; border:0px}
  479.  
  480.  
  481.  
  482.  
  483. b{text-transform: block; color:;}
  484. i{text-transform: italic; color:{color:text}}
  485. p{margin:2px 0 2px 0}
  486. u {text-decoration: none; border-bottom: 1px dashed;}
  487. d1 {opacity:0.8}
  488. d2 {opacity:0.6}
  489. d3 {opacity:0.4}
  490. d4 {opacity:0.2}
  491.  
  492.  
  493. /* PAGINAÇÃO BY CINTIA HEYILOVE */
  494.  
  495. #page{margin-left: 335px; margin-top:525px; background-color: transparent; color:{color:texto}; float:center; width:100px; height:25px; position:fixed; border-top: 0px solid #c0c0c0; z-index:12000000; }
  496. .pgs{padding:3px; font-family: verdana; font-size: 9px; letter-spacing:0px; z-index:12000000; color:{color:texto sidbar};}
  497.  
  498.  
  499.  
  500.  
  501. #cre {float: left; margin-top: -22px; margin-left: 10px; width: 1100px; background-color: {color:background}; color: {color:text}; padding: 25px 1px 1px 1px; font-size: 9px; font-family: verdana ; 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: 0px; -webkit-transform: rotate(0deg); z-index:30000 }
  502.  
  503. #cre a{font-size: 9px; color:{color:text sidebar};}
  504.  
  505.  
  506.  
  507.  
  508. #cadugostoso {margin-left: 205px; margin-top: 376px; width: 220px; font-size: 9px; height: 35px; ; font-family: verdana; line-height: 10px; color: #c0c0c0; position: fixed; ; letter-spacing: 0px; text-align: center; z-index:300000 ; border-left:2px solid #000; padding: 3px 3px 3px 3px; background-color: {color:sidebar}; color: {color:text sidebar} }
  509.  
  510. #cadugostoso a {margin-left: 105px; margin-top: 380px; width: 226px; font-size: 9px; height: 35px; background-color: #f5f5f5 ; font-family: verdana; line-height: 10px; color: #c0c0c0; position: fixed; ; letter-spacing: 0px; text-align: center; z-index:300000 ; border-left:2px solid #000 }
  511.  
  512.  
  513. #pic {margin-top: 78px; margin-left: 205px; width: 215px; height: auto;
  514.  
  515.  
  516.  
  517. position: fixed; padding: 0px;
  518.  
  519.  
  520.  
  521. background-color: {color:sidebar}; border: 6px solid {color:sidebar}; z-index: 08}
  522.  
  523.  
  524.  
  525. #pic img{width: 215px; height: 285px;-webkit-border-top-left-radius:0px; -webkit-border-top-right-radius:0px;}
  526.  
  527.  
  528.  
  529.  
  530. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  531.  
  532. #cadulink {margin-top: 415px; margin-left: 345px; position:fixed; width: 20px; z-index:90000}
  533.  
  534.  
  535.  
  536. #cadulink a{font-size: 8px; color: #fff ; background-color: transparent; padding: 5px 1px 5px 1px; display:block; margin-bottom: 1px; width: 50px; height: 6px; text-align: center; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; line-height: 6px; font-family: tahoma;text-transform: uppercase; }
  537.  
  538.  
  539. #cadulink a:hover{color: {color:link sidbar hover}; background-color: transparent; letter-spacing: 0px; }
  540.  
  541.  
  542.  
  543. #cadulink2 {margin-left: 205px; margin-top: 418px; width: 228px; font-size: 9px; height: 20px; font-family: verdana; line-height: 17px; ; position: fixed; padding: 0px 0 0px 0; -webkit-border-radius: 0px 0px 0px 0px; overflow: hidden; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index:10; letter-spacing: 0px; text-align: center; -webkit-transition: 0.5s ease-in; border-bottom: 0px dotted #000; border-top: 0px dotted #000; font-weight:none; border-left:0px solid #636161;border-right:0px solid #636161; background-color: {color:sidebar}; color: {color:text sidebar}; }
  544.  
  545. #cadulink2 a{ color:{color:text sidebar}; }
  546.  
  547. #cadulink3 {margin-left: 222px; margin-top: 343px; width: 202px; font-size: 10px; height: 20px;; background-color: transparent ; font-family: calibri; line-height: 15px; color: #636161; position: fixed; padding: 0px 0 0px 0; -webkit-border-radius: 0px 0px 0px 0px; overflow: hidden; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index:10; letter-spacing: 0px; text-align: center; -webkit-transition: 0.5s ease-in; border-bottom: 0px dotted #000; border-top: 0px dotted #000;text-transform:uppercase; font-weight:none;border-left:0px solid #636161 ;border-right:0px solid #636161; }
  548.  
  549. </style>
  550. <body>
  551.  
  552.  
  553. <div id="cadugostoso"> <ALIGN="JUSTIFY">
  554. {description}</div></div>
  555.  
  556.  
  557. <div id="cadulink2">
  558. <center>
  559.  
  560.  
  561.  
  562. <a href="/"> {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1} x
  563. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2} x
  564. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3} x
  565. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4} x
  566. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5} x
  567. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  568.  
  569.  
  570. </div>
  571. </div>
  572.  
  573.  
  574. <div id="cre">theme <b>c4fajeste</b> and <b>foragido</b>; don't no copy
  575.  
  576. </div></div>
  577.  
  578.  
  579. <div id="page">
  580. <div class="pgs">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><font color="{color:text sidebar}">previous</a> | {/block:PreviousPage}{block:NextPage}<a href="{NextPage}"><font color="{color:text sidebar}">next</a>{/block:NextPage}{/block:Pagination}</font></font></div></div></div></div>
  581.  
  582. </div></div></div></div>
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589. <div id="pic"><img src="{image:sidebar 1}"/>
  590.  
  591.  
  592.  
  593. </div></div></div></div></div></div>
  594.  
  595.  
  596.  
  597.  
  598.  
  599. </div></div>
  600. <div id="entries">
  601. {block:Posts}
  602. <div class="post">
  603.  
  604. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  605.  
  606. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  607.  
  608. {block:Photoset}{Photoset-500}{/block:Photoset}
  609.  
  610. {block:Quote}
  611. <b class="qqmarks">“</b><div class="qquote">{Quote}”</div>
  612. {block:Source}<div class="qsource">— {Source}</center></div>{/block:Source}
  613. {/block:Quote}
  614.  
  615. {block:Link}
  616. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  617. {block:Description}{Description}{/block:Description}
  618. {/block:Link}
  619.  
  620. {block:Chat}
  621. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  622. <div class="chat"><ul>{block:Lines}
  623. <li class="person{UserNumber}">{block:Label}
  624. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  625. {/block:Chat}
  626.  
  627. {block:Audio}
  628. <br>
  629. <div class="audio">{AudioPlayerBlack}</div>
  630. {block:Caption}{Caption}{/block:Caption}
  631. {/block:Audio}
  632.  
  633. {block:Video}{Video-500}{/block:Video}
  634.  
  635.  
  636.  
  637.  
  638. {block:Answer}<div id="questions">{Asker} gemeu gostoso: "{Question}"</div><small>
  639. {Answer}</small>{/block:answer}
  640.  
  641. <div id="cap">
  642. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  643. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  644. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  645.  
  646. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  647. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  648. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  649. {/block:ContentSource}</div></div>
  650. <br>
  651. <div class="tags"><center> <b>tags</b>: {block:HasTags}{block:Tags}<a href="{TagURL}" > #{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  652.  
  653. <div id="dda">
  654. </center>
  655. <center>
  656. <div style="float:center;" class="tags">
  657. {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>
  658. {block:RebloggedFrom} © <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  659. </span>{/block:RebloggedFrom} {block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  660. </div></center>
  661. </ br>
  662. <br clear="all" /></div></div>
  663.  
  664.  
  665. {/block:Posts}
  666. {block:PostNotes}
  667. <div id="notes"><div id="ntstext">{PostNotes}</div></div>
  668. {/block:PostNotes}
  669.  
  670. </div>
  671. </div>
  672. </div></div></div>
  673. </div></div>
  674.  
  675. </body>
  676. </html>
Advertisement
Add Comment
Please, Sign In to add comment