Advertisement
Decrepitar

Theme 39

Jun 4th, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.16 KB | None | 0 0
  1. <!--------------
  2.  
  3. THEMES BY DECREPITAR , NADA DE PLAGIOS !
  4.  
  5. NÃO RETIRE OS CREDITOS !
  6.  
  7. DDDDDDDDDD EEEEEEEEEE =======>> CREPITAR
  8. DD DD EE =======>> CREPITAR
  9. DD DD EEEEEEE =======>> CREPITAR
  10. DD DD EEEEEEE =======>> CREPITAR
  11. DD DD EE =======>> CREPITAR
  12. DDDDDDDDDD EEEEEEEEEEE =======>> CREPITAR
  13.  
  14. ---------------->
  15. <script type="text/javascript">
  16.  
  17. // <![CDATA[
  18.  
  19. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  20.  
  21. var fgcolour="#bebebe"; // foreground colour
  22.  
  23. var hlcolour="#b5b5b5"; // highlight colour
  24.  
  25. var bgcolour="#FFFFFF"; // background colour
  26.  
  27. var glcolour="#f8f8f8"; // colour of glow around letters
  28.  
  29. var speed=66; // speed colours change, 1 second = 1000
  30.  
  31. var delay=50; // how long to wait between wipes
  32.  
  33. var alink="/"; // page to link text to (set to ="" for no link)
  34.  
  35.  
  36.  
  37. /****************************
  38.  
  39. *Multi-Wipe Neon Text Effect*
  40.  
  41. *(c)2003-12 mf2fm web-design*
  42.  
  43. * http://www.mf2fm.com/rv *
  44.  
  45. * DON'T EDIT BELOW THIS BOX *
  46.  
  47. ****************************/
  48.  
  49. var w_txt, w_txl;
  50.  
  51. var w_flp=bgcolour;
  52.  
  53. var w_sty=Math.floor(Math.random()*8);
  54.  
  55. var w_cnt=-1;
  56.  
  57. var wipes=new Array();
  58.  
  59. var wrand=new Array();
  60.  
  61. window.onload=function() { if (document.getElementById) {
  62.  
  63. var i, wiper, wipei;
  64.  
  65. wiper=document.getElementById("wipe");
  66.  
  67. w_txt=wiper.firstChild.nodeValue;
  68.  
  69. w_txl=w_txt.length;
  70.  
  71. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  72.  
  73. for (i=0; i<w_txl; i++) {
  74.  
  75. wipei=document.createElement("span");
  76.  
  77. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  78.  
  79. wipes[i]=wipei.style;
  80.  
  81. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  82.  
  83. wipes[i].color=fgcolour;
  84.  
  85. wiper.appendChild(wipei);
  86.  
  87. }
  88.  
  89. if (alink) {
  90.  
  91. wiper.style.cursor="pointer";
  92.  
  93. wiper.onclick=function() { top.location.href=alink; }
  94.  
  95. }
  96.  
  97. for (i=0; i<w_txl; i++) wrand[i]=i;
  98.  
  99. wiper=setInterval("randwipe()", speed);
  100.  
  101. }}
  102.  
  103.  
  104.  
  105. function c(i, shade) {
  106.  
  107. if (shade==bgcolour) wipes[i].textShadow="none";
  108.  
  109. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  110.  
  111. wipes[i].color=shade;
  112.  
  113. }
  114.  
  115.  
  116.  
  117. function randwipe() {
  118.  
  119. var w_old;
  120.  
  121. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  122.  
  123. else {
  124.  
  125. w_cnt=-1;
  126.  
  127. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  128.  
  129. w_old=w_sty;
  130.  
  131. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  132.  
  133. }
  134.  
  135. }
  136.  
  137.  
  138.  
  139. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  140.  
  141.  
  142.  
  143. function wipe0() { // curtains
  144.  
  145. if (w_cnt<Math.floor(w_txl/2)) {
  146.  
  147. c(w_cnt, hlcolour);
  148.  
  149. c(w_txl-w_cnt-1, hlcolour);
  150.  
  151. }
  152.  
  153. else if (w_cnt<w_txl) {
  154.  
  155. c(w_cnt, w_flp);
  156.  
  157. c(w_txl-w_cnt-1, w_flp);
  158.  
  159. }
  160.  
  161. }
  162.  
  163.  
  164.  
  165. function wipe1() { // random
  166.  
  167. var i, rand, temp;
  168.  
  169. if (w_cnt==0) {
  170.  
  171. for (i=0; i<w_txl; i++) {
  172.  
  173. rand=Math.floor(Math.random()*w_txl);
  174.  
  175. temp=wrand[i];
  176.  
  177. wrand[i]=wrand[rand];
  178.  
  179. wrand[rand]=temp;
  180.  
  181. }
  182.  
  183. }
  184.  
  185. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  186.  
  187. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  188.  
  189. }
  190.  
  191.  
  192.  
  193. function wipe2() { // forwards
  194.  
  195. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  196.  
  197. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  198.  
  199. }
  200.  
  201.  
  202.  
  203. function wipe3() { // backwards
  204.  
  205. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  206.  
  207. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  208.  
  209. }
  210.  
  211.  
  212.  
  213. function wipe4() { // searchlight
  214.  
  215. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  216.  
  217. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  218.  
  219. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  220.  
  221. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  222.  
  223. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  224.  
  225. }
  226.  
  227.  
  228.  
  229. function wipe5() { // fade
  230.  
  231. var i;
  232.  
  233. if (w_cnt<w_txl+3) {
  234.  
  235. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  236.  
  237. var temp="#";
  238.  
  239. for (i=1; i<6; i+=2) {
  240.  
  241. var hex1=parseInt(start.substring(i,i+2),16);
  242.  
  243. var hex2=parseInt(w_flp.substring(i,i+2),16);
  244.  
  245. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  246.  
  247. }
  248.  
  249. for (i=0; i<w_txl; i++) c(i, temp);
  250.  
  251. }
  252.  
  253. }
  254.  
  255.  
  256.  
  257. function wipe6() { // flash
  258.  
  259. var i;
  260.  
  261. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  262.  
  263. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  264.  
  265. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  266.  
  267. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  268.  
  269. }
  270.  
  271. }
  272.  
  273.  
  274.  
  275. function wipe7() { // checkerboard
  276.  
  277. var qtr=Math.floor(w_txl/4);
  278.  
  279. if (w_cnt<qtr) {
  280.  
  281. c(w_cnt, hlcolour);
  282.  
  283. c(w_cnt+2*qtr, hlcolour);
  284.  
  285. }
  286.  
  287. else if (w_cnt<2*qtr) {
  288.  
  289. c(w_cnt-qtr, w_flp);
  290.  
  291. c(w_cnt+qtr, w_flp);
  292.  
  293. }
  294.  
  295. else if (w_cnt<3*qtr) {
  296.  
  297. c(w_cnt-qtr, hlcolour);
  298.  
  299. c(w_cnt+qtr, hlcolour);
  300.  
  301. }
  302.  
  303. else if (w_cnt<w_txl) {
  304.  
  305. c(w_cnt-2*qtr, w_flp);
  306.  
  307. c(w_cnt, w_flp);
  308.  
  309. }
  310.  
  311. }
  312.  
  313. // ]]>
  314.  
  315. </script>
  316.  
  317. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  318.  
  319. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  320.  
  321. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  322.  
  323. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  324.  
  325.  
  326. <link href='http://fonts.googleapis.com/css?family=Princess+Sofia|Crafty+Girls|Stalemate|Allura|Sevillana|Great+Vibes|Mouse+Memoirs|Merienda' rel='stylesheet' type='text/css'>
  327.  
  328. <html>
  329.  
  330. <meta name="color:background" content="#FFFFFF" />
  331. <meta name="color:text" content="#bebebe" />
  332. <meta name="color:post" content="#ffffff" />
  333. <meta name="color:scrollbar" content="#bebebe" />
  334. <meta name="image:background" content="" />
  335. <meta name="color:link" content="#bebebe"/>
  336. <meta name="text:frase" content="Pode se envolver" />
  337. <meta name="color:frase" content="#bebebe"/>
  338. <meta name="color:faixa" content="#dfdddf" />
  339. <meta name="color:faixa2" content="#f3eded" />
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347. <meta name="image:foto" content "http://static.tumblr.com/6f7274515c51fc80572ed2653301155b/gdekeu9/ABsmkwuj4/tumblr_static_tumblr_mj1hcb5spr1s6cw6lo1_500.jpg" />
  348. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  349. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  350. <link href='http://fonts.googleapis.com/css?family=Special+Elite' rel='stylesheet' type='text/css'>
  351. <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch' rel='stylesheet' type='text/css'>
  352. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  353.  
  354. <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  355. <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
  356. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  357. <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Dosis|Inconsolata' rel='stylesheet' type='text/css'>
  358. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  359.  
  360. <meta name="text:Link1" content="/" />
  361. <meta name="text:Link1 Title" content="1st page" />
  362. <meta name="text:Link2" content="/ask" />
  363. <meta name="text:Link2 Title" content="ask me" />
  364. <meta name="text:Link3" content="/submit" />
  365. <meta name="text:Link3 Title" content="submit" />
  366. <meta name="text:Link4" content="#" />
  367. <meta name="text:Link4 Title" content="Ela" />
  368.  
  369. <meta name="text:Link5" content="/" />
  370. <meta name="text:Link5 Title" content="link" />
  371.  
  372. <title>{Title}</title>
  373. <link rel="shortcut icon" href="http://datinggoldblog.com/wp-content/uploads/2012/05/tumblr-logo.png">
  374. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  375. {block:Description}
  376. <meta name="description" content="{MetaDescription}" />
  377. {/block:Description}
  378.  
  379.  
  380.  
  381.  
  382. <style type="text/css">
  383. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  384.  
  385. a {color: {color:link}; text-decoration: none; text-transform: none;}
  386. a:hover {color: {color:linkhover}; background-color: transparent; text-decoration: none;}
  387.  
  388. p {margin: 6px 0 0 0}
  389.  
  390. blockquote {margin: 5px 5px 5px 5px; border-left: 6px solid {color:background}; padding-left: 5px; }
  391. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  392. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  393. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  394.  
  395. blockquote img{max-width: 470px!important}
  396. blockquote blockquote img{max-width: 450px!important}
  397. blockquote blockquote blockquote img{max-width: 430px!important}
  398. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  399.  
  400. #container {text-align: center; width: 935px; margin: 20px auto 20px auto; padding: 0px; z-index: 1;}
  401.  
  402. #entry {float: left; margin-left: 310px; margin-top: 1px; }
  403.  
  404. .posts {width: 500px; background-color: {color:post};opacity:0.75; padding: 10px; margin-bottom: 2px; text-align: justify; font-family: 'arial'; font-size: 11px; position: relative; ;border:1px solid;}
  405.  
  406. h1 {font-family: Inconsolata ; text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  407. h1 a {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  408. h1 a:hover {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  409.  
  410. .image {text-align: center; border: 0px; }
  411. .image img {max-width: 500px; margin-bottom: 2px; box-shadow: 1px 1px 12px 0px #a5a1a1; //sombra; }
  412.  
  413.  
  414. .pquote {font-family: Inconsolata ; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  415. .pquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  416. .pquotesource a, a:hover{text-transform: none;}
  417.  
  418. .chat {line-height: 13px; list-style: none }
  419. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  420. .person1 {color: {color:text}; padding: 2px; }
  421. .person1 .label {font-weight: bold; color:{color:text}}
  422. .person2 {color: {color:text}; padding: 2px; }
  423. .person2 .label {font-weight: bold; color:{color:text}}
  424.  
  425. .player {background-color: #000; text-align: left; display:block;}
  426.  
  427.  
  428. .pergunta {background: #F4F4F4; color: #bebebe; text-align: justify; padding: 10px; margin-bottom: 5px; margin-left: 40px; margin-right: auto;}
  429.  
  430. .pergunta a {color: #DCDCDC}
  431.  
  432. .pergunta g {color: #DCDCDC;}
  433.  
  434. .iconeask {float: left; margin-right: 2px; margin-bottom: 3px; border: 4px solid #cecece; -webkit-transform: rotate(-370deg);}
  435.  
  436. .divisoria {display: block; margin-top: 4px; margin-bottom: 4px;}
  437.  
  438. .creditoaokaique {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;;}
  439. .creditoaokaique:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  440.  
  441. #info {text-align: center ; margin-top:-4px; font-size: 10px; font-family: calibri; text-transform: uppercase; z-index: 11;border-top:1px solid;border-bottom:1px solid;}
  442. #info a {font-size: 10px; text-transform: uppercase;}
  443.  
  444. #tags {color: {color:text}; font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  445. #tags a {font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  446.  
  447. #cap {width: 500px; margin-top: -2px;}
  448. .source {display: none;}
  449.  
  450. .notes {width: 520px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  451. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  452. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  453. .notes img{display: none; border:0px}
  454. ::-webkit-scrollbar{width:7px;height:7px;}
  455. ::-webkit-scrollbar-button:start:decrement
  456. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  457. ::-webkit-scrollbar-track-piece{background-color: {color:post}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  458. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:10px;}
  459. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  460.  
  461. #sidebar {position: fixed; margin-left:70px; margin-top:160px; z-index:100;}
  462. .bundaohihi {position: fixed; width:150px; height:200px;border:3px solid
  463. ; color:#bebebe;}
  464. .bundaohihi {margin-left: 0px; -webkit-transition:All 1s ease; -moz-transition:All 1s ease; -o-transition:All 1s ease;}
  465.  
  466.  
  467.  
  468.  
  469. .linka1 {width: 50px;margin-top: 246px; margin-left:226px; position:fixed; width: ; z-index:;}
  470.  
  471. .linka1 a{text-transform: none; display: inline-block ; font-family: arial ; background-color:transp.; color: {color:linkss}; width: 48px; text-align: center; font-size: 8px; height:18px;line-height:18px;text-transform:none; -webkit-transition-duration: .66s;margin: 2px 0 0px 0;opacity:0.71;border-bottom:1px solid ;text-transform:uppercase;overflow:hidden; padding:1px;font-style: {color:sombra};-webkit-border-radius: 0px 5px 5px 0px ;border-top:1px solid ;border-right:1px solid ;}
  472.  
  473. .linka1 a:hover{position:fixed;
  474. padding-top:20px;
  475. padding-right:30px;
  476. margin-top:330px;
  477. -moz-transition:all 2.0s;
  478. -o-transition:all 2.0s;
  479. -webkit-transition:all 2.0s;}
  480.  
  481.  
  482. #poeta-desc {width:145px; height:19.5px; margin-left:73px; margin-top:370px; position:fixed; overflow:hidden; background-color: #trans ; color: {color:frase}; font-family:arial; font-size:9px; border-top:0px solid; border-right:0px solid; padding:3px;font-style: {color:sombra};}
  483.  
  484. #frase {background-color: ; font-weight: normal; letter-spacing: 0px; color: {color:frase}; text-align:center; width: 150px; line-height: 20px; position: absolute; -moz-transition: all 0.4s ease-out; font-family:'wire one'; margin-top:130px; margin-left:70px; text-transform:uppercase ; position: fixed; padding: 2px; font-size: 23px;border-bottom: 2px double ;}
  485.  
  486. #cred {margin-top: 0px; margin-left: 0px; position:fixed; width: auto; z-index:99999999999999999999999999999;}
  487.  
  488. #cred a{text-transform: none; display: block; font-family: 'arial'; background-color:#transp.; color: {color:link}; width: 90px; text-align: center; font-size: 8px; height:12px;line-height:10px;text-transform:uppercase; -webkit-transition-duration: .66s;}
  489.  
  490. #page {width:150px; height: auto; margin-left:70px; margin-top:400px; position:fixed; overflow:hidden; background-color: #trans ; color: {color:frase}; font-family:verdana; font-size:9px; border-top:1px solid; border-right:0px solid; padding:3px;font-style: {color:sombra};}
  491.  
  492. #quel{width:250px;; margin-left:-53px; margin-top:365px; position:fixed; overflow:hidden; background-color: #trans ; color: #cecece; font-family:arial; font-size:30px; border-top:0px solid; border-right:0px solid;}
  493.  
  494.  
  495. #quel2{width:250px;; margin-left:100px; margin-top:365px; position:fixed; overflow:hidden; background-color: #trans ; color: #cecece; font-family:arial; font-size:30px; border-top:0px solid; border-right:0px solid;}
  496.  
  497. #faixa {width: 5px;height:1000px;left:20px;top:-150px;background-color: {color:faixa};color: ;position: fixed;float: center;font-size: 9px;padding: 1px; font-family: verdana;opacity:;-webkit-transform:rotate(0deg) ;
  498. }
  499. #faixa1 {width: 5px;height:1000px;left:10px;top:-150px;background-color: {color:faixa2};color: ;position: fixed;float: center;font-size: 9px;padding: 1px; font-family: verdana;opacity:;-webkit-transform:rotate(0deg) ;
  500. }
  501.  
  502.  
  503. </style>
  504.  
  505.  
  506. <body>
  507.  
  508. <div id="faixa"></div>
  509. <div id="faixa1"></div>
  510.  
  511. <div id="sidebar">
  512.  
  513. <img src="{image:foto}" class="bundaohihi"></div></div>
  514. </DIV>
  515.  
  516. <div class ="linka1">
  517.  
  518. <a href="{text:Link1}">{text:Link1 Title}</a>
  519. <a href="{text:Link2}">{text:Link2 Title}</a>
  520. <a href="{text:Link3}">{text:Link3 Title}</a>
  521. <a href="{text:Link4}">{text:link4 Title}</a>
  522. <a href="{text:Link5}">{text:Link5 Title}</a>
  523.  
  524.  
  525. </div></div></div>
  526.  
  527. <div id="quel">[ </div>
  528. <div id="quel2">] </div>
  529. <div id="page">
  530.  
  531.  
  532. {block:Pagination}
  533. {block:PreviousPage}
  534. <a href="{PreviousPage}">←</a>
  535. {/block:PreviousPage}
  536. {block:JumpPagination length="5"}
  537. {block:CurrentPage}
  538. <span class="current_page" style="color:#B0B0B0;">{PageNumber}</span>
  539. {/block:CurrentPage}
  540. {block:JumpPage}
  541. <a class="jump_page" href="{URL}">{PageNumber}</a>
  542. {/block:JumpPage}
  543. {/block:JumpPagination}
  544. {block:NextPage}
  545. <a href="{NextPage}">→</a>
  546. {/block:NextPage}
  547. </div>
  548. {/block:Pagination}</div></center>
  549. </div>
  550.  
  551.  
  552. <div id="frase"><span id="wipe">{text:frase}</span></div>
  553.  
  554. <div id="poeta-desc"> <center> {description}
  555.  
  556.  
  557. </DIV>
  558. <!--------NÃO OUSE RETIRAR OS CREDITOS' artigo lei 184 . Design todo feito por decrepitar , caso haja copias irei te denunciar .
  559. ----------->
  560. <div id="cred">
  561. <a href="http://DECREPITAR.tumblr.com" title="THEME BY DECREPITAR " target="_blank" > THEME </a></DIV>
  562. </div></div></div></div>
  563. <!--------NÃO OUSE RETIRAR OS CREDITOS' artigo lei 184 . Design todo feito por decrepitar , caso haja copias irei te denunciar .
  564. ----------->
  565. </div></div></div></div></div></div></div>
  566.  
  567. <div id="entry">
  568.  
  569. {block:Posts}
  570. <div class="posts">
  571.  
  572. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  573.  
  574. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  575.  
  576. {block:Photoset}{Photoset-500}{/block:Photoset}
  577.  
  578. {block:Quote}
  579. <div class="pquote">“{Quote}”</div>
  580. {block:Source}<div class="pquotesource"> - {Source}</div>
  581. {/block:Source}
  582. {/block:Quote}
  583.  
  584. {block:Link}
  585. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  586. {block:Description}{Description}{/block:Description}
  587. {/block:Link}
  588.  
  589. {block:Chat}
  590. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  591. <div class="chat"><ul>{block:Lines}
  592. <li class="person{UserNumber}">{block:Label}
  593. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  594. {/block:Chat}
  595.  
  596. {block:Audio}
  597. <div class="player">{AudioPlayerBlack}</div>
  598. {block:Caption}{Caption}{/block:Caption}
  599. {/block:Audio}
  600.  
  601. {block:Video}{Video-500}{/block:Video}
  602.  
  603.  
  604. {block:Answer}
  605. <img src='{AskerPortraitURL-30}' class='iconeask'>
  606.  
  607. <div class='pergunta'><g>{Asker}</g> {Question}</div>
  608.  
  609. <div class='divisoria'></div>
  610.  
  611. {Answer}
  612. {/block:answer}
  613.  
  614.  
  615.  
  616. <div id="cap">
  617. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  618. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  619. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  620.  
  621. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  622. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  623. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  624. {/block:ContentSource}</div></div>
  625. <br>
  626.  
  627. <div class="creditoaokaique">
  628. {block:Date}<div id="info">
  629. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} • <a href="{Permalink}" {block:NoteCount}{/block:NoteCount}</a>{NoteCountWithLabel}</a>{block:RebloggedFrom} - <a href="{ReblogParentURL}"><a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:ContentSource} - <a href="{SourceURL}">source</a>{/block:ContentSource} {block:IndexPage}- <a href="{ReblogUrl}" target="_blank">reblog</a>{/block:IndexPage}</center> </div>{block:IfShowTags}<center><div id="tags">{block:HasTags}{block:Tags} #<a href="{TagUrl}">{Tag}</a>{/block:Tags}{/block:HasTags}</div>
  630. </div>{/block:IfShowTags}{/block:Date}</div>
  631. </div>
  632.  
  633. {/block:Posts}
  634. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  635. </div>
  636. </div>
  637. </body></div></div>
  638.  
  639. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement