Advertisement
Stephanymafia

Theme 17

Jul 22nd, 2012
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 22.83 KB | None | 0 0
  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 MAFIA !>
  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:scroll" content="#000000" />
  267. <meta name="color:ask" content="#ebebeb" />
  268. <meta name="color:links" content="#000" />
  269. <meta name="color:coisinha" content="#000" />
  270. <meta name="color:sidebar" content="#000000" />
  271. <meta name="color:bglinks" content="#000000" />
  272. <meta name="color:links" content="#000000" />
  273. <meta name="color:linkshover" content="#ffffff" />
  274. <meta name="color:bglinkshover1" content="#000000" />
  275. <meta name="color:bglinkshover2" content="#000000" />
  276. <meta name="color:bglinkshover3" content="#000000" />
  277. <meta name="color:bglinkshover4" content="#000000" />
  278. <meta name="color:bglinkshover5" content="#000000" />
  279.  
  280. <meta name="image:background" content="" />
  281. <meta name="image:sidebar" content=""/>
  282.  
  283. <meta name="text:frase" content="1, 2 ou 3 Palavras!" />  
  284. <meta name="text:frase2" content="1, 2 ou 3 Palavras!" />  
  285.  
  286. <meta name="text:Linktwitter" content="/" />
  287. <meta name="text:Linkface" content="/" />
  288. <meta name="text:Linkinstagram" content="/" />
  289. <meta name="text:Link1" content="/" />
  290. <meta name="text:Link1 Title" content="link" />
  291. <meta name="text:Link2" content="/ask" />
  292. <meta name="text:Link2 Title" content="link" />
  293. <meta name="text:Link3" content="/" />
  294. <meta name="text:Link3 Title" content="link" />
  295. <meta name="text:Link4" content="/" />
  296. <meta name="text:Link4 Title" content="link" />  
  297. <meta name="text:Link5" content="/" />
  298. <meta name="text:Link5 Title" content="link" />  
  299. <meta name="text:Link6" content="/" />
  300. <meta name="text:Link6 Title" content="link" />
  301. <meta name="text:Link7" content="/ask" />
  302. <meta name="text:Link7 Title" content="link" />
  303. <meta name="text:Link8" content="/" />
  304. <meta name="text:Link8 Title" content="link" />
  305. <meta name="text:Link9" content="/" />
  306. <meta name="text:Link9 Title" content="link" />  
  307. <meta name="text:Link10" content="/" />
  308. <meta name="text:Link10 Title" content="link" />  
  309.      
  310.        
  311.      
  312.                         <title>{Title}</title>
  313.     <link rel="shortcut icon" href="{Favicon}">
  314.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  315.     {block:Description}
  316.     <meta name="description" content="{MetaDescription}" />
  317.     {/block:Description}
  318.  
  319.      
  320.         <style type="text/css">
  321.      
  322.      
  323.     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; }
  324.      
  325.     a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  326.      
  327.     p {margin: 6px 0 0 0}
  328.      
  329.     blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  330.     blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  331.     blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  332.     blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  333.      
  334.     blockquote img{max-width: 470px!important}
  335.     blockquote blockquote img{max-width: 450px!important}
  336.     blockquote blockquote blockquote img{max-width: 430px!important}
  337.     blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  338.      
  339.     #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 900px; position:fixed; }
  340.      
  341.     #entries{float: left; margin-left:320px; margin-top: 10px; position: relative; border-left: 1px solid {color:background} }
  342.      
  343.     #msd {width: 100px; height: 100px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  344.      
  345.      
  346.      
  347.     .danpost {width: 400px; background-color: {color:post}; padding: 15px; margin-bottom: 5px; text-align: justify; font-family: tahoma; font-size: 11px;}
  348.      
  349.     h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  350.     h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  351.     h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  352.      
  353.     .image {text-align: center; border: 0px}
  354.     .image img {max-width: 400px; margin-bottom: 2px }
  355.      
  356.     .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  357.     .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  358.     .oiqqtts a, a:hover{text-transform: none;}
  359.      
  360.     .chat {line-height: 13px; list-style: none }
  361.     .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  362.     .person1 {color: {color:text}; padding: 2px; }
  363.     .person1 .label {font-weight: bold;  color:{color:text}}
  364.     .person2 {color: {color:text}; padding: 2px;  }
  365.     .person2 .label {font-weight: bold;  color:{color:text}}
  366.      
  367.     .player {background-color: #000; text-align: left; display:block;}
  368.      
  369.     #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  370.     .answer {padding: 2px}
  371.     .answer img {max-width: 400px;}
  372.      
  373.      
  374.     #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  375.     #oidata a {font-size: 9px;}
  376.      
  377.     .tags {color: {color:text};  font-size: 9px; font-family: {font:text};  display: inline; list-style: none; text-transform: lowercase;}
  378.     .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  379.      
  380.     #cap {width: 400px; margin-top: -2px;}
  381.     .source {display: none;}
  382.      
  383.     .notes {width: 400px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  384.     ol.notes {list-style: none;  margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  385.     ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  386.     .notes img{display: none; border:0px}
  387.      
  388.     .question {
  389.     color: {color:text};
  390.     font-size: 9px;
  391.     font-weight: normal;
  392.     font-family: {font:body};
  393.     line-height:95%;
  394.     background: {color:ask};
  395.     margin: 0 0 10px 0;
  396.     padding: 10px 15px;
  397.     position: relative;}
  398.      
  399.     .questionarrow {
  400.     width: 13px;
  401.     height: 7px;
  402.     font-size:30px;
  403.     font-family: verdana;
  404.     position: absolute;
  405.     color: {color:ask};
  406.     bottom: -3.5px;
  407.     left: 240px;}
  408.      
  409.      
  410.     .asker {width:400px; text-align:center; text-transform:uppercase; color:{color:text};}
  411.     .asker a {color: {color:text};}
  412.     .asker img {float:left; margin-left:220px; vertical-align:top; margin-right:3px; max-height:15px;}
  413.      
  414.     .answer {color: {color:text};}
  415.      
  416.      
  417.     .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);}
  418.     .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  419.      
  420.     @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  421.    
  422.  
  423. #house {width: 226px; height: 40px; background-color:{color:sidebar} ; color:{color:text}; font-family:'Larissa Regular'; font-size: 24px; margin-top: 12px; margin-left: 92px; position: fixed; text-transform: none; line-height: 33px; line-height: 36px; z-index: 90000;}
  424.  
  425.  
  426. @font-face {font-family:Larissa Regular; src: url('http://static.tumblr.com/ojza5a9/eVUm7b69l/larissa_regular.ttf');}
  427.  
  428.  
  429. #ninhaft {float: left; margin-top: 7px; margin-left: 92px; position: fixed; padding: 0px; border: 3px solid {color:sidebar};width: 220px; height:300px;}
  430. #ninhaft {margin-top: 52px; margin-bottom: 0px;opacity:8;}
  431. #ninhaft img{width: 230px; margin-left: 0px; z-index: 1; opacity:0.6}
  432. #ninhafoto {margin-top: 5px; margin-left:0px; margin-bottom: 0px;}
  433. #ninhafoto img{width: 220px; height: 300px; margin-left: 0px;margin-top: -5px;}
  434. #ninhafoto img:hover{ z-index: 1; opacity:0.8}
  435.  
  436. #sdescri {text-align: justify; margin-top:358px; margin-left: 180px;  overflow: hidden; -webkit-border-radius: 0px 0px 0px 0px; font-size: 9px; font-family: verdana; position: fixed; color: {color:text}; padding: 10px;  background-attachment: fixed; width:118px; height: 95px; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; letter-spacing: 1px; font-style: normal; line-height: 8px; text-transform: normal; -webkit-transform: rotate(360deg); background-color: {color:sidebar};}
  437. #desc{font-size: 9px; font-family: georgia; letter-spacing: 0px; text-transform: normal; line-height: 9px; margin-left:-5px;}
  438.  
  439. #twitter {width: 22px; position: fixed; background-color: {color:sidebar}; font-size: 9px; font-family: tahoma; padding: 5px; height: 22px; margin-left: 121px; margin-top: 358px; }
  440.  
  441. #facebook {width: 22px; position: fixed; background-color: {color:sidebar}; font-size: 9px; font-family: tahoma; padding: 5px; height: 22px; margin-left: 152px; margin-top: 358px; }
  442.  
  443. #instagram {width: 22px; position: fixed; background-color: {color:sidebar}; font-size: 9px; font-family: tahoma; padding: 5px; height: 22px; margin-left: 92px; margin-top: 358px; }
  444.  
  445. #bru2 {width: 88px; height: 88px; float: left; margin-left:92px; margin-top: 388px; padding: 0px; text-align: center; position: fixed; -webkit-transition: all 2s ease-out; -moz-transition: all 2s ease-out; background-color: {color:sidebar};}
  446. #bru2 a {float: left; margin-left: 2px; font-family: tinytots; font-size: 8px; text-align: center; margin-top: 2px; width: 85px; height: 15px; background-color: {color:bglinks}; color:{color:links}; line-height: 15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 0px; opacity:1; text-transform: uppercase;}
  447. #bru2  a:hover{text-align: center; background-color: {color:bglinkshover}; color:{color:linkshover}; letter-spacing: 2px; box-shadow: 0px 1px 20px rgba(0,0,0,0.35); }
  448.  
  449. #bru3  a:hover{background-color: {color:bglinkshover5};}
  450. #bru4  a:hover{background-color: {color:bglinkshover1};}
  451. #bru5  a:hover{background-color: {color:bglinkshover2};}
  452. #bru6  a:hover{background-color: {color:bglinkshover3};}
  453. #bru7  a:hover{background-color: {color:bglinkshover4};}
  454.  
  455. #shitt {font-size:15px; font-style: normal; text-transform:none; text-align:center; font-family:'Homenaje'; color: {color:text}; width:220px; letter-spacing:0px; margin-top:9px; line-height:15px;margin-bottom:6px;position:fixed; opacity: 1; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; text-shadow: 2px  0px  #df8181, -2px 0px #54d2cb;}
  456.  
  457. #ttle:hover #shitt{opacity:0;-moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out;}
  458.  
  459. #ttle {position: fixed; margin-left:95px; top:280px; width: 220px; height:33px;background-color:{color:sidebar}; opacity: 0.7; overflow:hidden;z-index:10;}
  460.  
  461. #ttle:hover .linkks{opacity:3;-moz-transition: all 0.6s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; -webkit-transition: all 0.6s ease-in-out; width: 145px;}
  462.  
  463. .linkks{padding: 0px; width: 500px; line-height: 31px; background: ; text-align: center; position: relative; margin-top:1px; margin-left: 35px; opacity:0;-moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; -webkit-transition: all 1s ease-in-out; font-family: 'Homenaje'; font-size: 10px;}
  464.  
  465. .linkks a { opacity: 4; -webkit-transition: all 0.6s ease-in-out;}
  466.  
  467. .linkks a:hover {opacity: 0.7; text-decoration: underline; text-shadow: 2px  0px  #df8181, -2px 0px #54d2cb; -webkit-transition: all 1s ease-in-out;}
  468.  
  469.  
  470. #credito {float: left; margin-top: 473px; margin-left: 158px; width: 150px; height: 10px; background-color: {color:sidebar}; color: {color:Link}; padding: 5px; font-size: 9px; font-family: Verdana, Geneva, Tahoma,
  471.  
  472. sans-serif; text-align: center; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px;
  473.  
  474. -webkit-border-bottom-left-radius:0px; position:fixed; opacity: 1.0;}
  475.  
  476. #credito a{font-size: 9px; color:{color:Link};}
  477.  
  478.  
  479.  
  480.      
  481.     ::-webkit-scrollbar{width:5px;height:5px;}
  482.     ::-webkit-scrollbar-button:start:decrement
  483.     ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  484.     ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  485.     ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  486.     ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  487.      
  488.     #tumblr_controls{position: fixed!important}
  489.     #tumblr_controls{position: fixed!important}
  490.     #tumblr_controls{position: fixed!important}
  491.     #tumblr_controls{position: fixed!important}
  492.  
  493. #sbar5 {width:60px; height: 14px; margin-left: 92px; margin-top: 473px; position:fixed;  overflow:hidden; background-color:{color:sidebar}; border-left:0px solid; border-right:0px solid; padding:3px }
  494.  
  495. #paginacaoml { opacity:0.4;font-family: arial sans; font-size:9px; font-weight: none; line-height: 15px; text-shadow: 0 0px 0px #000;}
  496. #paginacaoml a {background: {color:sidebar}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; text-decoration: none;}
  497. #paginacaoml a:hover {background: {color:sidebar};}
  498. #paginacaoml span.pagina_atual {background: #; margin: 0 1px 0 0; padding: 1px 3px; color:{color:text}; text-decoration: none;}
  499. #paginacaoml span.info {bac    
  500.      
  501.      
  502. </style>
  503.      
  504. </head>
  505.      
  506. <body>
  507.  
  508.  
  509.  
  510. </a></div>
  511. <div id="sdescri"><center></center><div id="desc">{description}</div></div>
  512.  
  513. </div>
  514. <div id="ninhaft"><div id="ninhafoto">
  515. <img src="{image:sidebar}"/>
  516. </div></div>
  517. </div>
  518.  
  519. <div id="ttle">
  520. <div id="shitt">{text:frase2}</div>
  521. <ul class="linkks">
  522. <a href="{text:Link1}" title="{text:subtitle1}">{text:Link1 Title}</a> -
  523. <a href="{text:Link2}" title="{text:subtitle2}">{text:Link2 Title}</a> -
  524. <a href="{text:Link3}" title="{text:subtitle3}">{text:Link3 Title}</a> -
  525. <a href="{text:Link4}" title="{text:subtitle4}">{text:Link4 Title}</a> -
  526. <a href="{text:Link5}" title="{text:subtitle5}">{text:Link5 Title}</a>
  527. </div></ul>
  528. </div>
  529.  
  530. <div id="bru2">
  531. <div id="bru3"><a href="{text:Link6}">{text:Link6 Title}</a></div>
  532. <div id="bru6"><a href="{text:Link7}">{text:Link7 Title}</a></div>
  533. <div id="bru7"><a href="{text:Link8}">{text:Link8 Title}</a></div>
  534. <div id="bru4"><a href="{text:Link9}">{text:Link9 Title}</a></div>
  535. <div id="bru5"><a href="{text:Link10}">{text:Link10 Title}</a></div>
  536. </div>
  537.  
  538.  </div>
  539.  
  540.      
  541. <div id="twitter"><a href="{text:linktwitter}"><center><img src="http://static.tumblr.com/ojza5a9/9Jwm79nze/twitter.png" title="twitter" width=20px"></a></center></div>
  542.  
  543. <div id="facebook"><a href="{text:linkface}"><center><img src="http://static.tumblr.com/ojza5a9/r2Cm79o04/facebook.png" title="facebook" width=20px"></a></center></div>
  544.  
  545. <div id="instagram"><a href="{text:linkinstagram}"><center><img src="http://static.tumblr.com/ojza5a9/sEWm79o1q/instagram.jpg" title="instagram" width=20px"></a></center></div>
  546.  
  547.  
  548. <div id="house">{text:frase}</div>
  549. </div>
  550.  
  551. <div id="credito">theme by <a href="http://mafiadobobesponja.tumblr.com/"><b>Mafia</b></a> | <a href="http://i-ngenuidade.tumblr.com/"><b>base</b></a><a href="http://hyliar.tumblr.com/"> +</a> <a href="http://hugm-e.tumblr.com/">+</a></div>
  552.  
  553. <div id="sbar5"><center><div id="paginacaoml"><span style="font-weight: normal;">{block:Pagination}{block:JumpPagination length="2"}{block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}{block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{/block:Pagination}</center></div></div>
  554. </div>
  555.  
  556.  
  557.     </a></div>
  558.     <div id="entries">
  559.      {block:Posts}
  560.     <div class="danpost">
  561.      
  562.     {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  563.      
  564.     {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-400}"></div>{LinkCloseTag}{/block:Photo}
  565.      
  566.     {block:Photoset}{Photoset-400}{/block:Photoset}
  567.      
  568.     {block:quote}
  569.      
  570.     <o class="fj"></o><div class="jf">{quote}</div><br>
  571.     <div class="source">{block:Source}<strong>{Source}</strong>{/block:Source}</div>
  572.      
  573.     {/block:quote}
  574.      
  575.     {block:Link}
  576.     <h1><a href="{URL}" {Target}>{Name}</a></h1>
  577.     {block:Description}{Description}{/block:Description}
  578.     {/block:Link}
  579.      
  580.     {block:Chat}
  581.     {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  582.     <div class="chat"><ul>{block:Lines}
  583.     <li class="person{UserNumber}">{block:Label}
  584.     <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  585.     {/block:Chat}
  586.      
  587.     {block:Audio}
  588.     <div class="player">{AudioPlayerBlack}</div>
  589.     {block:Caption}{Caption}{/block:Caption}
  590.     {/block:Audio}
  591.      
  592.     {block:Video}{Video-500}{/block:Video}
  593.      
  594.      
  595.     {block:Answer}
  596.     <div class="question">
  597.     <div class="questionarrow"></div>
  598.     {Question}
  599.     </div>
  600.     <div class="asker">{Asker}</div>
  601.     <div class="answer">{Answer}</div>
  602.     {/block:answer}
  603.      
  604.     <div id="cap">
  605.     {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  606.     {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  607.     {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  608.      
  609.     <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  610.           <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  611.             {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  612.     {/block:ContentSource}</div></div>
  613.     <br>
  614.      
  615.      
  616.     <div id="oidata">
  617.     {block:Date}<div class="tags"><b>tags:</b> {block:HasTags}{block:Tags}<font color="{color:coisinha}"># </font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  618.  <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} | <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage}  <font color="{color:coisinha}"></font> | <a href=http://twitter.com/home?status={block:Title}{Title}{/block:Title}{block:Caption}{PlainTextCaption}{/block:Caption} {ShortURL}”><b></b><img src="http://static.tumblr.com/ojza5a9/7bhm79lvp/twitter.png"</a>  |                                                       <a href="{ReblogURL}" target="_blank"><img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title=""> reblog <b>please!</b> </a>{/block:IndexPage}
  619. {block:RebloggedFrom}<br>©: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} | via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  620. {/block:RebloggedFrom}
  621. </div>
  622. </div>{/block:Date}
  623.  
  624.  
  625.  {/block:Posts}
  626. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  627.      
  628.      
  629.      
  630.  
  631.  
  632.      
  633.      
  634.      
  635.      
  636.     </div>
  637.     </div>
  638.     </div>
  639.     </div>
  640.     </div>
  641.     </div>
  642.      
  643.     </body>
  644.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement