Don't like ads? PRO users don't see any ads ;-)
Guest

themes69-12

By: themes69 on May 11th, 2012  |  syntax: None  |  size: 19.26 KB  |  hits: 361  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2.  
  3. <!-- theme by garoto-da-capa-preta, don't copy. -->
  4.  
  5. <head>
  6. <script type="text/javascript">
  7. //desabilita menu de opcoes ao clicar no botao direito
  8. function desabilitaMenu(e)
  9. {
  10. if (window.Event)
  11. {
  12. if (e.which == 2 || e.which == 3)
  13. return false;
  14. }
  15. else
  16. {
  17. event.cancelBubble = true
  18. event.returnValue = false;
  19. return false;
  20. }
  21. }
  22.  
  23.  
  24.  
  25.  
  26. //desabilita botao direito
  27. function desabilitaBotaoDireito(e)
  28. {
  29. if (window.Event)
  30. {
  31. if (e.which == 2 || e.which == 3)
  32. return false;
  33. }
  34. else
  35. if (event.button == 2 || event.button == 3)
  36. {
  37. event.cancelBubble = true
  38. event.returnValue = false;
  39. return false;
  40. }
  41. }
  42.  
  43.  
  44.  
  45.  
  46. //desabilita botao direito do mouse
  47. if ( window.Event )
  48. document.captureEvents(Event.MOUSEUP);
  49. if ( document.layers )
  50. document.captureEvents(Event.MOUSEDOWN);
  51.  
  52.  
  53.  
  54.  
  55. document.oncontextmenu = desabilitaMenu;
  56. document.onmousedown = desabilitaBotaoDireito;
  57. document.onmouseup = desabilitaBotaoDireito;
  58. </script>
  59.  
  60.  
  61.    <!-- DEFAULT VARIABLES -->
  62. <meta name="color:background" content="#f8f8f8" />
  63. <meta name="color:link" content="#000" />
  64. <meta name="color:link hover" content="#999999" />
  65. <meta name="color:text" content="#000000" />
  66. <meta name="color:post" content="#ffffff" />
  67. <meta name="color:sidebar" content="#ffffff" />
  68. <meta name="color:links" content="#ffffff" />
  69. <meta name="color:linkshover" content="#ffffff" />
  70. <meta name="color:bglinks" content="#fff" />
  71. <meta name="color:bglinks hover" content="#fff" />
  72. <meta name="color:sublinks" content="#fff" />
  73. <meta name="color:sublinks hover" content="#000" />
  74. <meta name="color:scrollbar" content="#000" />
  75.  
  76. <meta name="if:WipeTitle" content="1"/>
  77. <meta name="image:sidebar 1" content="But, i love you." />
  78.  
  79.  
  80. <meta name="text:link1" content="/" />
  81. <meta name="text:link1 Title" content="LINK" />
  82. <meta name="text:link2" content="/" />
  83. <meta name="text:link2 Title" content="LINK" />
  84. <meta name="text:link3" content="/" />
  85. <meta name="text:link3 Title" content="LINK" />
  86. <meta name="text:link4" content="/" />
  87. <meta name="text:link4 Title" content="LINK" />
  88. <meta name="text:link5" content="/" />
  89. <meta name="text:link5 Title" content="LINK" />
  90. <meta name="text:link6" content="/" />
  91. <meta name="text:link6 Title" content="LINK" />
  92. <meta name="text:link7" content="/" />
  93. <meta name="text:link7 Title" content="LINK" />
  94. <meta name="text:link8" content="/" />
  95. <meta name="text:link8 Title" content="LINK" />
  96. <meta name="text:link9" content="/" />
  97. <meta name="text:link9 Title" content="LINK" />
  98. <meta name="text:link10" content="/" />
  99. <meta name="text:link10 Title" content="LINK" />
  100. <script type="text/javascript">
  101.  
  102. // <![CDATA[
  103.  
  104. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  105.  
  106. var fgcolour="#656565"; // foreground colour
  107.  
  108. var hlcolour="#b5b5b5"; // highlight colour
  109.  
  110. var bgcolour="#FFFFFF"; // background colour
  111.  
  112. var glcolour="#f8f8f8"; // colour of glow around letters
  113.  
  114. var speed=66; // speed colours change, 1 second = 1000
  115.  
  116. var delay=50; // how long to wait between wipes
  117.  
  118. var alink="/"; // page to link text to (set to ="" for no link)
  119.  
  120.  
  121.  
  122. /****************************
  123.  
  124. *Multi-Wipe Neon Text Effect*
  125.  
  126. *(c)2003-12 mf2fm web-design*
  127.  
  128. *  http://www.mf2fm.com/rv  *
  129.  
  130. * DON'T EDIT BELOW THIS BOX *
  131.  
  132. ****************************/
  133.  
  134. var w_txt, w_txl;
  135.  
  136. var w_flp=bgcolour;
  137.  
  138. var w_sty=Math.floor(Math.random()*8);
  139.  
  140. var w_cnt=-1;
  141.  
  142. var wipes=new Array();
  143.  
  144. var wrand=new Array();
  145.  
  146. window.onload=function() { if (document.getElementById) {
  147.  
  148.  var i, wiper, wipei;
  149.  
  150.  wiper=document.getElementById("wipe");
  151.  
  152.  w_txt=wiper.firstChild.nodeValue;
  153.  
  154.  w_txl=w_txt.length;
  155.  
  156.  while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  157.  
  158.  for (i=0; i<w_txl; i++) {
  159.  
  160.    wipei=document.createElement("span");
  161.  
  162.    wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  163.  
  164.    wipes[i]=wipei.style;
  165.  
  166.    wipes[i].textShadow=glcolour+" 0px 0px 5px";
  167.  
  168.    wipes[i].color=fgcolour;
  169.  
  170.    wiper.appendChild(wipei);
  171.  
  172.  }
  173.  
  174.  if (alink) {
  175.  
  176.    wiper.style.cursor="pointer";
  177.  
  178.    wiper.onclick=function() { top.location.href=alink; }
  179.  
  180.  }
  181.  
  182.  for (i=0; i<w_txl; i++) wrand[i]=i;
  183.  
  184.  wiper=setInterval("randwipe()", speed);
  185.  
  186. }}
  187.  
  188.  
  189.  
  190. function c(i, shade) {
  191.  
  192.  if (shade==bgcolour) wipes[i].textShadow="none";
  193.  
  194.  else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  195.  
  196.  wipes[i].color=shade;
  197.  
  198. }
  199.  
  200.  
  201.  
  202. function randwipe() {
  203.  
  204.  var w_old;
  205.  
  206.  if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  207.  
  208.  else {
  209.  
  210.    w_cnt=-1;
  211.  
  212.    w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  213.  
  214.    w_old=w_sty;
  215.  
  216.    while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  217.  
  218.  }
  219.  
  220. }
  221.  
  222.  
  223.  
  224. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  225.  
  226.  
  227.  
  228. function wipe0() { // curtains
  229.  
  230.  if (w_cnt<Math.floor(w_txl/2)) {
  231.  
  232.    c(w_cnt, hlcolour);
  233.  
  234.    c(w_txl-w_cnt-1, hlcolour);
  235.  
  236.  }
  237.  
  238.  else if (w_cnt<w_txl) {
  239.  
  240.    c(w_cnt, w_flp);
  241.  
  242.    c(w_txl-w_cnt-1, w_flp);
  243.  
  244.  }
  245.  
  246. }
  247.  
  248.  
  249.  
  250. function wipe1() { // random
  251.  
  252.  var i, rand, temp;
  253.  
  254.  if (w_cnt==0) {
  255.  
  256.    for (i=0; i<w_txl; i++) {
  257.  
  258.      rand=Math.floor(Math.random()*w_txl);
  259.  
  260.      temp=wrand[i];
  261.  
  262.      wrand[i]=wrand[rand];
  263.  
  264.      wrand[rand]=temp;
  265.  
  266.    }
  267.  
  268.  }
  269.  
  270.  if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  271.  
  272.  if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  273.  
  274. }
  275.  
  276.  
  277.  
  278. function wipe2() { // forwards
  279.  
  280.  if (w_cnt<w_txl) c(w_cnt, hlcolour);
  281.  
  282.  if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  283.  
  284. }
  285.  
  286.  
  287.  
  288. function wipe3() { // backwards
  289.  
  290.  if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  291.  
  292.  if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  293.  
  294. }
  295.  
  296.  
  297.  
  298. function wipe4() { // searchlight
  299.  
  300.  if (w_cnt<w_txl) c(w_cnt, hlcolour);
  301.  
  302.  if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  303.  
  304.  if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  305.  
  306.  if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  307.  
  308.  if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  309.  
  310. }
  311.  
  312.  
  313.  
  314. function wipe5() { // fade
  315.  
  316.  var i;
  317.  
  318.  if (w_cnt<w_txl+3) {
  319.  
  320.    var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  321.  
  322.    var temp="#";
  323.  
  324.    for (i=1; i<6; i+=2) {
  325.  
  326.      var hex1=parseInt(start.substring(i,i+2),16);
  327.  
  328.      var hex2=parseInt(w_flp.substring(i,i+2),16);
  329.  
  330.      temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  331.  
  332.    }
  333.  
  334.    for (i=0; i<w_txl; i++) c(i, temp);
  335.  
  336.  }
  337.  
  338. }
  339.  
  340.  
  341.  
  342. function wipe6() { // flash
  343.  
  344.  var i;
  345.  
  346.  if (w_cnt<6*Math.floor(w_txl/6)+3) {
  347.  
  348.    if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  349.  
  350.    else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  351.  
  352.    else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  353.  
  354.  }
  355.  
  356. }
  357.  
  358.  
  359.  
  360. function wipe7() { // checkerboard
  361.  
  362.  var qtr=Math.floor(w_txl/4);
  363.  
  364.  if (w_cnt<qtr) {
  365.  
  366.    c(w_cnt, hlcolour);
  367.  
  368.    c(w_cnt+2*qtr, hlcolour);
  369.  
  370.  }
  371.  
  372.  else if (w_cnt<2*qtr) {
  373.  
  374.    c(w_cnt-qtr, w_flp);
  375.  
  376.    c(w_cnt+qtr, w_flp);
  377.  
  378.  }
  379.  
  380.  else if (w_cnt<3*qtr) {
  381.  
  382.    c(w_cnt-qtr, hlcolour);
  383.  
  384.    c(w_cnt+qtr, hlcolour);
  385.  
  386.  }
  387.  
  388.  else if (w_cnt<w_txl) {
  389.  
  390.    c(w_cnt-2*qtr, w_flp);
  391.  
  392.    c(w_cnt, w_flp);
  393.  
  394.  }
  395.  
  396. }
  397.  
  398. // ]]>
  399.  
  400. </script>
  401.  
  402.  
  403.  
  404.                       <title>{Title}</title>
  405.         <link rel="shortcut icon" href="{Favicon}">
  406.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  407.         {block:Description}
  408.   <meta name="description" content="{MetaDescription}" />
  409.         {/block:Description}
  410.  
  411.     <style type="text/css">
  412.  
  413.  
  414.  
  415. 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; }
  416.  
  417. a {color: {color:link}; text-decoration: none; text-transform: none;}
  418. a:hover {color: {color:link hover}; background-color: transparent; text-decoration: none;}
  419.  
  420. p {margin: 6px 0 0 0}
  421.  
  422. blockquote {margin: 5px 5px 5px 5px; border-left: 6px solid {color:background}; padding-left: 5px; }
  423. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  424. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  425. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  426.  
  427. blockquote img{max-width: 470px!important}
  428. blockquote blockquote img{max-width: 450px!important}
  429. blockquote blockquote blockquote img{max-width: 430px!important}
  430. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  431.  
  432.  
  433. #entry {float: left; margin-left: 450px; margin-top:25px;}
  434.  
  435. .posts {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: relative;}
  436.  
  437. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  438. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  439. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  440.  
  441. .image {text-align: center; border: 0px}
  442. .image img {max-width: 500px; margin-bottom: 2px }
  443.  
  444. .pquote {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  445. .pquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  446. .pquotesource a, a:hover{text-transform: none;}
  447.  
  448. .chat {line-height: 13px; list-style: none }
  449. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  450. .person1 {color: {color:text}; padding: 2px; }
  451. .person1 .label {font-weight: bold;  color:{color:text}}
  452. .person2 {color: {color:text}; padding: 2px;  }
  453. .person2 .label {font-weight: bold;  color:{color:text}}
  454.  
  455. .player {background-color: #000; text-align: left; display:block;}
  456.  
  457. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  458. .answer {padding: 2px}
  459. .answer img {max-width: 470px;}
  460.  
  461.  
  462. #info {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  463. #info a {font-size: 9px;}
  464.  
  465. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
  466. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  467.  
  468. #cap {width: 500px; margin-top: -2px;}
  469. .source {display: none;}
  470.  
  471. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  472. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  473. ol.notes li {background-color: {color:entry}; margin-bottom: 5px; padding: 5px; }
  474. .notes img{display: none; border:0px}
  475.  
  476. ::-webkit-scrollbar{width:5px;height:5px;}
  477. ::-webkit-scrollbar-button:start:decrement
  478. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  479. ::-webkit-scrollbar-track-piece{background-color: {color:post}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  480. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scrollbar};-webkit-border-radius:px;}
  481. ::-webkit-scrollbar-thumb:horizontal{width:0px; background-color: {color:sidebar};-webkit-border-radius:px;}
  482.  
  483.  
  484. #tumblr_controls{position: fixed!important}
  485. #tumblr_controls{position: fixed!important}
  486. #tumblr_controls{position: fixed!important}
  487. #tumblr_controls{position: fixed!important}
  488.  
  489. #foto{ float: left; margin-top: 84px; margin-left:102px; position: fixed; overflow: hidden; width: 241px; height: 360px; border: 4px solid #000000; z-index:100; background-color:#000;-webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in;}
  490.  
  491. #foto img {margin-top: 0px; margin-left: 0px; width: 241px; height: 360px;-webkit-transition: 0.5s ease-in; -moz-transition: 0.5s ease-in; transition: 0.5s ease-in;}
  492.  
  493. #foto img:hover {opacity: 1; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;opacity: 0.7;}
  494.  
  495.  
  496. #foto:hover #legal {margin-top: -228px; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in;}
  497.  
  498.  
  499. #legal {width: 241px; float: left; margin-top: 2px; padding: 0px; text-align: center; position: absolute; padding: 0px; z-index: 999; background-color: 000; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in; opacity: 0.7;}
  500.  
  501.  
  502.  
  503. .descricaone {font-size: 11px; letter-spacing: px; text-align: justify; font-family: consolas; color: #ffffff; margin-top: -3px; margin-left: 0px; padding: 5px; }
  504.  
  505.  
  506.  
  507.  
  508. #links {margin-top: 210px; margin-left: 20px; position:fixed; width: 20px; z-index:80}
  509.  
  510. #links a{font-size: 8px; color: #FFF ; background-color: #000; padding:2px 2px 2px 15px;  display:block; margin-bottom: 1px; width: 393px;  height: 7px; text-align: left; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; line-height: 6px; font-family: tinytots;text-transform: uppercase;}
  511.  
  512. #links a:hover{color: #000000; background-color: #FFF; letter-spacing: 0px; margin-left: -12px; }
  513.  
  514. #linha {margin-top:-410px; margin-left: -330px; -webkit-border-radius: 0px 0px 0px 0px; width:1481px; height: 7px; position: fixed; background-color:#F7F7F7; z-index:700; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; -webkit-transform: rotate(90deg);}
  515.  
  516. .annyta {position: absolute; margin-top: 5px; margin-left: 90px; width: 80px; background-color: #f8f8f8; color: #000000; padding: 5px; font-size: 9px; font-family: verdana; text-align: center; margin-bottom: 1px;position:fixed; z-index:3; }
  517.  
  518. #pages {text-align: center; font-family: tinytots; font-size: 8px; line-height: 12px; margin-left:175px;}
  519. #pages a {background: {color:background}; margin: 0 2px 0 0; padding: 2px 4px; color:{color:text}; background-color:{transparent}; text-decoration: none;  -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  520. #pages a:hover {background: {color:sidebar}; color: {color:text}; border: none;}
  521. #pages span.pagina_atual {background: {color:sidebar}; margin: 0 2px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  522. .page {clear: both; float: left; width: 265px; float: left; margin-bottom: 0px; background-color: {color:transparent}; margin-top: 0px; border-right: 2px solid {color:background}; margin-left:-185px;}
  523.  
  524.  
  525. #credit {text-align: center;font-size: 10px; font-family:tinytots; position:fixed;left:50px;top:490px;}
  526.  
  527. #credit1 {padding: 10px 0 5px 0;width:370px; }
  528.  
  529.  
  530. #ttl {margin-top: 50px; margin-left: 90px; width: 263px; background-color: transparent; color: #000; padding: 5px; font-size: 22px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: georgia;text-transform: ; height: 18px; border: 0px solid #000; -webkit-transform: rotate(0deg) }
  531.  
  532. #ttl a{font-size: 12px; color: {color:text sidbar}; }
  533. -webkit-transform: rotate(0deg)
  534.  
  535. </style>
  536.  
  537. <body>
  538.  
  539. <div id="entry">
  540.  
  541.  {block:Posts}
  542. <div class="posts">
  543.  
  544. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  545.  
  546. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  547.  
  548. {block:Photoset}{Photoset-500}{/block:Photoset}
  549.  
  550. {block:Quote}
  551. <div class="pquote"><big><big><big><b>“</big></big></big></b>{Quote}<big><big><big><b>”</big></big></big></b></div>
  552. {block:Source}<div class="pquotesource"> <b>-</b> {Source}</div>
  553. {/block:Source}
  554. {/block:Quote}
  555.  
  556. {block:Link}
  557. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  558. {block:Description}{Description}{/block:Description}
  559. {/block:Link}
  560.  
  561. {block:Chat}
  562. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  563. <div class="chat"><ul>{block:Lines}
  564. <li class="person{UserNumber}">{block:Label}
  565. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  566. {/block:Chat}
  567.  
  568. {block:Audio}
  569. <div class="player">{AudioPlayerBlack}</div>
  570. {block:Caption}{Caption}{/block:Caption}
  571. {/block:Audio}
  572.  
  573. {block:Video}{Video-500}{/block:Video}
  574.  
  575.  
  576. {block:Answer}
  577. <div id="asker"><b>{Asker} whispered:</b> {Question}</div>
  578. <div class="answer">{Answer}</div>
  579. {/block:Answer}
  580.  
  581.  
  582. <div id="cap">
  583. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  584. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  585. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  586.  
  587. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  588.       <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  589.         {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  590. {/block:ContentSource}</div></div>
  591. <br>
  592.  
  593.  
  594. <div id="info">
  595. <div class="tags">{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>{/block:IfShowTags}
  596. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} · <a href="{ReblogUrl}" target="_blank"><b>reblog sáporra</b></a>{/block:IndexPage}
  597. {block:RebloggedFrom}<br>originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} · via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  598. {/block:RebloggedFrom}
  599. </div>
  600. </div>{/block:Date}
  601.  
  602.  
  603.  {/block:Posts}
  604. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613. </div>
  614. </div>
  615. </div>
  616. </div>
  617.  
  618.  
  619.  
  620. </body>
  621.  
  622.  
  623. </div><div id="linha"></div>
  624. </div>
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631. <div id="links">
  632. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  633. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  634. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  635. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  636. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  637. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  638. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a>{/block:ifLink7}
  639. {block:ifLink8}<a href="{text:Link8}">{text:Link8 Title}</a>{/block:ifLink8}
  640. {block:ifLink9}<a href="{text:Link9}">{text:Link9 Title}</a>{/block:ifLink9}
  641. {block:ifLink10}<a href="{text:Link10}">{text:Link10 Title}</a>{/block:ifLink10}
  642. </div>
  643. </div></div></div>
  644.  
  645.  
  646.  
  647. <div id="ttl"><span id="wipe">{title}</span></div>
  648. </div></div>
  649. <div id="foto"><img src="{image:sidebar 1}"/>
  650.  
  651.  
  652.  
  653.  
  654. <div id="legal">
  655.  
  656. <div class="descricaone"><center>{description}</div></div>
  657.  
  658. <div class="annyta"><div class="page"><div id="pages">{block:JumpPagination length="3"}{block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}{block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}</div></div></div>
  659.  
  660.  
  661. <div id="credit">
  662.  
  663. <div id="credit1"><center>© THEME POR <a href="http://garoto-da-capa-preta.tumblr.com/">GDCP</a> | DON'T COPY <a href="http://omeuestranhomundo.tumblr.com">+</div>
  664.  
  665. </div>
  666.  
  667.  
  668.  
  669. </html>