Advertisement
Decrepitar

Theme 38

Jun 2nd, 2013
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.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.  
  339. <meta name="image:foto" content "http://static.tumblr.com/6f7274515c51fc80572ed2653301155b/gdekeu9/ABsmkwuj4/tumblr_static_tumblr_mj1hcb5spr1s6cw6lo1_500.jpg" />
  340. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  341. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  342. <link href='http://fonts.googleapis.com/css?family=Special+Elite' rel='stylesheet' type='text/css'>
  343. <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch' rel='stylesheet' type='text/css'>
  344. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  345.  
  346. <link href='http://fonts.googleapis.com/css?family=Megrim' rel='stylesheet' type='text/css'>
  347. <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
  348. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  349. <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Dosis|Inconsolata' rel='stylesheet' type='text/css'>
  350. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  351.  
  352. <meta name="text:Link1" content="/" />
  353. <meta name="text:Link1 Title" content="1st page" />
  354. <meta name="text:Link2" content="/ask" />
  355. <meta name="text:Link2 Title" content="ask me" />
  356. <meta name="text:Link3" content="/submit" />
  357. <meta name="text:Link3 Title" content="submit" />
  358. <meta name="text:Link4" content="#" />
  359. <meta name="text:Link4 Title" content="Ele" />
  360.  
  361.  
  362.  
  363. <title>{Title}</title>
  364. <link rel="shortcut icon" href="{Favicon}">
  365. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  366. {block:Description}
  367. <meta name="description" content="{MetaDescription}" />
  368. {/block:Description}
  369.  
  370.  
  371.  
  372.  
  373. <style type="text/css">
  374. 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; }
  375.  
  376. a {color: {color:link}; text-decoration: none; text-transform: none;}
  377. a:hover {color: {color:linkhover}; background-color: transparent; text-decoration: none;}
  378.  
  379. p {margin: 6px 0 0 0}
  380.  
  381. blockquote {margin: 5px 5px 5px 5px; border-left: 6px solid {color:background}; padding-left: 5px; }
  382. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  383. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  384. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  385.  
  386. blockquote img{max-width: 470px!important}
  387. blockquote blockquote img{max-width: 450px!important}
  388. blockquote blockquote blockquote img{max-width: 430px!important}
  389. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  390.  
  391. #container {text-align: center; width: 935px; margin: 20px auto 20px auto; padding: 0px; z-index: 1;}
  392.  
  393. #entry {float: left; margin-left: 450px; margin-top: 1px; }
  394.  
  395. .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;}
  396.  
  397. h1 {font-family: Special+Elite ; text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  398. h1 a {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  399. h1 a:hover {text-align: center; font-size: 16px; text-transform: none; color: {color:text}; font-weight: normal; line-height: 18px;}
  400.  
  401. .image {text-align: center; border: 0px}
  402. .image img {max-width: 500px; margin-bottom: 2px }
  403. .image img:hover{border:1px solid ;}
  404.  
  405. .pquote {font-family: Rouge+Script ; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  406. .pquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  407. .pquotesource a, a:hover{text-transform: none;}
  408.  
  409. .chat {line-height: 13px; list-style: none }
  410. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  411. .person1 {color: {color:text}; padding: 2px; }
  412. .person1 .label {font-weight: bold; color:{color:text}}
  413. .person2 {color: {color:text}; padding: 2px; }
  414. .person2 .label {font-weight: bold; color:{color:text}}
  415.  
  416. .player {background-color: #000; text-align: left; display:block;}
  417.  
  418.  
  419. .ask {
  420. padding:10px;
  421. background-color:#fff;
  422. color:#000;
  423. text-align:justify;
  424. font-family:calibri;
  425. font-size:11px;
  426. border-bottom:1px solid #cecece;
  427. max-width:100%;
  428. }
  429.  
  430. .asker {
  431. margin-left:10px;
  432. margin-top:22px;
  433. }
  434.  
  435. .asker img {
  436. border:6px solid {color:#969696};
  437. }
  438.  
  439. .creditoaokaique {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;;}
  440. .creditoaokaique:hover {opacity: 0.99; -webkit-transition: all 0.6s ease-out; -moz-transition: all 0.6s ease-out;}
  441.  
  442. #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;}
  443. #info a {font-size: 10px; text-transform: uppercase;}
  444.  
  445. #tags {color: {color:text}; font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  446. #tags a {font-size: 10px; font-family: calibri; display: inline; list-style: none; text-transform: uppercase;;}
  447.  
  448. #cap {width: 500px; margin-top: -2px;}
  449. .source {display: none;}
  450.  
  451. .notes {width: 520px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  452. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  453. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  454. .notes img{display: none; border:0px}
  455. ::-webkit-scrollbar{width:7px;height:7px;}
  456. ::-webkit-scrollbar-button:start:decrement
  457. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  458. ::-webkit-scrollbar-track-piece{background-color: {color:post}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  459. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:10px;}
  460. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  461.  
  462. #sidebar {position: fixed; margin-left:230px; margin-top:118px; z-index:100;}
  463. .bundaohihi {position: fixed; width:180px; height:180px; border:5px Ridge
  464. ;color:#cecece}
  465. .bundaohihi {margin-left: 0px; -webkit-transition:All 1s ease; -moz-transition:All 1s ease; -o-transition:All 1s ease;}
  466.  
  467.  
  468.  
  469. #linkpi {width:180px; margin-top:310px; height:15px;position: fixed; margin-left:230px;background-color:{color:};z-index:99999999999999999999999999999999;opacity:0.6;-webkit-transition-duration: .88s;border-left:25px solid;color:#a2a2a2;}
  470. #linkpi:hover {opacity:0.8;-webkit-transition-duration: .88s;}
  471. #linkpi a {font-family:arial; text-transform:uppercase; margin:0px;font-size:9px;color:{color:linkss};-webkit-transition-duration: .55s;}
  472. #linkpi a:hover {color:{color:linkss};-webkit-filter: blur(0.7px);-webkit-transition-duration: .55s;}
  473.  
  474.  
  475.  
  476.  
  477. #poeta-desc {width:180px; height: auto; margin-left:230px; margin-top:330px; position:fixed; overflow:hidden; background-color: #trans ; color: {color:frase}; font-family:arial; font-size:9px; border-top:1px solid; border-right:0px solid; padding:3px;font-style: {color:sombra};}
  478.  
  479. #frase {background-color: ; font-weight: normal; letter-spacing: 0px; color: {color:frase}; text-align:center; width: 180px; line-height: 20px; position: absolute; -moz-transition: all 0.4s ease-out; font-family:'wire one'; margin-top:85px; margin-left:232px; text-transform: none; position: fixed; padding: 2px; font-size: 25px;border-bottom: 3px double ;}
  480.  
  481. #cred {margin-top: 0px; margin-left: 0px; position:fixed; width: auto; z-index:99999999999999999999999999999;}
  482.  
  483. #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;}
  484.  
  485. </style>
  486.  
  487.  
  488. <body>
  489.  
  490.  
  491. <div id="sidebar">
  492.  
  493. <img src="{image:foto}" class="bundaohihi"></div></div>
  494. </DIV>
  495.  
  496. <div id ="linkpi">
  497.  
  498. <a href="{text:Link1}">{text:Link1 Title}</a>
  499. <a href="{text:Link2}">{text:Link2 Title}</a>
  500. <a href="{text:Link3}">{text:Link3 Title}</a>
  501. <a href="{text:Link4}">{text:link4 Title}</a>
  502.  
  503.  
  504.  
  505. </div></div></div>
  506. <div id="frase"><span id="wipe">{text:frase}</span></div>
  507.  
  508. <div id="poeta-desc"> <center>─ {description}
  509. <br> <br>
  510.  
  511. {block:Pagination}
  512. {block:PreviousPage}
  513. <a href="{PreviousPage}">←</a>
  514. {/block:PreviousPage}
  515. {block:JumpPagination length="5"}
  516. {block:CurrentPage}
  517. <span class="current_page" style="color:#B0B0B0;">{PageNumber}</span>
  518. {/block:CurrentPage}
  519. {block:JumpPage}
  520. <a class="jump_page" href="{URL}">{PageNumber}</a>
  521. {/block:JumpPage}
  522. {/block:JumpPagination}
  523. {block:NextPage}
  524. <a href="{NextPage}">→</a>
  525. {/block:NextPage}
  526. </div>
  527. {/block:Pagination}</div></center>
  528.  
  529. </DIV>
  530.  
  531. <div id="cred">
  532. <a href="http://DECREPITAR.tumblr.com" title="THEME BY DECREPITAR " target="_blank" > theme </a></DIV>
  533. </div></div></div></div>
  534.  
  535. </div></div></div></div></div></div></div>
  536.  
  537. <div id="entry">
  538.  
  539. {block:Posts}
  540. <div class="posts">
  541.  
  542. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  543.  
  544. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  545.  
  546. {block:Photoset}{Photoset-500}{/block:Photoset}
  547.  
  548. {block:Quote}
  549. <div class="pquote">“{Quote}”</div>
  550. {block:Source}<div class="pquotesource"> - {Source}</div>
  551. {/block:Source}
  552. {/block:Quote}
  553.  
  554. {block:Link}
  555. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  556. {block:Description}{Description}{/block:Description}
  557. {/block:Link}
  558.  
  559. {block:Chat}
  560. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  561. <div class="chat"><ul>{block:Lines}
  562. <li class="person{UserNumber}">{block:Label}
  563. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  564. {/block:Chat}
  565.  
  566. {block:Audio}
  567. <div class="player">{AudioPlayerBlack}</div>
  568. {block:Caption}{Caption}{/block:Caption}
  569. {/block:Audio}
  570.  
  571. {block:Video}{Video-500}{/block:Video}
  572.  
  573.  
  574. {block:Answer}
  575. <li class="post answer">
  576. <div class="ask">
  577. {Question}<br><div style="flot: right; position:absolute;margin-right:3px;margin-top:2px;"><img src="{AskerPortraitURL-30}"></div>
  578. </div>
  579.  
  580. <div class="asker">
  581.  
  582. <div style="text-transform:uppercase;font:12px 'cambria';position:absolute;margin-left:20px;margin-top:-20px;">{Asker} me falou : </div>
  583. </div>
  584. <p>
  585. <div style="font:11px 'cambria';">{Answer} </div>
  586. {/block:answer}
  587.  
  588.  
  589.  
  590. <div id="cap">
  591. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  592. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  593. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  594.  
  595. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  596. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  597. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  598. {/block:ContentSource}</div></div>
  599. <br>
  600.  
  601. <div class="creditoaokaique">
  602. {block:Date}<div id="info">
  603. <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>
  604. </div>{/block:IfShowTags}{/block:Date}</div>
  605. </div>
  606.  
  607. {/block:Posts}
  608. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  609. </div>
  610. </div>
  611. </body></div></div>
  612.  
  613. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement