cadu

YAAAAAAAAAAAAAAAN

May 19th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.40 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" content="#000000" />
  24. <meta name="color:post" content="#ffffff" />
  25.  
  26.  
  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. <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:transparent;}
  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.  
  378.  
  379. body {
  380. background-color: {color:background};
  381. color:{color:text};
  382. font-family: verdana;
  383. font-size: 10px;
  384. text-align: center;
  385. line-height:120%;
  386. margin:0;
  387. padding:0;
  388. background-image:url('{image:background}');
  389. background-attachment: fixed
  390. }
  391.  
  392. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition-duration: .40s;}
  393. a:hover {color: {color:hover}; background-color: {color:bg hover}; text-decoration: none;}
  394.  
  395. p {margin: 6px 0 0 0}
  396.  
  397. blockquote {border-left:2px {color:post} solid; padding-left:5px; margin:0px 2px 0px 10px}
  398.  
  399.  
  400. blockquote {padding:0px; padding-left:5px; margin:5px; border-left:2px solid {color:background}}
  401.  
  402. #entries{margin-top:30px; z-index:40}
  403.  
  404. .post {width: 500px; 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:458px; border-bottom: 1px dotted #000; z-index:80 }
  405.  
  406. #xright {position: fixed; margin-top: 52px; margin-left: 357px; overflow: auto; width: 524px; height: 703px;}
  407.  
  408.  
  409.  
  410. .tags{font-size: 9px; color:{color:link}; font-family: verdana; background-color: {color:post};}
  411. .tags a:hover {background-color: {color:post}; color:{linkhover}; -webkit-transition: all .2s linear; -moz-transition: all .2s linear; transition: all 0.2s linear;}
  412.  
  413.  
  414. 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;}
  415.  
  416. h1 a {text-align: center; font-size: 18px; color: {color:text}; font-weight: normal; line-height: 18px;}
  417.  
  418. h1 a:hover {text-align: center; font-size: 18px; color: {color:text}; font-weight: normal; line-height: 18px;}
  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: tahoma; font-size: 15px; 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. .qqmarks{font-size: 80px; font-weight: bold; font-family: georgia; line-height: 80px; color: #000000;}
  463.  
  464. .qquote{font-family: Georgia; font-size: 18px; letter-spacing: -1px; line-height: 20px; margin-top: -70px; text-indent: 45px; text-align: justified}
  465.  
  466. .qsource{margin: 5px 15px 0 0; text-align: right}
  467.  
  468.  
  469.  
  470. .notes {width: 520px; padding: 0px; margin-top: 0px; margin-bottom: 10px; font-size: 9px; text-align: left; margin-left:418px;}
  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.  
  494. /* PAGINAÇÃO BY CINTIA HEYILOVE */
  495.  
  496. #page{margin-left: 230px; margin-top:555px; background-color: transparent; color:{color:texto sidbar}; float:center; width:100px; height:15px; position:fixed; border-top: 1px dotted #000;}
  497. .pgs{padding:3px; font-family:consolas; font-style: ; font-size: 12px; letter-spacing:-1px; z-index:12000000; color:{color:texto sidbar};}
  498.  
  499.  
  500.  
  501.  
  502. #cre {float: left; margin-top: 535px; margin-left: 130px; width: 294px; background-color: #fff; color: #000; padding: 3px; font-size: 8px; font-family: tahoma; 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;}
  503.  
  504. #cre a{font-size: 8px; color:#000}
  505.  
  506.  
  507. #cadugostoso{margin-left: 130px; margin-top: 370px; width: 300px; font-size: 9px; height: 102px;; background-color: transparent ; font-family: tahoma; line-height: 10px; color: transparent; 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: px; text-align: center;
  508. opacity:;
  509.  
  510.  
  511.  
  512. -webkit-transition: 0.5s ease-in; border-bottom: 1px dotted #000; }
  513.  
  514. #cadugostoso:hover {margin-left: 130px; margin-top: 470px; width: 300px; font-size: 9px; height: 150px; text-align: center; background-color: {color:background} ; font-family: tahoma; line-height: 10px; color: #2e2d2d; 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:100000; letter-spacing: px; text-align: center; border-bottom: 0px dotted #fff; -webkit-transition: 1.0s ease-in }
  515.  
  516.  
  517. #pic {margin-top: 5px; margin-left: 130px; width: 294px; height: auto;
  518.  
  519.  
  520.  
  521. position: fixed; padding: 0px;
  522.  
  523.  
  524.  
  525. background-color: {color:sidebar}; border: 3px solid #000; z-index: 200;-webkit-border-top-left-radius:0px; -webkit-border-top-right-radius:0px; }
  526.  
  527.  
  528.  
  529. #pic img{width: 294px; height: 455px;-webkit-border-top-left-radius:0px; -webkit-border-top-right-radius:0px;}
  530.  
  531.  
  532.  
  533.  
  534. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  535.  
  536. #cadulink {margin-top: 415px; margin-left: 345px; position:fixed; width: 20px; z-index:90000}
  537.  
  538.  
  539.  
  540. #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; }
  541.  
  542.  
  543. #cadulink a:hover{color: {color:link sidbar hover}; background-color: transparent; letter-spacing: 0px; }
  544.  
  545.  
  546. #ttl {float: left; margin-top: 482px; margin-left: 150px; width: 260px; background-color: transparent; color: #000; padding: 0px; font-family: georgia; overflow:hidden; letter-spacing: -2px; line-height: 12px; 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-size: 18px; border-bottom: 1px dotted #000; height: 16px;}
  547.  
  548. #ttl a{font-size: 18px; color:#000; letter-spacing: -2px;}
  549.  
  550. #cadulink2 {margin-left: 150px; margin-top: 500px; width: 260px; font-size: 10px; height: 18px;; background-color: #fff ; font-family: georgia; line-height: 12px; color: #000; 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: 1px; text-align: center; -webkit-transition: 0.5s ease-in; border-bottom: 1px dotted #000; border-top: 0px solid #000; }
  551.  
  552.  
  553. </style>
  554. <div id="ttl"> <i><span id="wipe">{title}</span></i> </div>
  555.  
  556.  
  557. <div id="cadugostoso">
  558. {description}</div></div>
  559.  
  560.  
  561. <div id="cadulink2"><center>{block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1} •
  562. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2} •
  563. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3} •
  564. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4} •
  565. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}•
  566. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}•
  567. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}</center>
  568.  
  569.  
  570. </div>
  571. </div>
  572.  
  573.  
  574. <div id="cre">THEME BY <B>C4FAJESTE</B>, INSPIRED <B>560KM</B>, EXCLUSIVED <B>BEFORE-NIGHT</B>
  575. </div></div>
  576.  
  577.  
  578. <div id="page">
  579. <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>
  580. {/block:Pagination}
  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.  
  601. <div id="entries">
  602. {block:Posts}
  603. <div class="post">
  604.  
  605. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  606.  
  607. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  608.  
  609. {block:Photoset}{Photoset-500}{/block:Photoset}
  610.  
  611. {block:Quote}
  612. <b class="qqmarks">“</b><div class="qquote">{Quote}”</div>
  613. {block:Source}<div class="qsource">— {Source}</center></div>{/block:Source}
  614. {/block:Quote}
  615.  
  616. {block:Link}
  617. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  618. {block:Description}{Description}{/block:Description}
  619. {/block:Link}
  620.  
  621. {block:Chat}
  622. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  623. <div class="chat"><ul>{block:Lines}
  624. <li class="person{UserNumber}">{block:Label}
  625. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  626. {/block:Chat}
  627.  
  628. {block:Audio}
  629. <br>
  630. <div class="audio">{AudioPlayerBlack}</div>
  631. {block:Caption}{Caption}{/block:Caption}
  632. {/block:Audio}
  633.  
  634. {block:Video}{Video-500}{/block:Video}
  635.  
  636.  
  637.  
  638.  
  639. {block:Answer}<div id="questions">{Asker} gemeu gostoso: "{Question}"</div><small>
  640. {Answer}</small>{/block:answer}
  641.  
  642. <div id="cap">
  643. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  644. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  645. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  646.  
  647. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  648. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  649. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  650. {/block:ContentSource}</div></div>
  651. <br>
  652. <div class="tags"> <b>indiretas</b>: {block:HasTags}{block:Tags}<a href="{TagURL}" > #{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  653.  
  654. <div id="dda">
  655.  
  656.  
  657. <div style="float:left;" class="tags">
  658. {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>
  659. {block:RebloggedFrom} © <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  660. </span>{/block:RebloggedFrom} {block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  661. </div>
  662. </ br>
  663. <br clear="all" /></div></div>
  664.  
  665.  
  666. {/block:Posts}
  667. {block:PostNotes}
  668. <div id="notes"><div id="ntstext">{PostNotes}</div></div>
  669. {/block:PostNotes}
  670.  
  671. </div>
  672. </div>
  673. </div></div></div>
  674. </div></div>
  675.  
  676. </body>
  677. </html>
Advertisement
Add Comment
Please, Sign In to add comment