cadu

c4fajeste# ULTIMO THEME

Jun 5th, 2012
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.70 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:20px; z-index:40}
  403.  
  404. .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 #ccc; z-index:80 ; margin-top:1px; }
  405.  
  406. #xright {position: fixed; margin-top: 52px; margin-left: 357px; overflow: auto; width: 450px; 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: 450px; 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:#ddd; 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: 450px; 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: #000000; font-family: calibri; display: inline; list-style: none; text-transform:uppercase; font-style:none; font-size:10px;}
  451.  
  452. .tags a {font-size: 10px; color: verdana; display: inline; list-style: none; text-transform: uppercase;}
  453.  
  454. .qqmarks{
  455. font-size: 80px;
  456. font-weight: bold;
  457. line-height: 80px;
  458. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  459. opacity: 0.2;
  460. filter:alpha (opacity=20)
  461. }
  462.  
  463. .qqmarks{font-size: 80px; font-weight: bold; font-family: georgia; line-height: 80px; color: #000000;}
  464.  
  465. .qquote{font-family: Georgia; font-size: 18px; letter-spacing: -1px; line-height: 20px; margin-top: -70px; text-indent: 45px; text-align: justified}
  466.  
  467. .qsource{margin: 5px 15px 0 0; text-align: right}
  468.  
  469.  
  470.  
  471. .notes {width: 450px; padding: 0px; margin-top: 0px; margin-bottom: 10px; font-size: 9px; text-align: right; margin-left:418px;}
  472.  
  473. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11; margin-left:418px;}
  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. /* PAGINAÇÃO BY CINTIA HEYILOVE */
  496.  
  497. #page{margin-left: 200px; margin-top:455px; background-color: #fff; color:{color:texto sidbar}; float:center; width:235px; height:25px; position:fixed; border-top: 0px solid #636161; z-index:12000000; }
  498. .pgs{padding:3px; font-family:georgia; font-style: italic ; font-size: 9px; letter-spacing:0px; z-index:12000000; color:{color:texto sidbar};}
  499.  
  500.  
  501.  
  502.  
  503. #cre {float: left; margin-top: 347px; margin-left: 226px; width: 294px; background-color: transparent; color: #fff; padding: 3px; font-size: 10px; font-family:calibri ; 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(0deg); z-index:30000 }
  504.  
  505. #cre a{font-size: 8px; color:#fff}
  506.  
  507.  
  508.  
  509.  
  510. #cadugostoso {margin-left: 210px; margin-top: 300px; width: 229px; font-size: 9px; height: 70px; background-color: #fff ; font-family: tahoma; line-height: 10px; color: #636161; position: fixed; ; letter-spacing: 0px; text-align: center; }
  511.  
  512.  
  513. #pic {margin-top: 46px; margin-left: 200px; width: 215px; height: auto;
  514.  
  515.  
  516.  
  517. position: fixed; padding: 12px;
  518.  
  519.  
  520.  
  521. background-color: #fff; border: 1px solid #fff; z-index: 08;border-radius:0px;-moz-border-radius:0px; -webkit-border-top-left-radius:0px; -webkit-border-top-right-radius:0px; padding-bottom:115px solid #ccc; ;padding-top:15px solid #ccc; box-shadow:0px 0px 5px #ccc;}
  522.  
  523.  
  524.  
  525. #pic img{width: 215px; height: 305px;-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. #ttl {float: left; margin-top: 55px; margin-left: 210px; width: 229px; background-color: #fff; color: #000; padding: 0px; font-family: georgia; overflow:hidden; letter-spacing: -2px; line-height: 25px; 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: 0px dotted #000; height: 33px;}
  543.  
  544. #ttl a{font-size: 18px; color:#000; letter-spacing: -2px;}
  545.  
  546. #cadulink2 {margin-left: 222px; margin-top: 393px; 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; font-weight:none; border-left:0px solid #636161;border-right:0px solid #636161; }
  547.  
  548. #cadulink3 {margin-left: 222px; margin-top: 409px; width: 202px; font-size: 10px; height: 35px;; 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:; font-weight:none;border-left:0px solid #636161 ;border-right:0px solid #636161; }
  549.  
  550. </style>
  551.  
  552.  
  553. <div id="cadugostoso"> <ALIGN="JUSTIFY">
  554. {description}</div></div>
  555.  
  556.  
  557. <div id="cadulink2">
  558. <center>
  559. <B>
  560.  
  561.  
  562. <a href="/"> REFRESH </a> · <a href="/faq+ask"> F. ASKED </a> · <a href="/blogroll"> BLOGROLL</a> · <a href="/tagged/caducordeiro">STUFF </a> </center>
  563.  
  564.  
  565. </b>
  566. </div>
  567. </div>
  568.  
  569. <div id="cadulink3">
  570. <center>
  571. <B>
  572. <a href="http://reidecopas.tumblr.com/"> BROTHER </a> · <a href="http://decrypte-d.tumblr.com/"> GIRLFRIEND </a> · <a href="http://c4fajeste-themes.tumblr.com/">THEMES </a>
  573. </b>
  574. </div>
  575. </div>
  576.  
  577.  
  578. <div id="cre">THEME BY CANIB4L • <!-- Inicio Codigo Visitas online gratis opromo.com -->
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594. <script language="Javascript" src="http://www.opromo.com/servicos/usuariosonline/useronline.php?site=sitewwwcanib4ltumblrcom&corfont1=636161&texto=8&formato=normal&tipo=calibri&tamanho=3&simbo=7" type="text/javascript"></script>
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610. <!-- Fim Codigo Visitas online gratis opromo.com -->
  611.  
  612.  
  613.  
  614. </div></div>
  615.  
  616.  
  617. <div id="page">
  618. <div class="pgs">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><font color="#636161">previous</a> • {/block:PreviousPage}{block:NextPage}<a href="{NextPage}"><font color="#636161">next</a>{/block:NextPage}{/block:Pagination}</font></font></div></div></div></div>
  619.  
  620. </div></div></div></div>
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627. <div id="pic"><img src="{image:sidebar 1}"/>
  628.  
  629.  
  630.  
  631. </div></div></div></div></div></div>
  632.  
  633.  
  634.  
  635.  
  636.  
  637. </div></div>
  638.  
  639. <div id="entries">
  640. {block:Posts}
  641. <div class="post">
  642.  
  643. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  644.  
  645. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  646.  
  647. {block:Photoset}{Photoset-500}{/block:Photoset}
  648.  
  649. {block:Quote}
  650. <b class="qqmarks">“</b><div class="qquote">{Quote}”</div>
  651. {block:Source}<div class="qsource">— {Source}</center></div>{/block:Source}
  652. {/block:Quote}
  653.  
  654. {block:Link}
  655. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  656. {block:Description}{Description}{/block:Description}
  657. {/block:Link}
  658.  
  659. {block:Chat}
  660. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  661. <div class="chat"><ul>{block:Lines}
  662. <li class="person{UserNumber}">{block:Label}
  663. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  664. {/block:Chat}
  665.  
  666. {block:Audio}
  667. <br>
  668. <div class="audio">{AudioPlayerBlack}</div>
  669. {block:Caption}{Caption}{/block:Caption}
  670. {/block:Audio}
  671.  
  672. {block:Video}{Video-500}{/block:Video}
  673.  
  674.  
  675.  
  676.  
  677. {block:Answer}<div id="questions">{Asker} gemeu gostoso: "{Question}"</div><small>
  678. {Answer}</small>{/block:answer}
  679.  
  680. <div id="cap">
  681. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  682. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  683. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  684.  
  685. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  686. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  687. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  688. {/block:ContentSource}</div></div>
  689. <br>
  690. <div class="tags"><center> <b>tags</b>: {block:HasTags}{block:Tags}<a href="{TagURL}" > #{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  691.  
  692. <div id="dda">
  693. </center>
  694. <center>
  695. <div style="float:center;" class="tags">
  696. {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>
  697. {block:RebloggedFrom} © <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
  698. </span>{/block:RebloggedFrom} {block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  699. </div></center>
  700. </ br>
  701. <br clear="all" /></div></div>
  702.  
  703.  
  704. {/block:Posts}
  705. {block:PostNotes}
  706. <div id="notes"><div id="ntstext">{PostNotes}</div></div>
  707. {/block:PostNotes}
  708.  
  709. </div>
  710. </div>
  711. </div></div></div>
  712. </div></div>
  713.  
  714. </body>
  715. </html>
Advertisement
Add Comment
Please, Sign In to add comment