nyqueramos

Theme 5

Jun 2nd, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.22 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 en-torpecente !>
  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="#ccc" />
  265. <meta name="color:border" content="#ffffff" />
  266. <meta name="color:fundinho" content="#ffffff" />
  267.  
  268.  
  269. <meta name="color:scroll" content="#000000" />
  270. <meta name="color:ask" content="#ebebeb" />
  271.  
  272.  
  273.  
  274. <meta name="color:bgdescription" content="#ebebeb" />
  275.  
  276. <meta name="color:textdescription" content="#000" />
  277. <meta name="color:links" content="#000" />
  278. <meta name="color:linkbg" content="#ffffff" />
  279. <meta name="color:linktext" content="#000" />
  280. <meta name="color:linkbghover" content="#000" />
  281. <meta name="color:linktexthover" content="#fff" />
  282. <meta name="color:bgpage" content="#EEEEEE" />
  283. <meta name="color:coracao" content="#000" />
  284.  
  285.  
  286.  
  287. <meta name="image:background" content="" />
  288. <meta name="image:fotinha" content="http://static.tumblr.com/ylxfgce/UXem3k97f/hyhy.jpg"/>
  289.  
  290. <meta name="font:text" content="verdana" />
  291. <meta name="font:title" content="georgia" />
  292.  
  293. <meta name="text:titulo" content="Maybe a addictive drug. " />
  294. <meta name="text:Linkhome" content="/" />
  295. <meta name="text:Link1" content="/" />
  296. <meta name="text:Link1 Title" content="link" />
  297. <meta name="text:Link2" content="/" />
  298. <meta name="text:Link2 Title" content="link" />
  299. <meta name="text:Link3" content="/" />
  300. <meta name="text:Link3 Title" content="link" />
  301. <meta name="text:Link4" content="/" />
  302. <meta name="text:Link4 Title" content="link" />
  303. <meta name="text:Link5" content="/" />
  304. <meta name="text:Link5 Title" content="link" />
  305. <meta name="text:Link6" content="/" />
  306. <meta name="text:Link6 Title" content="link" />
  307. <meta name="text:Link7" content="/" />
  308. <meta name="text:Link7 Title" content="link" />
  309.  
  310.  
  311.  
  312.  
  313.  
  314. <title>{Title}</title>
  315. <link rel="shortcut icon" href="{Favicon}">
  316. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  317. {block:Description}
  318. <meta name="description" content="{MetaDescription}" />
  319. {/block:Description}
  320.  
  321.  
  322. <style type="text/css">
  323.  
  324.  
  325. 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; }
  326.  
  327. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  328.  
  329. p {margin: 6px 0 0 0}
  330.  
  331. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  332. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  333. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  334. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  335.  
  336. blockquote img{max-width: 470px!important}
  337. blockquote blockquote img{max-width: 450px!important}
  338. blockquote blockquote blockquote img{max-width: 430px!important}
  339. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  340.  
  341. #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 935px; position:fixed; }
  342.  
  343. #entries{float: left; margin-left:435px; margin-top: 30px; position: relative; border-left: 1px solid {color:background} }
  344.  
  345. #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  346.  
  347.  
  348.  
  349. .danpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 5px; text-align: justify; font-family: tahoma; font-size: 11px;}
  350.  
  351. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  352. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  353. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  354.  
  355. .image {text-align: center; border: 0px}
  356. .image img {max-width: 500px; margin-bottom: 2px }
  357.  
  358. .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  359. .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  360. .oiqqtts a, a:hover{text-transform: none;}
  361.  
  362. .chat {line-height: 13px; list-style: none }
  363. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  364. .person1 {color: {color:text}; padding: 2px; }
  365. .person1 .label {font-weight: bold; color:{color:text}}
  366. .person2 {color: {color:text}; padding: 2px; }
  367. .person2 .label {font-weight: bold; color:{color:text}}
  368.  
  369. .player {background-color: #000; text-align: left; display:block;}
  370.  
  371. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  372. .answer {padding: 2px}
  373. .answer img {max-width: 470px;}
  374.  
  375.  
  376. #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  377. #oidata a {font-size: 9px;}
  378.  
  379. .tags {color: {color:text}; font-size: 9px; font-family: {font:text}; display: inline; list-style: none; text-transform: lowercase;}
  380. .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  381.  
  382. #cap {width: 500px; margin-top: -2px;}
  383. .source {display: none;}
  384.  
  385. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  386. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  387. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  388. .notes img{display: none; border:0px}
  389.  
  390. .question {
  391. color: {color:text};
  392. font-size: 9px;
  393. font-weight: normal;
  394. font-family: {font:body};
  395. line-height:95%;
  396. background: {color:ask};
  397. margin: 0 0 10px 0;
  398. padding: 10px 15px;
  399. position: relative;}
  400.  
  401. .questionarrow {
  402. width: 13px;
  403. height: 7px;
  404. font-size:30px;
  405. font-family: verdana;
  406. position: absolute;
  407. color: {color:ask};
  408. bottom: -3.5px;
  409. left: 240px;}
  410.  
  411.  
  412. .asker {width:500px; text-align:center; text-transform:uppercase; color:{color:text};}
  413. .asker a {color: {color:text};}
  414. .asker img {float:left; margin-left:220px; vertical-align:top; margin-right:3px; max-height:15px;}
  415.  
  416. .answer {color: {color:text};}
  417.  
  418.  
  419. .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);}
  420. .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  421.  
  422. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  423.  
  424. #sideimg {display: block; margin-left: 296px; float: right; margin-top: 194px; width: auto; height: auto; background-color: transparent; position: fixed; z-index:30;}
  425. .simg1 img {width: 130px; height: 180px; margin-bottom: 2px; border: 3px solid {color:fundinho};}
  426.  
  427. #pag {width: 15px; padding:1px; background-color: {color:bgpage}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  428.  
  429.  
  430.  
  431. #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}
  432. #pgs a {background: {color:fundinho}; margin: 30 0px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none;}
  433. #pgs a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  434. #pgs span.pagina_atual {background: {color:sidebar}; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  435. .pg { position:fixed !important; clear: both; float: left; margin-top: 200px; margin-left: 240px; 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;}
  436.  
  437.  
  438. .li {opacity: 1}
  439. .li2 {opacity: 0.8}
  440. .li3 {opacity: 0.6}
  441. .li4 {opacity: 0.8}
  442. .li5 {opacity: 1}
  443.  
  444. #linkslindos {margin-top: 268px; margin-left: 34px; position:fixed; width: auto; z-index:100;}
  445.  
  446. #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; -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; text-shadow: 1px 1px 9px #000000; }
  447.  
  448. #linkslindos a:hover{color: {color:linktexthover}; }
  449.  
  450. #linkslindos1 {margin-top: 140px; margin-left: 120px; position:fixed; width: auto; z-index:100;}
  451.  
  452. #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;}
  453.  
  454. #linkslindos1 a:hover{color: {color:linktexthover}; }
  455.  
  456. #faixaawn {margin-top: 260px; margin-left: 50px; position: fixed; background-color: {color:fundinho}; height: 125px; width:382px;}
  457.  
  458. #faixaawn2 {margin-top: 240px; margin-left: 1005px; position: fixed; background-color: {color:cruz}; height: 3px; width:40px; box-shadow: 0px 0px 10px rgba(0,0,0,0.15);}
  459.  
  460. @font-face {
  461. font-family: 'Give You Glory';
  462. font-style: normal;
  463. font-weight: norAmal;
  464. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  465. }
  466.  
  467.  
  468. .titlemo {text-align: center; margin-top: 200px; margin-left: 70px; overflow: hidden; -webkit-border-radius: 0px 0px 0px 0px; font-size: 6px; font-family: 'Give You Glory'; color:{color:text}; padding: 10px; background-attachment: fixed; width:120px; height: 65px; -webkit-transition: all 2s ease-out; -moz-transition: all 2s ease-out; opacity:8; letter-spacing: 1px; font-style: normal; line-height: 8px; text-transform: none; position: fixed; z-index:7777777; background-color: transparent;}
  469.  
  470. .titlemohihi{font-size: 17px; font-family: ; line-height: 20px; letter-spacing: 1px; text-transform: none; margin-top:30px; text-align: ;}
  471.  
  472. #core {position: fixed; margin: 200px 0px 0px 60px; }
  473.  
  474. #ocore {width: 39px; position: absolute; margin-left: 150px; margin-top: 20px; color: {color:coracao}; font-size: 60px; -webkit-transform: rotate(20deg);}
  475. #ocore:hover { -webkit-transform: rotate(0deg);}
  476.  
  477.  
  478.  
  479. #description {position: fixed; margin-top: 267px; margin-left: 115px; width: 180px; height: 110px; background-color: {color:background}; z-index:2; font-family: Verdana}
  480. .opdescription{color: {color:textdescription}; clear: both; font-size:9px; height: 83px; text-align: center; background-color:transparent; padding: 8px; margin-top: -3px; font-family: Verdana}
  481. .opdescription a{font-size:9px}
  482. #description a:hover{position: fixed; margin-top: -3px; margin-left: 50px; height: 22px; z-index:2; text-transform: arial}
  483.  
  484. #credithihi{width: auto; height: auto; margin-left:430px; margin-top: 10px; position:fixed; overflow:hidden; background: {color:background}; height: 20px; width: 550px; -moz-border-radius-topleft: 20px; -webkit-border-left-radius: 20px; -moz-border-bottom-left-radius: 10px;}
  485. .msubtitulo {font-family: verdana; font-size: 9px; padding: 4px}
  486.  
  487.  
  488.  
  489.  
  490. .credit {
  491. position:fixed !important;
  492. margin-left: 1028px;
  493. margin-top: 1000px;
  494. margin-bottom: -5px;
  495. font-size: 9px;
  496. width: 49px;
  497. height: 15px;
  498. padding: 1px 3px 3px 2px;
  499. font-family: verdana;
  500. color: #000000;
  501. text-align: center;
  502. background-color: {color:sidebar};
  503. -webkit-transition: all 0.5s ease;
  504. }
  505.  
  506. ::-webkit-scrollbar{width:5px;height:5px;}
  507. ::-webkit-scrollbar-button:start:decrement
  508. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  509. ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  510. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  511. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  512.  
  513. #tumblr_controls{position: fixed!important}
  514. #tumblr_controls{position: fixed!important}
  515. #tumblr_controls{position: fixed!important}
  516. #tumblr_controls{position: fixed!important}
  517.  
  518.  
  519.  
  520.  
  521. </style>
  522.  
  523. </head>
  524.  
  525.  
  526. <body>
  527.  
  528. <!--SCM Music Player by Adrian C Shum - http://scmplayer.net-->
  529. <script type="text/javascript" src="http://scmplayer.net/script.js" ></script>
  530. <script type="text/javascript">
  531. SCMMusicPlayer.init("{'skin':'http://static.tumblr.com/kwaqeuc/Qmblzys0s/skinplay.css','playback':{'autostart':'true','shuffle':'false','volume':'50'},'playlist':[{'title':'','url':'http://www.youtube.com/watch?v=-lLvtydTM78'},{'title':'','url':'http://www.youtube.com/watch?v=y0RB0f8tay4'},{'title':'','url':'http://www.youtube.com/watch?v=QnVOw-nECaw'},{'title':'','url':'http://www.youtube.com/watch?v=YUJP9Zt5ZaE'},{'title':'','url':'http://www.youtube.com/watch?v=Ij9NtI3xh8Y'},{'title':'','url':'http://www.youtube.com/watch?v=fEGI9NbH-mk'},{'title':'','url':'http://www.youtube.com/watch?v=ih56lpzMcdo'},{'title':'','url':'http://www.youtube.com/watch?v=Nba3Tr_GLZU'},{'title':'','url':'http://www.youtube.com/watch?v=EH6atHxFCtE'},{'title':'','url':'http://www.youtube.com/watch?v=uOIhzCCQIec'},{'title':'','url':'http://www.youtube.com/watch?v=itqya8YjIKA'},{'title':'','url':'http://www.youtube.com/watch?v=NqjfvD-qbmw'},{'title':'','url':'http://www.youtube.com/watch?v=cGs8vtjDxxY&feature=related'},{'title':'','url':'http://www.youtube.com/watch?v=Sg0CeRog-yQ'},{'title':'','url':'http://www.youtube.com/watch?v=xIOWD6svN6w'},{'title':'','url':'http://www.youtube.com/watch?v=wVL4rTcIib4'},{'title':'','url':'http://www.youtube.com/watch?v=I7u1A5V8NcU'},{'title':'','url':'http://www.youtube.com/watch?v=QCub4Vi-1KI'},{'title':'','url':'http://www.youtube.com/watch?v=Hexhm0rrv-o'},{'title':'','url':'http://www.youtube.com/watch?v=A0IIjG4-IcY'},{'title':'','url':'http://www.youtube.com/watch?v=Fd9yaC1ebU4'},{'title':'','url':'http://www.youtube.com/watch?v=AKfCG9tn3J0&feature=related'},{'title':'','url':'http://www.youtube.com/watch?v=St9YWSFe4Uo'},{'title':'','url':'http://www.youtube.com/watch?v=20Ov0cDPZy8'},{'title':'','url':'http://www.youtube.com/watch?v=EQi7n0ilOQg'},{'title':'','url':'http://www.youtube.com/watch?v=RKwIHfZcU9A'}],'placement':'bottom','showplaylist':'false'}");
  532. </script>
  533. <!--End of SCM Music Player script-->
  534.  
  535. <div id="tudo">
  536. <div id="msd">
  537. </div>
  538.  
  539. <div id="sideimg"><div class="simg1">
  540. <img src="{image:fotinha}">
  541. </div></div>
  542. <div id="linkslindos">
  543. <a href="{text:link1}">{text:link1 title}</a>
  544. <a href="{text:link2}">{text:link2 title}</a>
  545. <a href="{text:link3}">{text:link3 title}</a>
  546. <a href="{text:link4}">{text:link4 title}</a>
  547. <a href="{text:link5}">{text:link5 title}</a>
  548. <a href="{text:link6}">{text:link6 title}</a>
  549. <a href="{text:link7}">{text:link7 title}</a>
  550.  
  551. </div>
  552.  
  553. <div id="faixaawn"></div>
  554.  
  555.  
  556.  
  557.  
  558.  
  559. <div id="description">
  560. <div class="opdescription">{block:Description}{Description}{/block:Description}</div></div>
  561.  
  562. </div>
  563.  
  564. <div id="core">
  565. <div id="ocore">♥</div>
  566.  
  567. </div>
  568.  
  569. <div class="titlemo"><div class="titlemohihi">{text:titulo}</div></div>
  570.  
  571. <div class="pg"><div id="pgs"> <center>
  572. {block:JumpPagination length="6"}
  573. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  574. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  575. {/block:JumpPagination}
  576. </center></div></div>
  577.  
  578.  
  579.  
  580. </div>
  581.  
  582.  
  583.  
  584. <div id="credithihi"><div class="msubtitulo"><center> theme by <b><a href="http://en-torpecente.tumblr.com"> en-torpecente</a></b> <b><a href="http://i-ngenuidade.tumblr.com"> </a></b> + <b><a href="http://i-ngenuidade.tumblr.com">inspiration</a></b></center></div></div>
  585.  
  586.  
  587. </a></div>
  588. <div id="entries">
  589. {block:Posts}
  590. <div class="danpost">
  591.  
  592. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  593.  
  594. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  595.  
  596. {block:Photoset}{Photoset-500}{/block:Photoset}
  597.  
  598. {block:quote}
  599.  
  600. <o class="fj">“</o><div class="jf">{quote}</div><br>
  601. <div class="source">{block:Source}<strong>{Source}</strong>{/block:Source}</div>
  602.  
  603. {/block:quote}
  604.  
  605. {block:Link}
  606. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  607. {block:Description}{Description}{/block:Description}
  608. {/block:Link}
  609.  
  610. {block:Chat}
  611. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  612. <div class="chat"><ul>{block:Lines}
  613. <li class="person{UserNumber}">{block:Label}
  614. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  615. {/block:Chat}
  616.  
  617. {block:Audio}
  618. <div class="player">{AudioPlayerBlack}</div>
  619. {block:Caption}{Caption}{/block:Caption}
  620. {/block:Audio}
  621.  
  622. {block:Video}{Video-500}{/block:Video}
  623.  
  624.  
  625. {block:Answer}
  626. <div class="question">
  627. <div class="questionarrow">?</div>
  628. {Question}
  629. </div>
  630. <div class="asker">{Asker}</div>
  631. <div class="answer">{Answer}</div>
  632. {/block:answer}
  633.  
  634. <div id="cap">
  635. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  636. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  637. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  638.  
  639. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  640. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  641. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  642. {/block:ContentSource}</div></div>
  643. <br>
  644.  
  645.  
  646. <div id="oidata">
  647. {block:Date}<div class="tags">{block:HasTags}{block:Tags}in<b>diretas</b>: #<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  648. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} • <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} • <a href="{ReblogUrl}" target="_blank"><b>reblog</b> reblog baby </a>{/block:IndexPage}
  649. {block:RebloggedFrom}<br>originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  650. {/block:RebloggedFrom}
  651. </div>
  652. </div>{/block:Date}
  653.  
  654.  
  655. {/block:Posts}
  656. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665. </div>
  666. </div>
  667. </div>
  668. </div>
  669. </div>
  670. </div>
  671.  
  672. </body>
  673. </html>
Advertisement
Add Comment
Please, Sign In to add comment