amando-loucos

THEME 12

May 13th, 2012
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.70 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 ESB0RNIA !>
  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.  
  267.  
  268. <meta name="color:scroll" content="#000000" />
  269. <meta name="color:ask" content="#ebebeb" />
  270.  
  271.  
  272.  
  273. <meta name="color:bgdescription" content="#ebebeb" />
  274.  
  275. <meta name="color:textdescription" content="#000" />
  276. <meta name="color:links" content="#000" />
  277. <meta name="color:cruz" content="#ccc" />
  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.  
  284.  
  285.  
  286. <meta name="image:background" content="" />
  287. <meta name="image:fotinha" content="http://static.tumblr.com/02mwukw/Eh8m2342h/tumblr_m225bvidej1r6b557o3_250.png"/>
  288.  
  289. <meta name="font:text" content="verdana" />
  290. <meta name="font:title" content="georgia" />
  291.  
  292. <meta name="text:titulo" content="um frase linda feat fofa aqui, de preferencia com duas linhas. " />
  293. <meta name="text:Linkhome" content="/" />
  294. <meta name="text:Link1" content="/" />
  295. <meta name="text:Link1 Title" content="link" />
  296. <meta name="text:Link2" content="/" />
  297. <meta name="text:Link2 Title" content="link" />
  298. <meta name="text:Link3" content="/" />
  299. <meta name="text:Link3 Title" content="link" />
  300. <meta name="text:Link4" content="/" />
  301. <meta name="text:Link4 Title" content="link" />
  302. <meta name="text:Link5" content="/" />
  303. <meta name="text:Link5 Title" content="link" />
  304. <meta name="text:Link6" content="/" />
  305. <meta name="text:Link6 Title" content="link" />
  306. <meta name="text:Link7" content="/" />
  307. <meta name="text:Link7 Title" content="link" />
  308.  
  309.  
  310.  
  311.  
  312.  
  313. <title>{Title}</title>
  314. <link rel="shortcut icon" href="{Favicon}">
  315. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  316. {block:Description}
  317. <meta name="description" content="{MetaDescription}" />
  318. {/block:Description}
  319.  
  320.  
  321. <style type="text/css">
  322.  
  323.  
  324. 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; }
  325.  
  326. a {color: {color:link}; text-decoration: none; text-transform: none; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out;}
  327.  
  328. p {margin: 6px 0 0 0}
  329.  
  330. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  331. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  332. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  333. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  334.  
  335. blockquote img{max-width: 470px!important}
  336. blockquote blockquote img{max-width: 450px!important}
  337. blockquote blockquote blockquote img{max-width: 430px!important}
  338. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  339.  
  340. #tudo {text-align: center; margin: 20px auto 20px auto; z-index: 1; width: 935px; position:fixed; }
  341.  
  342. #entries{float: left; margin-left:380px; margin-top: 30px; position: relative; border-left: 1px solid {color:background} }
  343.  
  344. #msd {width: 350px; height: 350px; margin-left:-180px; margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  345.  
  346.  
  347.  
  348. .danpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 5px; text-align: justify; font-family: tahoma; font-size: 11px;}
  349.  
  350. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  351. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  352. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:linkhover}; font-weight: normal; line-height: 18px;}
  353.  
  354. .image {text-align: center; border: 0px}
  355. .image img {max-width: 500px; margin-bottom: 2px }
  356.  
  357. .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  358. .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  359. .oiqqtts a, a:hover{text-transform: none;}
  360.  
  361. .chat {line-height: 13px; list-style: none }
  362. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  363. .person1 {color: {color:text}; padding: 2px; }
  364. .person1 .label {font-weight: bold; color:{color:text}}
  365. .person2 {color: {color:text}; padding: 2px; }
  366. .person2 .label {font-weight: bold; color:{color:text}}
  367.  
  368. .player {background-color: #000; text-align: left; display:block;}
  369.  
  370. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  371. .answer {padding: 2px}
  372. .answer img {max-width: 470px;}
  373.  
  374.  
  375. #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  376. #oidata a {font-size: 9px;}
  377.  
  378. .tags {color: {color:text}; font-size: 9px; font-family: {font:text}; display: inline; list-style: none; text-transform: lowercase;}
  379. .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  380.  
  381. #cap {width: 500px; margin-top: -2px;}
  382. .source {display: none;}
  383.  
  384. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  385. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  386. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  387. .notes img{display: none; border:0px}
  388.  
  389. .question {
  390. color: {color:text};
  391. font-size: 9px;
  392. font-weight: normal;
  393. font-family: {font:body};
  394. line-height:95%;
  395. background: {color:ask};
  396. margin: 0 0 10px 0;
  397. padding: 10px 15px;
  398. position: relative;}
  399.  
  400. .questionarrow {
  401. width: 13px;
  402. height: 7px;
  403. font-size:30px;
  404. font-family: verdana;
  405. position: absolute;
  406. color: {color:ask};
  407. bottom: -3.5px;
  408. left: 240px;}
  409.  
  410.  
  411. .asker {width:500px; text-align:center; text-transform:uppercase; color:{color:text};}
  412. .asker a {color: {color:text};}
  413. .asker img {float:left; margin-left:220px; vertical-align:top; margin-right:3px; max-height:15px;}
  414.  
  415. .answer {color: {color:text};}
  416.  
  417.  
  418. .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);}
  419. .jf {font-size: 19px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 35px; margin-top: -92px; }
  420.  
  421. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  422.  
  423. #sideimg {display: block; margin-left: 110px; float: right; margin-top: 100px; width: auto; height: auto; background-color: transparent; position: fixed;}
  424. .simg1 img {width: 110px; height: 130px; margin-bottom: 2px; border: 3px solid {color:border};}
  425.  
  426. #pag {width: 15px; padding:1px; background-color: {color:bgpage}; position:fixed; text-align: center; margin-top: 100px; margin-left: 119px;}
  427.  
  428. #cruz {position: fixed; margin: 200px 0px 0px 60px; }
  429.  
  430. #acruz {width: 69px; position: absolute; margin-left: 15px; margin-top: 10px; color: {color:cruz}; font-size: 60px; -webkit-transform: rotate(-20deg);}
  431. #acruz:hover { -webkit-transform: rotate(0deg);}
  432.  
  433. #home {width: 24px; position: fixed; float: left; font-size: 9px; font-family: tahoma; color: {color:cruz}; padding: 5px; height: 24px; margin-left: 80px; rotation: 10px; margin-top: 30px; margin-top: 95px; -moz-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; z-index: 20;}
  434.  
  435.  
  436. #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}
  437. #pgs a {background: {color:background}; margin: 30 0px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none;}
  438. #pgs a:hover {background: {color:sidebar}; color: {color:link hover}; border: none;}
  439. #pgs span.pagina_atual {background: {color:sidebar}; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  440. .pg { position:fixed !important; clear: both; float: left; margin-top: 85px; margin-left: 840px; 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;}
  441.  
  442.  
  443. .li {opacity: 1}
  444. .li2 {opacity: 0.8}
  445. .li3 {opacity: 0.6}
  446. .li4 {opacity: 0.8}
  447. .li5 {opacity: 1}
  448.  
  449. #linkslindos {margin-top: 115px; margin-left: 220px; position:fixed; width: auto;}
  450.  
  451. #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; background-color:{color:linkbg}; color:{color:linktext}; margin-left: 3px; line-height:10px;}
  452.  
  453. #linkslindos a:hover{color: {color:linktexthover}; background-color: {color:linkbghover}; letter-spacing: 5px; width:100px; }
  454.  
  455. #faixa {margin-top: 220px; margin-left: 1023px; position: fixed; background-color: {color:cruz}; height: 50px; width:3px; box-shadow: 0px 0px 10px rgba(0,0,0,0.15);}
  456.  
  457. #faixa2 {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);}
  458.  
  459. @font-face {
  460. font-family: 'Give You Glory';
  461. font-style: normal;
  462. font-weight: norAmal;
  463. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  464. }
  465.  
  466.  
  467. #title {width: 215px; height: 55px; position: fixed; background-color:transparent; margin-left: 120px; margin-top: 55px; }
  468. .optitle{font-family: Give You Glory; font-size: 15px; font-style: none;
  469. line-height: 15px; font-weight: none; color: #777777; margin-top: 10px; margin-left: -5px; text-transform: none; letter-spacing: 0px}
  470.  
  471.  
  472.  
  473. #description {position: fixed; margin-top: 237px; margin-left: 120px; width: 220px; height: 50px; background-color: {color:bgdescription}; z-index:2; font-family: Verdana}
  474. .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}
  475. .opdescription a{font-size:9px}
  476. #description a:hover{position: fixed; margin-top: -3px; margin-left: 50px; height: 22px; z-index:2; text-transform: arial}
  477.  
  478. #sdbarsi {font-family: verdana; background-color: {color:background}; color: {color:text}; font-size:7px; padding: 3px 3px 4px 3px; width: 650px; height: 8px; margin-top: 5px; margin-left: 290px; z-index: 1; position: fixed; text-align: center; text-transform: uppercase; letter-spacing: 1px}
  479. #sdbarsi a{font-family: verdana; font-size: 8px; text-transform: uppercase; letter-spacing: 1px}
  480.  
  481.  
  482.  
  483. .credit {
  484. position:fixed !important;
  485. margin-left: 1028px;
  486. margin-top: 1000px;
  487. margin-bottom: -5px;
  488. font-size: 9px;
  489. width: 49px;
  490. height: 15px;
  491. padding: 1px 3px 3px 2px;
  492. font-family: verdana;
  493. color: #000000;
  494. text-align: center;
  495. background-color: {color:sidebar};
  496. -webkit-transition: all 0.5s ease;
  497. }
  498.  
  499. ::-webkit-scrollbar{width:5px;height:5px;}
  500. ::-webkit-scrollbar-button:start:decrement
  501. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  502. ::-webkit-scrollbar-track-piece{background-color: {color:background}; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  503. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  504. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-border-radius:px;}
  505.  
  506. #tumblr_controls{position: fixed!important}
  507. #tumblr_controls{position: fixed!important}
  508. #tumblr_controls{position: fixed!important}
  509. #tumblr_controls{position: fixed!important}
  510.  
  511.  
  512.  
  513.  
  514. </style>
  515.  
  516. </head>
  517.  
  518.  
  519. <body>
  520.  
  521. <div id="tudo">
  522. <div id="msd">
  523. </div>
  524.  
  525. <div id="sideimg"><div class="simg1">
  526. <img src="{image:fotinha}">
  527. </div></div>
  528. <div id="linkslindos">
  529. <a href="{text:link1}">{text:link1 title}</a>
  530. <a href="{text:link2}">{text:link2 title}</a>
  531. <a href="{text:link3}">{text:link3 title}</a>
  532. <a href="{text:link4}">{text:link4 title}</a>
  533. <a href="{text:link5}">{text:link5 title}</a>
  534. <a href="{text:link6}">{text:link6 title}</a>
  535. <a href="{text:link7}">{text:link7 title}</a>
  536.  
  537. </div>
  538.  
  539. <div id="faixa"></div>
  540. <div id="faixa2"></div>
  541.  
  542. <div id="home"><a href="{text:linkhome}"><img src="http://static.tumblr.com/ejm8w78/lhflz2pxj/home.png" width=15px"></a></div>
  543.  
  544. <div id="title">
  545. <center><div class="optitle">{text:titulo}</div></div>
  546.  
  547.  
  548. <div id="description">
  549. <div class="opdescription">{block:Description}{Description}{/block:Description}</div></div>
  550.  
  551.  
  552.  
  553. <div class="pg"><div id="pgs"> <center>
  554. {block:JumpPagination length="6"}
  555. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  556. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  557. {/block:JumpPagination}
  558. </center></div></div>
  559.  
  560.  
  561. <div id="cruz">
  562. <div id="acruz">†</div>
  563.  
  564. </div>
  565.  
  566.  
  567.  
  568. <div id="sdbarsi"> theme by <a href="http://amando-loucos.tumblr.com"><b>amando-loucos</b></a> + <a href="http://i-ngenuidade.tumblr.com"><b>dtls</b></a></div>
  569.  
  570. </a></div>
  571. <div id="entries">
  572. {block:Posts}
  573. <div class="danpost">
  574.  
  575. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  576.  
  577. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  578.  
  579. {block:Photoset}{Photoset-500}{/block:Photoset}
  580.  
  581. {block:quote}
  582.  
  583. <o class="fj">“</o><div class="jf">{quote}</div><br>
  584. <div class="source">{block:Source}<strong>{Source}</strong>{/block:Source}</div>
  585.  
  586. {/block:quote}
  587.  
  588. {block:Link}
  589. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  590. {block:Description}{Description}{/block:Description}
  591. {/block:Link}
  592.  
  593. {block:Chat}
  594. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  595. <div class="chat"><ul>{block:Lines}
  596. <li class="person{UserNumber}">{block:Label}
  597. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  598. {/block:Chat}
  599.  
  600. {block:Audio}
  601. <div class="player">{AudioPlayerBlack}</div>
  602. {block:Caption}{Caption}{/block:Caption}
  603. {/block:Audio}
  604.  
  605. {block:Video}{Video-500}{/block:Video}
  606.  
  607.  
  608. {block:Answer}
  609. <div class="question">
  610. <div class="questionarrow">▼</div>
  611. {Question}
  612. </div>
  613. <div class="asker">{Asker}</div>
  614. <div class="answer">{Answer}</div>
  615. {/block:answer}
  616.  
  617. <div id="cap">
  618. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  619. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  620. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  621.  
  622. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  623. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  624. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  625. {/block:ContentSource}</div></div>
  626. <br>
  627.  
  628.  
  629. <div id="oidata">
  630. {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>
  631. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} • <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} • <a href="{ReblogUrl}" target="_blank"><b>reblog</b> with love</a>{/block:IndexPage}
  632. {block:RebloggedFrom}<br>originally <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} • via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  633. {/block:RebloggedFrom}
  634. </div>
  635. </div>{/block:Date}
  636.  
  637.  
  638. {/block:Posts}
  639. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648. </div>
  649. </div>
  650. </div>
  651. </div>
  652. </div>
  653. </div>
  654.  
  655. </body>
  656. </html>
Advertisement
Add Comment
Please, Sign In to add comment