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

ttheme 30

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 22.71 KB  |  hits: 2,708  |  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.    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.      
  3.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.      
  5.     <!  theme by i-ngenuidade !>
  6.      
  7.     <head>
  8.  
  9. <script type="text/javascript">
  10. //desabilita menu de opcoes ao clicar no botao direito
  11. function desabilitaMenu(e)
  12. {
  13. if (window.Event)
  14. {
  15. if (e.which == 2 || e.which == 3)
  16. return false;
  17. }
  18. else
  19. {
  20. event.cancelBubble = true
  21. event.returnValue = false;
  22. return false;
  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. //desabilita botao direito do mouse
  44. if ( window.Event )
  45. document.captureEvents(Event.MOUSEUP);
  46. if ( document.layers )
  47. document.captureEvents(Event.MOUSEDOWN);
  48.  
  49. document.oncontextmenu = desabilitaMenu;
  50. document.onmousedown = desabilitaBotaoDireito;
  51. document.onmouseup = desabilitaBotaoDireito;
  52. </script>
  53.  
  54. <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
  55.  
  56. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  57. <script type="text/javascript">
  58. function slideSwitch() {
  59.     var $active = $('#slideshow2 img.active');
  60.    
  61.         $active.addClass('last-active');
  62.        
  63.         // verifica se existe um próximo objeto na div #slideshow2, caso ele nao exista, retorna para o primeiro
  64.     var $next =  $active.next().length ? $active.next() : $('#slideshow2 img:first');
  65.  
  66.     $next.css({opacity: 0.0})
  67.         .addClass('active')
  68.         .animate({opacity: 1.0}, 1000, function() {
  69.             $active.removeClass('active last-active');
  70.         });
  71. }
  72.  
  73. $(function() {
  74.         //Executa a função a cada 2 segundos
  75.         setInterval( "slideSwitch()", 2500 );
  76. });
  77. </script>
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85. <script type="text/javascript">
  86.  
  87.  
  88. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  89.  
  90.  
  91.  
  92.  
  93. function tb8_makeArray(n){
  94.  
  95.  
  96. this.length = n;
  97.  
  98.  
  99. return this.length;
  100.  
  101.  
  102. }
  103.  
  104.  
  105.  
  106.  
  107. tb8_messages = new tb8_makeArray(1);
  108.  
  109.  
  110.  
  111.  
  112. tb8_messages[0] = "{Title}";
  113.  
  114.  
  115.  
  116.  
  117. tb8_rptType = 'infinite';
  118.  
  119.  
  120.  
  121.  
  122. tb8_rptNbr = 5;
  123.  
  124.  
  125.  
  126.  
  127. tb8_speed = 100;
  128.  
  129.  
  130.  
  131.  
  132. tb8_delay = 2000;
  133.  
  134.  
  135.  
  136.  
  137. var tb8_counter=1;
  138.  
  139.  
  140.  
  141.  
  142. var tb8_currMsg=0;
  143.  
  144.  
  145.  
  146.  
  147. var tb8_tekst ="";
  148.  
  149.  
  150.  
  151.  
  152. var tb8_i=0;
  153.  
  154.  
  155.  
  156.  
  157. var tb8_TID = null;
  158.  
  159.  
  160.  
  161.  
  162. function tb8_pisi(){
  163.  
  164.  
  165.  
  166.  
  167. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  168.  
  169.  
  170.  
  171.  
  172. document.title = tb8_tekst;
  173.  
  174.  
  175.  
  176.  
  177. tb8_sp=tb8_speed;
  178.  
  179.  
  180.  
  181.  
  182. tb8_i++;
  183.  
  184.  
  185.  
  186.  
  187. if (tb8_i==tb8_messages[tb8_currMsg].length){
  188.  
  189.  
  190.  
  191.  
  192. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  193.  
  194.  
  195.  
  196.  
  197. }
  198.  
  199.  
  200.  
  201.  
  202. if (tb8_currMsg == tb8_messages.length){
  203.  
  204.  
  205.  
  206.  
  207. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  208.  
  209.  
  210.  
  211.  
  212. clearTimeout(tb8_TID);
  213.  
  214.  
  215.  
  216.  
  217. return;
  218.  
  219.  
  220.  
  221.  
  222. }
  223.  
  224.  
  225.  
  226.  
  227. tb8_counter++;
  228.  
  229.  
  230.  
  231.  
  232. tb8_currMsg = 0;
  233.  
  234.  
  235. }
  236.  
  237.  
  238.  
  239.  
  240. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  241.  
  242.  
  243.  
  244.  
  245. }
  246.  
  247.  
  248.  
  249.  
  250. tb8_pisi()
  251.  
  252.  
  253.  
  254.  
  255. </script>
  256.  
  257.      
  258.      
  259.      <!-- DEFAULT VARIABLES -->
  260.     <meta name="color:background" content="#f8f8f8" />
  261.     <meta name="color:link" content="#000000" />
  262.     <meta name="color:linkhover" content="#696969" />
  263.     <meta name="color:text" content="#000000" />
  264.     <meta name="color:post" content="#ffffff" />
  265.     <meta name="color:border" content="#000000" />
  266.  <meta name="color:fundinho" content="#000000" />
  267. <meta name="color:bobsponja" content="#000000" />
  268.      
  269.      
  270.     <meta name="color:scroll" content="#000000" />
  271.     <meta name="color:ask" content="#ebebeb" />
  272.      
  273.      
  274.      
  275.     <meta name="color:bgdescription" content="#ebebeb" />
  276.      
  277.     <meta name="color:textdescription" content="#000" />
  278.     <meta name="color:links" content="#000" />
  279.     <meta name="color:cruz" content="#ccc" />
  280.     <meta name="color:linkbg" content="#ffffff" />
  281.     <meta name="color:linktext" content="#000" />
  282.     <meta name="color:linkbghover" content="#000" />
  283.     <meta name="color:linktexthover" content="#fff" />
  284.     <meta name="color:bgpage" content="#EEEEEE" />
  285. <meta name="color:xizinhodoslinks" content="#FF1493" />
  286.  
  287.      
  288.      
  289.     <meta name="image:background" content="" />
  290.     <meta name="image:fotinha" content="http://24.media.tumblr.com/tumblr_m506qgl9Oi1rojnc3o2_250.jpg"/>
  291.      
  292.     <meta name="font:text" content="verdana" />
  293.     <meta name="font:title" content="georgia" />
  294.    
  295.      <meta name="text:titulo" content="um frase linda feat fofa aqui " />
  296.    
  297.     <meta name="text:link1" content="/" />
  298.     <meta name="text:Link1 Title" content="link" />
  299.     <meta name="text:Link2" content="/" />
  300.     <meta name="text:Link2 Title" content="link" />
  301.     <meta name="text:Link3" content="/" />
  302.     <meta name="text:Link3 Title" content="link" />
  303.     <meta name="text:Link4" content="/" />
  304.     <meta name="text:Link4 Title" content="link" />
  305.     <meta name="text:Link5" content="/" />
  306.     <meta name="text:Link5 Title" content="link" />
  307.     <meta name="text:Link6" content="/" />
  308.     <meta name="text:Link6 Title" content="link" />
  309.  <meta name="text:Link7" content="/" />
  310.     <meta name="text:Link7 Title" content="link" />
  311.      
  312.      
  313.      
  314.        
  315.      
  316.                         <title>{Title}</title>
  317.     <link rel="shortcut icon" href="{Favicon}">
  318.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  319.     {block:Description}
  320.     <meta name="description" content="{MetaDescription}" />
  321.     {/block:Description}
  322.  
  323.      
  324.         <style type="text/css">
  325.      
  326.      
  327.     body {background-color: {color:background}; font-family: georgia; color: {color:text}; text-align: center; font-size: 9px; background-image:url('{image:background}'); background-attachment: fixed; }
  328.      
  329.     a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  330.      
  331.     p {margin: 6px 0 0 0}
  332.      
  333.     blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  334.     blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  335.     blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  336.     blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  337.      
  338.     blockquote img{max-width: 470px!important}
  339.     blockquote blockquote img{max-width: 450px!important}
  340.     blockquote blockquote blockquote img{max-width: 430px!important}
  341.     blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  342.      
  343.     #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 935px; position:fixed; }
  344.      
  345.     #entries{float: left; margin-left:345px; margin-top: 40px; position: relative; border-left: 1px solid {color:background} }
  346.      
  347.     #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  348.      
  349.      
  350.      
  351.     .danpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 5px; text-align: justify; font-family: tahoma; font-size: 11px;}
  352.      
  353.     h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  354.     h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  355.     h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  356.      
  357.     .image {text-align: center; border: 0px}
  358.     .image img {max-width: 500px; margin-bottom: 2px }
  359.      
  360.     .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  361.     .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  362.     .oiqqtts a, a:hover{text-transform: none;}
  363.      
  364.     .chat {line-height: 13px; list-style: none }
  365.     .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  366.     .person1 {color: {color:text}; padding: 2px; }
  367.     .person1 .label {font-weight: bold;  color:{color:text}}
  368.     .person2 {color: {color:text}; padding: 2px;  }
  369.     .person2 .label {font-weight: bold;  color:{color:text}}
  370.      
  371.     .player {background-color: #000; text-align: left; display:block;}
  372.      
  373.     #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  374.     .answer {padding: 2px}
  375.     .answer img {max-width: 470px;}
  376.      
  377.      
  378.     #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  379.     #oidata a {font-size: 9px;}
  380.      
  381.     .tags {color: {color:text};  font-size: 9px; font-family: {font:text};  display: inline; list-style: none; text-transform: lowercase;}
  382.     .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  383.      
  384.     #cap {width: 500px; margin-top: -2px;}
  385.     .source {display: none;}
  386.      
  387.     .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  388.     ol.notes {list-style: none;  margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  389.     ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  390.     .notes img{display: none; border:0px}
  391.      
  392.     .question {
  393.     color: {color:text};
  394.     font-size: 9px;
  395.     font-weight: normal;
  396.     font-family: {font:body};
  397.     line-height:95%;
  398.     background: {color:ask};
  399.     margin: 0 0 10px 0;
  400.     padding: 10px 15px;
  401.     position: relative;}
  402.      
  403.     .questionarrow {
  404.     width: 13px;
  405.     height: 7px;
  406.     font-size:30px;
  407.     font-family: verdana;
  408.     position: absolute;
  409.     color: {color:ask};
  410.     bottom: -3.5px;
  411.     left: 240px;}
  412.      
  413.      
  414.     .asker {width:500px; text-align:center; text-transform:uppercase; color:{color:text};}
  415.     .asker a {color: {color:text};}
  416.     .asker img {float:left; margin-left:220px; vertical-align:top; margin-right:3px; max-height:15px;}
  417.      
  418.     .answer {color: {color:text};}
  419.      
  420.      
  421.     .fj {font-size: 130px; font-family: arial; line-height: 95px; margin-left: 5px; color: {color: titulos posts}; opacity:0.15; -moz-opacity: 0.15; filter: alpha(opacity=15);}
  422.     .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  423.      
  424.     @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  425.  
  426. #barra2 {width:662px; height:12px; margin-top:-5px; margin-left: 205px; background-color: {color:bobsponja}; position:fixed; padding:4px; font-size: 11px; font-family: tahoma; text-transform: lowercase; color: {color:post}; text-align: right;}
  427.  
  428.    
  429.     #sideimg {display: block; margin-left: 205px; float: right; margin-top: 20px; width: auto; height: auto; background-color: transparent; position: fixed; z-index:30;}
  430.     .simg1 img {width: 135px; height: 160px; margin-bottom: 2px; border: 3px solid {color:fundinho};}
  431.      
  432.      #pag {width: 15px; padding:1px; background-color: {color:bgpage}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  433.  
  434. #cruz {position: fixed; margin: 200px 0px 0px 60px; }
  435.  
  436. #acruz {width: 39px; position: absolute;  margin-left: -92px; margin-top: -365px; color: {color:cruz};  font-size: 60px; -webkit-transform: rotate(-20deg);}
  437. #acruz:hover { -webkit-transform: rotate(0deg);}
  438.  
  439. #home {width: 24px; position: fixed; float: left; font-size: 9px; font-family: tahoma; color: {color:cruz}; padding: 5px; height: 24px; margin-left: 110px; rotation: 10px; margin-top: 280px; margin-top: 185px; -moz-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; z-index: 20;}
  440.  
  441.  
  442. #pgs {text-align: center; font-family: verdana; font-size: 8px; line-height: 15px; -moz-border-bottom-left-radius: 10px; border-top-left-radius: 10px; z-index: 1}
  443. #pgs a {background: #000; margin: 30 0px 0 0; padding: 2px 4px; color: {color:background}; text-decoration: none;}
  444. #pgs a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  445. #pgs span.pagina_atual {background: {color:sidebar};  padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  446. .pg { position:fixed !important; clear: both; float: left; margin-top: 80px; margin-left: 20px; width: 207px; height: 15; font-size: 9px; padding: 2px;  background-color: {color:sidebar}; -moz-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; -moz-border-bottom-right-radius: 10px; border-bottom-right-radius: 10px; z-index: 1;}
  447.  
  448. #meus{text-align: justify; font-size: 9px; font-family: calibri; position: fixed; margin-left: 205px; width:130px; height: 35px; background-color: transparent; color: #999999; padding: 2px; margin-top: 185px; background-attachment: fixed; border-left: 0px solid ; padding:5px;z-index: 830;}
  449.  
  450. #links {text-align: center; margin-top:1px; margin-bottom: -2px; font-family: tahoma; font-size: 10px; color: #999999; letter-spacing: 0px; text-transform: none; -webkit-transition: 0.4s ease-in;-moz-transition: 0.4s ease-in; transition: 0.4s ease-in; }
  451.  
  452.      
  453.     .li {opacity: 1}
  454.     .li2 {opacity: 0.8}
  455.     .li3 {opacity: 0.6}
  456.     .li4 {opacity: 0.8}
  457.     .li5 {opacity: 1}
  458.      
  459.     #linkslindos {margin-top: 100px; margin-left: 87px; position:fixed; width: auto; }
  460.      
  461.     #linkslindos a{text-transform: uppercase; display: block;  font-family: tinytots; transition: all 0.5s ease-out; -o-transition-transition:  all 0.5s ease-out; -webkit-transition: all 0.4s ease-out; background-color: {color:linkbg}; -moz-transition: all 0.4s ease-out; width: 150px; text-align: left; font-size: 8px; height:14px; margin: 1px 0 0px 0; color:{color:linktext}; margin-left: 3px; line-height:10px; }
  462.      
  463.     #linkslindos a:hover{color: {color:linktexthover}; margin-left:15px; }
  464.  
  465. #linkslindos1 {margin-top: 140px; margin-left: 120px; position:fixed; width: auto; z-index:100;}
  466.      
  467.     #linkslindos1 a{text-transform: uppercase; display: block;  font-family: tinytots; transition: all 0.5s ease-out; -o-transition-transition:  all 0.5s ease-out; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; width: 100px; text-align: center; font-size: 8px; height:15px; margin: 1px 0 0px 0; color:{color:linktext}; margin-left: 3px; line-height:10px;}
  468.      
  469.     #linkslindos1 a:hover{color: {color:linktexthover}; }
  470.      
  471.     #faixa {margin-top: 50px; margin-left: -10px; position: fixed; background-color: {color:bobsponja}; height: 140px; width:354px; }
  472.      
  473.   #faixa2 {margin-top: -50px; margin-left: 50px; position: fixed; background-color: {color:bobsponja}; height: 2000px; width:30px; }
  474.  
  475. @font-face {
  476. font-family: 'Give You Glory';
  477. font-style: normal;
  478. font-weight: norAmal;
  479. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  480. }
  481.  
  482.  
  483. #title {width: 215px; height: 55px; position: fixed; background-color:transparent; margin-left: 120px; margin-top: 55px; }
  484. .optitle{font-family: Give You Glory; font-size: 15px; font-style: none;
  485. line-height: 15px; font-weight: none; color: #777777; margin-top: 10px; margin-left: -5px;   text-transform: none; letter-spacing: 0px}
  486.  
  487.      
  488.  
  489. #textv {width:190px; height: 100; margin-left:70px; margin-top:100px; position:fixed; overflow:hidden; background-color: {color:bgdescription}; color: {color:textdescription}; font-family: tahoma; font-size:10px;text-transform: lowercase; border-left:0px solid; border-right:0px solid; padding:3px; width: 120px; height:60px; }
  490.  
  491.  
  492. #sdbarsi {font-family: verdana; color: {color:textdescription}; font-size:7px; padding: 3px 3px 4px 3px; width: 110px; height: 7px; margin-top: 400px; margin-left: 220px; font-family: arial; z-index: 200; position: fixed; text-align: center; text-transform: uppercase; letter-spacing: 1px}
  493. #sdbarsi a{font-family: arial; font-size: 8px; letter-spacing: 1px}
  494.  
  495. #credit {width: 158px; margin-left: 50px; height: 11px; margin-top: 170px; float:left; text-align: center; font-size: 16px; position:fixed; padding: 4px;}
  496.  
  497. .credittex {margin-top: -2px; letter-spacing: 0px; text-align: center; font-family: tahoma; font-size: 10px; color:#000; }
  498. .credittex a{color:{color:link};}
  499.      
  500.      
  501.    .credit {
  502. position:fixed !important;
  503. margin-left: 1028px;
  504. margin-top: 1000px;
  505. margin-bottom: -5px;
  506. font-size: 9px;
  507. width: 49px;
  508. height: 15px;
  509. padding: 1px 3px 3px 2px;
  510. font-family: verdana;
  511. color: #000000;
  512. text-align: center;
  513. background-color: {color:sidebar};
  514. -webkit-transition: all 0.5s ease;
  515. }
  516.      
  517.     ::-webkit-scrollbar{width:5px;height:5px;}
  518.     ::-webkit-scrollbar-button:start:decrement
  519.     ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  520.     ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  521.     ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  522.     ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  523.      
  524.     #tumblr_controls{position: fixed!important}
  525.     #tumblr_controls{position: fixed!important}
  526.     #tumblr_controls{position: fixed!important}
  527.     #tumblr_controls{position: fixed!important}
  528.      
  529.      
  530.      
  531.      
  532.     </style>
  533.      
  534.     </head>
  535.      
  536.      
  537.     <body>
  538.      
  539.  
  540.     <div id="tudo">
  541.     <div id="msd">
  542.     </div>
  543.  
  544. <div id="barra2">{text:titulo}</div>
  545.    <div id="barra3"></div>
  546.     <div id="sideimg"><div class="simg1">
  547.     <img src="{image:fotinha}">
  548.     </div></div>
  549.     <div id="meus">
  550. <div id="links">
  551. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1} <font color="{color:xizinhodoslinks}">.</font>
  552. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a> {/block:ifLink2}<font color="{color:xizinhodoslinks}">.</font>
  553. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a> {/block:ifLink3}<font color="{color:xizinhodoslinks}">.</font>
  554. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a> {/block:ifLink4}<font color="{color:xizinhodoslinks}">.</font>
  555. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a> {/block:ifLink5}<font color="{color:xizinhodoslinks}">.</font>
  556. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a> {/block:ifLink6}<font color="{color:xizinhodoslinks}">.</font>
  557. {block:ifLink7}<a href="{text:Link7}">{text:Link7 Title}</a> {/block:ifLink7}<font color="{color:xizinhodoslinks}">.</font>
  558.  
  559. </div></div>
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568. <div id="textv">{description}</div>
  569.  
  570.  
  571.      
  572. <div class="pg"><div id="pgs"> <center>
  573. {block:JumpPagination length="2"}
  574. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  575. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  576. {/block:JumpPagination}
  577. </center></div></div>
  578.  
  579.  
  580.      
  581. <div id="cruz">
  582. <div id="acruz">†</div>
  583.  
  584. </div>
  585.  
  586.    
  587.  
  588. <div id="credit">
  589. <div class="credittex">  <a href="http://i-ngenuidade.tumblr.com">theme</b></a> <font color="{color:xizinhodoslinks}"> +</font><a href="http://amor-compulsivo.tumblr.com/"> inspired </a></b></div>
  590. </div>
  591.  
  592.     </a></div>
  593.     <div id="entries">
  594.      {block:Posts}
  595.     <div class="danpost">
  596.      
  597.     {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  598.      
  599.     {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  600.      
  601.     {block:Photoset}{Photoset-500}{/block:Photoset}
  602.      
  603.     {block:quote}
  604.      
  605.     <o class="fj">“</o><div class="jf">{quote}</div><br>
  606.     <div class="source">{block:Source}<strong>{Source}</strong>{/block:Source}</div>
  607.      
  608.     {/block:quote}
  609.      
  610.     {block:Link}
  611.     <h1><a href="{URL}" {Target}>{Name}</a></h1>
  612.     {block:Description}{Description}{/block:Description}
  613.     {/block:Link}
  614.      
  615.     {block:Chat}
  616.     {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  617.     <div class="chat"><ul>{block:Lines}
  618.     <li class="person{UserNumber}">{block:Label}
  619.     <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  620.     {/block:Chat}
  621.      
  622.     {block:Audio}
  623.     <div class="player">{AudioPlayerBlack}</div>
  624.     {block:Caption}{Caption}{/block:Caption}
  625.     {/block:Audio}
  626.      
  627.     {block:Video}{Video-500}{/block:Video}
  628.      
  629.      
  630.     {block:Answer}
  631.     <div class="question">
  632.     <div class="questionarrow">▼</div>
  633.     {Question}
  634.     </div>
  635.     <div class="asker">{Asker}</div>
  636.     <div class="answer">{Answer}</div>
  637.     {/block:answer}
  638.      
  639.     <div id="cap">
  640.     {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  641.     {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  642.     {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  643.      
  644.     <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  645.           <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  646.             {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  647.     {/block:ContentSource}</div></div>
  648.     <br>
  649.      
  650.      
  651.     <div id="oidata">
  652.     {block:Date}<div class="tags"><b>in(direct):</b> {block:HasTags}{block:Tags}<font color="{color:tags}"># </font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  653.  <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} . <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage}  <font color="{color:xizinhodoslinks}">♥</font>. <a href=http://twitter.com/home?status={block:Title}{Title}{/block:Title}{block:Caption}{PlainTextCaption}{/block:Caption} {ShortURL}”><b>tweet</b></a>  .                                                       <a href="{ReblogURL}" target="_blank"><img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title=""> reblog this </a>{/block:IndexPage}
  654. {block:RebloggedFrom}<br>source: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} . via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  655. {/block:RebloggedFrom}
  656. </div>
  657. </div>{/block:Date}
  658.  
  659.  
  660.  {/block:Posts}
  661. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  662.      
  663.      
  664.      
  665.      
  666.      
  667.      
  668.      
  669.      
  670.     </div>
  671.     </div>
  672.     </div>
  673.     </div>
  674.     </div>
  675.     </div>
  676.      
  677.     </body>
  678.     </html>