cadu

c4fajeste#novo ):

Apr 23rd, 2012
557
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.80 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.  
  26. <meta name="if:WipeTitle" content="1"/>
  27. <meta name="image:background" content=""/>
  28. <meta name="image:sidebar 1" content="" />
  29.  
  30.  
  31. <meta name="text:Link1" content="/" />
  32. <meta name="text:Link1 Title" content="link" />
  33. <meta name="text:Link2" content="/" />
  34. <meta name="text:Link2 Title" content="link" />
  35. <meta name="text:Link3" content="/" />
  36. <meta name="text:Link3 Title" content="link" />
  37. <meta name="text:Link4" content="/" />
  38. <meta name="text:Link4 Title" content="link" />
  39. <meta name="text:Link5" content="/" />
  40. <meta name="text:Link5 Title" content="link" />
  41. <meta name="text:Link6" content="/" />
  42. <meta name="text:Link6 Title" content="link" />
  43. <meta name="text:Link7" content="/" />
  44. <meta name="text:Link7 Title" content="link" />
  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="#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:#f1f1f1; }
  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. body {
  379. background-color: {color:background};
  380. color:{color:text};
  381. font-family: verdana;
  382. font-size: 10px;
  383. text-align: center;
  384. line-height:120%;
  385. margin:0;
  386. padding:0;
  387. background-image:url('{image:background}');
  388. background-attachment: fixed
  389. }
  390.  
  391. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition-duration: .40s;}
  392. a:hover {color: {color:hover}; background-color: {color:bg hover}; text-decoration: none;}
  393.  
  394. p {margin: 6px 0 0 0}
  395.  
  396. blockquote {border-left:2px {color:post} solid; padding-left:5px; margin:0px 2px 0px 10px}
  397.  
  398.  
  399. blockquote {padding:0px; padding-left:5px; margin:5px; border-left:2px solid {color:background}}
  400.  
  401. #entries{margin-top:30px; }
  402.  
  403. .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:118px; border-bottom: 1px dotted #000000 }
  404.  
  405. #xright {position: fixed; margin-top: 52px; margin-left: 357px; overflow: auto; width: 524px; height: 703px;}
  406.  
  407.  
  408.  
  409. .tags{font-size: 9px; color:{color:link}; font-family: verdana; background-color: {color:post};}
  410. .tags a:hover {background-color: {color:post}; color:{linkhover}; -webkit-transition: all .2s linear; -moz-transition: all .2s linear; transition: all 0.2s linear;}
  411.  
  412.  
  413. h1 {font-family: georgia; text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  414.  
  415. h1 a {text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  416.  
  417. h1 a:hover {text-align: center; font-size: 16px; color: {color:text}; font-weight: normal; line-height: 18px;}
  418.  
  419.  
  420.  
  421. .image {text-align: center; border: 0px; }
  422. .image img {max-width: 500px; margin-bottom: 3px }
  423. .markqt {font-size: 90px; font-family: {font:title}; color:{color:text}; line-height: 90px; margin-left: 5px; opacity: 0.1; filter:alpha (opacity=100);}
  424. .qt {font-family: verdana; font-size: 18px; line-height: 23px; margin-top: -95px; margin-left: 45px; padding: 10px;}
  425. .qsr{margin: 5px 15px 0 0; text-align: right; text-transform: none;}
  426. .qsr a, a:hover{text-transform: none;}
  427.  
  428. .chat {line-height: 12px; list-style: none }
  429. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
  430. .person1 {background-color:{color:background}; color: {color:text}; }
  431. .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  432. .person2 {color: {color:text}; }
  433. .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
  434.  
  435. .audio{background-color:black; display:block;}
  436. .source{display:none}
  437.  
  438. #questions {background-color:{color:background}; color: {color:text}; padding:10px; margin-bottom:0px; font-family:verdana; font-size:9px}
  439. #questions a {color:{color:link}}
  440.  
  441.  
  442.  
  443. #cap {width: 500px; margin-top: -2px;}
  444.  
  445. #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
  446. .dda a {font-size: 9px;}
  447.  
  448.  
  449.  
  450. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
  451. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  452.  
  453. .qqmarks{
  454. font-size: 80px;
  455. font-weight: bold;
  456. line-height: 80px;
  457. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  458. opacity: 0.2;
  459. filter:alpha (opacity=20)
  460. }
  461.  
  462.  
  463.  
  464. .qquote {font-family: georgia; text-align: justify; font-size: 13px; line-height: 15px; padding: 3px;}
  465.  
  466. .qsource {text-align: center; text-transform: none; margin-left: 0px; margin-bottom: 5px;}
  467.  
  468. .qsource a, a:hover{text-transform: none;}
  469.  
  470.  
  471. .notes {width: 520px; padding: 0px; margin-top: 0px; margin-bottom: 10px; font-size: 9px; text-align: left; margin-left:0px;}
  472.  
  473. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11; margin-left:100px;}
  474.  
  475. ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
  476.  
  477. .notes img{display: none; border:0px}
  478.  
  479.  
  480.  
  481.  
  482. b{text-transform: block; color:;}
  483. i{text-transform: italic; color:{color:text}}
  484. p{margin:2px 0 2px 0}
  485. u {text-decoration: none; border-bottom: 1px dashed;}
  486. d1 {opacity:0.8}
  487. d2 {opacity:0.6}
  488. d3 {opacity:0.4}
  489. d4 {opacity:0.2}
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496. /* PAGINAÇÃO BY CINTIA HEYILOVE */
  497.  
  498. #page{margin-left: 690px; margin-top:85px; background-color: transparent; color:{color:texto sidbar}; float:center; width:60px; height:15px; position:fixed; border-right: 8px solid transparent; border-left: 4px solid transparent; border-bottom: 3px solid transparent; -webkit-border-bottom-left-radius:0px}
  499. .pgs{padding:3px; font-family:georgia; font-style: ; font-size: 22px; letter-spacing:-1px; z-index:12000000; color:{color:texto sidbar};}
  500.  
  501.  
  502.  
  503. #cre {float: left; margin-top: 195px; margin-left: 640px; 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: 0px;}
  504.  
  505. #cre a{font-size: 9px; color:#000}
  506.  
  507.  
  508.  
  509. #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)}
  510.  
  511. #barra a{font-size: 9px; color:#000}
  512.  
  513.  
  514.  
  515. #cadudescre {float: left; margin-top: 250px; margin-left: 665px; 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 #000000; }
  516.  
  517. #cadudescre a{font-size: 8px; color:#fff}
  518.  
  519. #pic {margin-top: 70px; margin-left: 740px; width: 140px; height: auto;
  520.  
  521.  
  522.  
  523. position: fixed; padding: 8px;
  524.  
  525.  
  526.  
  527. background-color: #000; border: 6px solid #000; z-index:900; -webkit-border-radius: 90px 90px 90px 90px }
  528.  
  529.  
  530.  
  531. #pic img{width: 140px; height: 140px; -webkit-border-radius: 90px 90px 90px 90px}
  532.  
  533.  
  534. #pic img:hover{-webkit-transform: rotate(-360deg); opacity:1;
  535.  
  536.  
  537.  
  538. -webkit-transition: all 3.0s ease-out; -moz-transition: all 2.5s ease-out; }
  539.  
  540.  
  541. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  542.  
  543. #cadulink {margin-top: 110px; margin-left: 664px; position:fixed; width: 20px; z-index:800}
  544.  
  545.  
  546.  
  547. #cadulink a{font-size: 10px; color: #fff ; background-color: #000; padding:2px 2px 2px 15px; display:block; margin-bottom: 1px; width: 175px; height: 7px; text-align: left; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; line-height: 6px; font-family: consolas;text-transform;}
  548.  
  549.  
  550.  
  551. #cadulink a:hover{color: #fff; background-color: #000; letter-spacing: 0px; margin-left: -12px; }
  552.  
  553.  
  554.  
  555. #barra1 {width: 7px; margin-left:660px; margin-top: 95px; background-color: {color:background}; height: 90px; position: fixed; z-index:840}
  556.  
  557. #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) }
  558.  
  559. #ttl a{font-size: 12px; color: {color:text sidbar}; }
  560. -webkit-transform: rotate(0deg)
  561. </style>
  562.  
  563.  
  564.  
  565.  
  566. </div><div id="cadudescre"> {description}
  567.  
  568. </div></div>
  569.  
  570. <div id="cadulink">
  571. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  572. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  573. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  574. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  575. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  576. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  577. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  578. </div>
  579. </div>
  580.  
  581.  
  582. <div id="cre"><br> theme por <b><a href="http://c4fajeste.tumblr.com/">c4fajeste </a></b> </i> </font> </a>
  583. </div></div>
  584.  
  585.  
  586. <div id="page">
  587. <div class="pgs">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«
  588. </a> {/block:PreviousPage}{block:NextPage}<a href="{NextPage}"> »</a>{/block:NextPage}{/block:Pagination}</font></font></div></div></div></div>
  589.  
  590.  
  591.  
  592.  
  593.  
  594. <div id="pic"><img src="{image:sidebar 1}"/>
  595.  
  596.  
  597.  
  598. </div></div></div></div></div></div>
  599.  
  600.  
  601.  
  602.  
  603.  
  604. <div id="entries">
  605. {block:Posts}
  606. <div class="post">
  607.  
  608. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  609.  
  610. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  611.  
  612. {block:Photoset}{Photoset-500}{/block:Photoset}
  613.  
  614. {block:Quote}
  615. <div class="qquote"><center>“{Quote}”</div>
  616. {block:Source}<div class="qsource">— {Source}</center></div>{/block:Source}
  617. {/block:Quote}
  618.  
  619. {block:Link}
  620. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  621. {block:Description}{Description}{/block:Description}
  622. {/block:Link}
  623.  
  624. {block:Chat}
  625. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  626. <div class="chat"><ul>{block:Lines}
  627. <li class="person{UserNumber}">{block:Label}
  628. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  629. {/block:Chat}
  630.  
  631. {block:Audio}
  632. <br>
  633. <div class="audio">{AudioPlayerBlack}</div>
  634. {block:Caption}{Caption}{/block:Caption}
  635. {/block:Audio}
  636.  
  637. {block:Video}{Video-500}{/block:Video}
  638.  
  639.  
  640.  
  641.  
  642. {block:Answer}<div id="questions">{Asker} gemeu gostoso: "{Question}"</div><small>
  643. {Answer}</small>{/block:answer}
  644.  
  645. <div id="cap">
  646. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  647. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  648. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  649.  
  650. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  651. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  652. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  653. {/block:ContentSource}</div></div>
  654. <br>
  655. <div class="tags"> <b>indiretas</b>: {block:HasTags}{block:Tags}<a href="{TagURL}" > #{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  656.  
  657. <div id="dda">
  658.  
  659.  
  660. <div style="float:left;" class="tags">
  661. {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>
  662. {block:RebloggedFrom} © <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  663. </span>{/block:RebloggedFrom} {block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  664. </div>
  665. </ br>
  666. <br clear="all" /></div></div>
  667.  
  668.  
  669. {/block:Posts}
  670. {block:PostNotes}
  671. <div id="notes"><div id="ntstext">{PostNotes}</div></div>
  672. {/block:PostNotes}
  673.  
  674. </div>
  675. </div>
  676. </div></div></div>
  677. </div></div>
  678.  
  679. </body>
  680. </html>
Advertisement
Add Comment
Please, Sign In to add comment