ANTIGO-BRASILEIRO

theme 31

Sep 13th, 2012
1,290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.88 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.  
  6.  
  7.  
  8.  
  9. <! Theme #31 ANTIGO-BRASILEIRO + BASE DE LATE-TO-WRITE, NÃO RETIRE OS CRÉDITOS, NÃO COPIE!!!!>
  10.  
  11.  
  12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. <head> <!-- DEFAULT VARIABLES -->
  21.  
  22. <meta name="font:text" content="verdana" />
  23. <meta name="font:title" content="georgia" />
  24.  
  25.  
  26. <meta name="color:background" content="#f1f1f1" />
  27. <meta name="color:text" content="#000" />
  28. <meta name="color:entry" content="#fff" />
  29. <meta name="color:desc" content="#fff" />
  30. <meta name="color:links" content="#000" />
  31. <meta name="color:links1" content="#b9b5b4" />
  32. <meta name="color:linktex" content="#000000" />
  33. <meta name="color:pag" content="#fff" />
  34. <meta name="color:sidebar" content="#fff" />
  35.  
  36. <meta name="image:background" content=""/>
  37. <meta name="image:sidebar1" content=""/>
  38.  
  39.  
  40.  
  41.  
  42. <meta name="image:sidebar1" content=""/>
  43.  
  44.  
  45.  
  46.  
  47. <meta name="text:frase" content="vontade de sumir mesmo"/>
  48.  
  49.  
  50. <meta name="text:Link1" content="/" />
  51. <meta name="text:Link1 Title" content="link1" />
  52. <meta name="text:Link2" content="/" />
  53. <meta name="text:Link2 Title" content="link2" />
  54. <meta name="text:Link3" content="/" />
  55. <meta name="text:Link3 Title" content="link3" />
  56. <meta name="text:Link4" content="/" />
  57. <meta name="text:Link4 Title" content="link4" />
  58. <meta name="text:Link5" content="/" />
  59. <meta name="text:Link5 Title" content="link5" />
  60. <meta name="text:Link6" content="/" />
  61. <meta name="text:Link6 Title" content="link6" />
  62. <meta name="text:Link7" content="/" />
  63. <meta name="text:Link7 Title" content="link7" />
  64. <meta name="text:Link8" content="/" />
  65. <meta name="text:Link8 Title" content="link8" />
  66. <meta name="text:Link9" content="/" />
  67. <meta name="text:Link9 Title" content="link9" />
  68. <meta name="text:Link10" content="/" />
  69. <meta name="text:Link10 Title" content="link10" />
  70.  
  71.  
  72. <script type="text/javascript">
  73.  
  74. // <![CDATA[
  75.  
  76. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  77.  
  78. var fgcolour="#656565"; // foreground colour
  79.  
  80. var hlcolour="#b5b5b5"; // highlight colour
  81.  
  82. var bgcolour="#FFFFFF"; // background colour
  83.  
  84. var glcolour="#f8f8f8"; // colour of glow around letters
  85.  
  86. var speed=66; // speed colours change, 1 second = 1000
  87.  
  88. var delay=50; // how long to wait between wipes
  89.  
  90. var alink="/"; // page to link text to (set to ="" for no link)
  91.  
  92.  
  93.  
  94. /****************************
  95.  
  96. *Multi-Wipe Neon Text Effect*
  97.  
  98. *(c)2003-12 mf2fm web-design*
  99.  
  100. * http://www.mf2fm.com/rv *
  101.  
  102. * DON'T EDIT BELOW THIS BOX *
  103.  
  104. ****************************/
  105.  
  106. var w_txt, w_txl;
  107.  
  108. var w_flp=bgcolour;
  109.  
  110. var w_sty=Math.floor(Math.random()*8);
  111.  
  112. var w_cnt=-1;
  113.  
  114. var wipes=new Array();
  115.  
  116. var wrand=new Array();
  117.  
  118. window.onload=function() { if (document.getElementById) {
  119.  
  120. var i, wiper, wipei;
  121.  
  122. wiper=document.getElementById("wipe");
  123.  
  124. w_txt=wiper.firstChild.nodeValue;
  125.  
  126. w_txl=w_txt.length;
  127.  
  128. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  129.  
  130. for (i=0; i<w_txl; i++) {
  131.  
  132. wipei=document.createElement("span");
  133.  
  134. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  135.  
  136. wipes[i]=wipei.style;
  137.  
  138. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  139.  
  140. wipes[i].color=fgcolour;
  141.  
  142. wiper.appendChild(wipei);
  143.  
  144. }
  145.  
  146. if (alink) {
  147.  
  148. wiper.style.cursor="pointer";
  149.  
  150. wiper.onclick=function() { top.location.href=alink; }
  151.  
  152. }
  153.  
  154. for (i=0; i<w_txl; i++) wrand[i]=i;
  155.  
  156. wiper=setInterval("randwipe()", speed);
  157.  
  158. }}
  159.  
  160.  
  161.  
  162. function c(i, shade) {
  163.  
  164. if (shade==bgcolour) wipes[i].textShadow="none";
  165.  
  166. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  167.  
  168. wipes[i].color=shade;
  169.  
  170. }
  171.  
  172.  
  173.  
  174. function randwipe() {
  175.  
  176. var w_old;
  177.  
  178. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  179.  
  180. else {
  181.  
  182. w_cnt=-1;
  183.  
  184. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  185.  
  186. w_old=w_sty;
  187.  
  188. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  189.  
  190. }
  191.  
  192. }
  193.  
  194.  
  195.  
  196. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  197.  
  198.  
  199.  
  200. function wipe0() { // curtains
  201.  
  202. if (w_cnt<Math.floor(w_txl/2)) {
  203.  
  204. c(w_cnt, hlcolour);
  205.  
  206. c(w_txl-w_cnt-1, hlcolour);
  207.  
  208. }
  209.  
  210. else if (w_cnt<w_txl) {
  211.  
  212. c(w_cnt, w_flp);
  213.  
  214. c(w_txl-w_cnt-1, w_flp);
  215.  
  216. }
  217.  
  218. }
  219.  
  220.  
  221.  
  222. function wipe1() { // random
  223.  
  224. var i, rand, temp;
  225.  
  226. if (w_cnt==0) {
  227.  
  228. for (i=0; i<w_txl; i++) {
  229.  
  230. rand=Math.floor(Math.random()*w_txl);
  231.  
  232. temp=wrand[i];
  233.  
  234. wrand[i]=wrand[rand];
  235.  
  236. wrand[rand]=temp;
  237.  
  238. }
  239.  
  240. }
  241.  
  242. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  243.  
  244. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  245.  
  246. }
  247.  
  248.  
  249.  
  250. function wipe2() { // forwards
  251.  
  252. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  253.  
  254. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  255.  
  256. }
  257.  
  258.  
  259.  
  260. function wipe3() { // backwards
  261.  
  262. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  263.  
  264. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  265.  
  266. }
  267.  
  268.  
  269.  
  270. function wipe4() { // searchlight
  271.  
  272. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  273.  
  274. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  275.  
  276. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  277.  
  278. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  279.  
  280. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  281.  
  282. }
  283.  
  284.  
  285.  
  286. function wipe5() { // fade
  287.  
  288. var i;
  289.  
  290. if (w_cnt<w_txl+3) {
  291.  
  292. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  293.  
  294. var temp="#";
  295.  
  296. for (i=1; i<6; i+=2) {
  297.  
  298. var hex1=parseInt(start.substring(i,i+2),16);
  299.  
  300. var hex2=parseInt(w_flp.substring(i,i+2),16);
  301.  
  302. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  303.  
  304. }
  305.  
  306. for (i=0; i<w_txl; i++) c(i, temp);
  307.  
  308. }
  309.  
  310. }
  311.  
  312.  
  313.  
  314. function wipe6() { // flash
  315.  
  316. var i;
  317.  
  318. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  319.  
  320. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  321.  
  322. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  323.  
  324. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  325.  
  326. }
  327.  
  328. }
  329.  
  330.  
  331.  
  332. function wipe7() { // checkerboard
  333.  
  334. var qtr=Math.floor(w_txl/4);
  335.  
  336. if (w_cnt<qtr) {
  337.  
  338. c(w_cnt, hlcolour);
  339.  
  340. c(w_cnt+2*qtr, hlcolour);
  341.  
  342. }
  343.  
  344. else if (w_cnt<2*qtr) {
  345.  
  346. c(w_cnt-qtr, w_flp);
  347.  
  348. c(w_cnt+qtr, w_flp);
  349.  
  350. }
  351.  
  352. else if (w_cnt<3*qtr) {
  353.  
  354. c(w_cnt-qtr, hlcolour);
  355.  
  356. c(w_cnt+qtr, hlcolour);
  357.  
  358. }
  359.  
  360. else if (w_cnt<w_txl) {
  361.  
  362. c(w_cnt-2*qtr, w_flp);
  363.  
  364. c(w_cnt, w_flp);
  365.  
  366. }
  367.  
  368. }
  369.  
  370. // ]]>
  371.  
  372. </script>
  373.  
  374.  
  375.  
  376. <title>{Title}</title>
  377. <link rel="shortcut icon" href="{Favicon}">
  378. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  379. {block:Description}
  380. <meta name="description" content="{MetaDescription}" />
  381. {/block:Description}
  382.  
  383.  
  384. <link href='http://fonts.googleapis.com/css?family=Zeyada' rel='stylesheet' type='text/css'>
  385.  
  386. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  387.  
  388.  
  389. <style type="text/css">
  390.  
  391.  
  392.  
  393. body {
  394. color:{color:text};
  395. background-color: {color:background};
  396. background-image:url('http://media.tumblr.com/tumblr_m4sp9vKy8j1qj5ffr.png');
  397. color:{color:text};
  398. font-family: verdana;
  399. font-size: 11px;
  400. text-align: center;
  401. background-attachment:fixed;
  402.  
  403. background-repeat:
  404.  
  405. line-height:110%;
  406.  
  407. text-align:justify
  408. }
  409.  
  410. a:link, a:active, a:visited {
  411. color: {color:links};
  412. text-decoration:none;
  413. }
  414.  
  415. a:hover {
  416. color: {color:links};
  417. -webkit-transition-duration: 0.8s;
  418. -moz-transition-duration: 0.8s;
  419. }
  420.  
  421.  
  422. .bubble {align:right;background: {color:background}; margin:7px 0px 2px 66px;padding:11px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  423. .bubble p {margin:1px 0px;}
  424. .bubble span {display:block;position:absolute;width:1px;height:1px;font-size: 0;line-height: 1px; left:-13px;top:2px;border-top:7px solid transparent;border-bottom:7px solid transparent; border-right:10px solid {color:entry};}
  425. .askborder{-webkit-border-radius: 3px 3px 3px 3px; -webkit-transition-duration: 0.6s; }.askborder:hover{ -webkit-border-radius: 180px}
  426.  
  427.  
  428.  
  429.  
  430.  
  431. #bolinha {margin-top:2px;calibri;font-size:8px;text-align:right;
  432. text-transform:uppercase;width:80px;padding-right:6px;background-color:{color:links1}; letter-spacing: 1px; color: {color:linktex};-webkit-transition: all 0.75s ease-out;-moz-transition: all 0.75s ease-out;-o-transition: all 0.75s ease-out;float: left}
  433.  
  434.  
  435.  
  436.  
  437.  
  438. #sidebar {width:172px;font-family:'calibri'; font-size:10px; color:#777;margin-top:115px;margin-left: 65px;float: center;text-align: justify; position: fixed ;padding: 3px;background: {color:sidebar}; }
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. #foto{
  451. width: 190px;
  452. height: auto;
  453. top: 234px;
  454. left: 171px;
  455. position:fixed;
  456. padding: 5px ;
  457. background-color:#fff;
  458. color:#fff;
  459. text-align:center;
  460. float:right;outline: dashed 1px #000;
  461. }
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470. #pag {width: 291px;
  471. padding: 4px;
  472. float: right;
  473. height: 13px;
  474. position: fixed;
  475. margin-left: -106px;
  476. margin-top: 7px;}
  477.  
  478.  
  479. .falamuito {width: 169px;font-size: 15px; font-family: calibri;color: {color:#000}; position:fixed; padding: 4px; margin-left: 1px; margin-top: -30px;height: autopx; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; padding-right: 3px;}
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487. #sbar5 {width: 91px;
  488. height: 11px;
  489. margin-left: 34px;
  490. margin-top: -1px;
  491. position: fixed;
  492. overflow: hidden;
  493. background-color: transparent;
  494. border-left: 0px solid;
  495. border-right: 0px solid;
  496. padding: 3px; }
  497.  
  498.  
  499.  
  500. #credit{position:fixed;bottom:5px;right:15px;}
  501.  
  502.  
  503. #credit a{color: #000;font-size:10px;font-family:consolas;text-decoration:none;}
  504.  
  505.  
  506. #icon {
  507. text-align: center;
  508. width: 100px;
  509. display: block;
  510. padding: 8px;
  511. }
  512.  
  513. #container {
  514. background-color:transparent;
  515. width: 465px;
  516. position: absolute;
  517. top:13px;
  518. left: 255px;
  519.  
  520. padding-bottom: 5px;
  521. }
  522.  
  523. #entries {margin: -10px 0 0px 0}
  524.  
  525.  
  526. #entry {
  527. width: 500px;
  528. border-bottom: 2px solid {color:background};
  529. background-color:{color:entry};
  530. text-align: justify;
  531. padding: 20px;
  532. margin-bottom:0px;}
  533.  
  534. .image{text-align: center; margin: 0 0 5px 0}
  535. .image img{border: 0px; margin: 0; padding: 0;}
  536.  
  537. #ask_form{width: 500px; }
  538.  
  539. .search_result{font-size: 12px; text-align: center}
  540.  
  541. .source{display:none}
  542.  
  543. h1{
  544. font-family: georgia;
  545. font-size:20px;
  546. letter-spacing: -1px;
  547. line-height: 20px;
  548. text-transform: none;
  549. font-weight: normal;
  550. margin: 0 0 5px 0;
  551. text-align: center;
  552. }
  553.  
  554. h1 a{font-size:20px; letter-spacing: -1px; line-height: 20px; text-transform: none; font-weight: normal; margin: 0 0 5px 0; text-decoration: none; text-align: center; }
  555.  
  556.  
  557. .fj {margin-top: -45px;font-size: 40px; font-family: Elephant; line-height: 120px; color:{color:text};}
  558.  
  559.  
  560. .qquote {font-family: calibri; text-align: left; font-size: 14px; line-height: 16px; padding: 0px;}
  561.  
  562. .qsource {font-size: 8px; font-family: PF Ronda Seven;text-align: right;margin-bottom: 5px;}
  563.  
  564.  
  565. .chat{
  566. line-height: 12px;
  567. list-style: none
  568. }
  569.  
  570. .chat ul {
  571. line-height: 15px;
  572. list-style: none;
  573. padding: 0px;
  574. line-height: 20px;
  575. background: {color:entry};
  576. }
  577.  
  578. .person1 {
  579. background-color: {color:entry};
  580. color: {color:text}
  581. }
  582. .person1 .label {
  583. font-weight: bold;
  584. padding: 0px;
  585. margin-left: 5px;
  586. color: {color: text}
  587. }
  588. .person2 {
  589. background-color: {color:entry};
  590. color: {color: text}
  591. }
  592. .person2 .label {
  593. font-weight: bold;
  594. padding: 0px;
  595. margin-left: 5px;
  596. color: {color: text}
  597. }
  598.  
  599. .audioimage{
  600. float:left;
  601. text-align: center;
  602. margin: 0 10px 5px 0;
  603. width: 205px;
  604. border: 15px solid {color:background};
  605. }
  606. .audioimage img{
  607. max-width: 205px;
  608. height: auto;
  609. margin: 0 0 2px 0
  610. }
  611. .playcount {font-style: italic}
  612.  
  613.  
  614. .asker {
  615. width: 480px;
  616. background-color: {color:background};
  617. color:{color:text};
  618. padding: 10px; }
  619. .asker img{
  620. float: left;
  621. margin: 0px 4px 2px 0
  622. }
  623. .asker a{
  624. font-size: 20px;
  625. color:{color:links};
  626. text-transform: lowercase;
  627. line-height: 27px;
  628. padding: 0; margin: 0;
  629. font-family: georgia;
  630. }
  631. .asker a:hover{
  632. font-size: 20px;
  633. color:{color:links};
  634. text-transform: lowercase;
  635. line-height:27px;
  636. padding: 0;
  637. margin: 0;
  638. font-family: georgia;
  639. }
  640. .answer {padding: 5px 0 0 0; }
  641.  
  642. #cap {
  643. padding: 2px 0 0 0;
  644. width: 500px;
  645. margin: 0 0 0 5px
  646. }
  647.  
  648. .info {
  649. margin-top: 10px;
  650. border-left: 0px solid {color:entry};
  651. padding: 5px;
  652. background-color: {color:entry};
  653. text-align: left;
  654. font-size: 8px;
  655. font-family: tinytots;
  656. text-transform: uppercase;
  657. }
  658.  
  659. .info a {font-size: 8px;text-transform:uppercase;}
  660.  
  661. .info2 {
  662. padding: 2px;
  663. border-bottom: 1px dotted {color:entry};
  664. text-align: right;
  665. }
  666. .tags {
  667. color: {color:text};
  668. font-size: 9px;
  669. font-family: verdana;
  670. display: inline;
  671. list-style: none;
  672. text-transform: none;
  673. }
  674. .tags a {
  675. font-size: 9px;
  676. color: {color:text};
  677. display: inline;
  678. list-style: none;
  679. text-transform: none;
  680. }
  681.  
  682. #nts {
  683. width: 500px;
  684. margin-left: 95px;
  685. padding: 10px;
  686. margin-top: 5px;
  687. font-size: 10px;
  688. text-align: left
  689. }
  690.  
  691. #nts img{display: none; border:0px}
  692.  
  693. #clear{
  694. clear: both;
  695. width: 50px;
  696. height: 0px;
  697. background-color: transparent
  698. }
  699.  
  700. #prevnextlinks{
  701. text-align: center;
  702. width: 500px;
  703. background-color:{color:entry};
  704. padding: 7px 20px 7px 20px;
  705. margin: 0 0 2px 0;
  706. font-size: 10px
  707. }
  708.  
  709. #notes {
  710. width: 500px;
  711. margin: 0px;
  712. margin-left: 0px;
  713. padding: 5px;
  714. text-align: left
  715. }
  716.  
  717. ol.notes {list-style: none; margin: 0 20px 0 10px; padding: 0px}
  718. ol.notes li {margin: 0px; padding: 2px;}
  719.  
  720. #notes img{border:0px}
  721. #notes a{font-size: 10px}
  722.  
  723. #tumblr_controls{position: fixed!important}
  724. ::-webkit-scrollbar{width:5px;height:5px;}
  725.  
  726. ::-webkit-scrollbar-button:start:decrement
  727.  
  728. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
  729.  
  730. ::-webkit-scrollbar-track-piece{background-color:#fff;-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
  731.  
  732. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:#000;-webkit-border-radius:px;}
  733.  
  734. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:#000;-webkit-border-radius:px;}
  735.  
  736. {CustomCSS}
  737.  
  738. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  739.  
  740.  
  741.  
  742. #desc {z-index: 1;background-color:#fff;position:fixed;width:183px; line-height: 10px; font-size:12px; font-family:calibri; text-align:center; color:#ff0000; padding: 5px; margin-top:375px; margin-left:8px; overflow:hidden;border-bottom: 2px solid {color:links};}
  743.  
  744.  
  745.  
  746. #paginacaoml {font-family: arial sans; font-size:8px; font-weight: none; line-height: 15px; text-shadow: 0 0px 0px #000;}
  747. #paginacaoml a {background: {color:pag}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
  748. #paginacaoml a:hover {background: {color:pag};}
  749. #paginacaoml span.pagina_atual {background: #; margin: 0 1px 0 0; padding: 1px 3px; color:{color:links}; text-decoration: none;}
  750. #paginacaoml span.info {background: {color:pag}; margin: 0 0px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759. </style>
  760.  
  761. </head>
  762.  
  763.  
  764.  
  765. <body>
  766.  
  767.  
  768.  
  769. <div id="container">
  770.  
  771. <div id="entries">
  772. {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
  773. <script type="text/javascript"
  774.  
  775. src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
  776.  
  777.  
  778. {block:SearchPage}<div class="search_result">{SearchResultCount} results</div>{/block:SearchPage}
  779.  
  780.  
  781.  
  782. {block:Posts}
  783.  
  784. <div id="entry">
  785. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  786.  
  787. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}
  788. <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Photo}
  789.  
  790. {block:Photoset}{Photoset-500}
  791. <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>
  792. {/block:Photoset}
  793.  
  794.  
  795. {block:Quote}
  796. <div class="qquote"><div class="fj">“</div><div style="margin-top: -80px;margin-left:25px;background-color: #c5c4c4;padding: 15px;-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;">{Quote}</div></div>
  797. {block:Source}<div class="qsource"><br> — {Source}</div>
  798. {/block:Source}
  799. {/block:Quote}
  800.  
  801. {block:Link}
  802. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  803. {block:Description}{Description}{/block:Description}
  804. {/block:Link}
  805.  
  806. {block:Chat}
  807. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  808. <div class="chat"><ul>{block:Lines}
  809. <li class="person{UserNumber}">{block:Label}
  810. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  811. {/block:Chat}
  812.  
  813. {block:Audio}
  814. <div class="audioimage">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  815. {AudioPlayerWhite}
  816. <div class="playcount">{PlayCountWithLabel}</div>
  817. <div class="cap">{block:Caption}{Caption}{/block:Caption}</div>
  818. {/block:Audio}
  819.  
  820. {block:Video}{Video-500}
  821. <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Video}
  822.  
  823. {block:Answer}
  824. <img src="{AskerPortraitURL-48}" align="left" class="askborder" class="dreamgirl"><div class="bubble"><span></span><b>{Asker}</b>
  825. {Question}&nbsp;</div><br>{Answer} {/block:Answer}
  826.  
  827. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  828. <img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  829. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  830. {/block:ContentSource}</div>
  831.  
  832.  
  833.  
  834. <div id="clear"></div>
  835.  
  836. {block:Date} <div class="info"> <a href="{Permalink}">{TimeAgo}</a> {/block:Date} {block:NoteCount} . <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{Block:IndexPage} <a href="{ReblogUrl}" target="_blank"> . <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png" class="" title=""> <b>r</b>eblog </a> {/Block:IndexPage} {block:RebloggedFrom} . via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  837. <br>
  838. {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  839. </div></div>
  840. {/block:Posts}
  841. {block:PostNotes}
  842. <div id="nts"><div id="ntstext"> . {PostNotes}</div></div>
  843. {/block:PostNotes}
  844. </div>
  845.  
  846. </div>
  847.  
  848.  
  849.  
  850. </div></div>
  851.  
  852. </div></div></div></div>
  853.  
  854.  
  855.  
  856.  
  857. <div id="sidebar">
  858. <div class="falamuito"><span id="wipe">{text:frase} </span>
  859. </div>
  860.  
  861. <div id="jiqui"><div style="padding:10px">
  862.  
  863.  
  864.  
  865. <div style="max-height:200px;overflow:hidden;">
  866. <div class="jiqui">
  867. <img src="{image:sidebar1}" width= "170px;" height= "200px;"/></a>
  868.  
  869. </div></div></div>
  870.  
  871.  
  872. <div id="bolinha"><a href="/" style="color:#000" >refresh</a></div>
  873. <div id="bolinha"><a href="/ask" style="color:#000" >ask me</a></div>
  874. <div id="bolinha"><a href="{text:Link1}" style="color:#000" >{text:Link1 Title}</a></div>
  875. <div id="bolinha"><a href="{text:Link2}" style="color:#000" >{text:Link2 Title}</a></div>
  876. <div id="bolinha"><a href="{text:Link3}" style="color:#000" >{text:Link3 Title}</a></div>
  877. <div id="bolinha"><a href="{text:Link4}" style="color:#000" >{text:Link4 Title}</a></div>
  878. <div id="bolinha"><a href="{text:Link5}" style="color:#000" >{text:Link5 Title}</a></div>
  879. <div id="bolinha"><a href="{text:Link6}" style="color:#000" >{text:Link6 Title}</a></div></br></br>
  880. </br>
  881.  
  882.  
  883.  
  884. <div style="padding: 10px;-moz-border-radius: 2px; -webkit-border-radius: 5px; border-radius: 2px;">
  885. <b><big><big></big></big><font color='{color:desc}'>{description}</font></div>
  886.  
  887.  
  888.  
  889. <center>
  890.  
  891.  
  892.  
  893. </div>
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905. <div id="sbar5"> <center><div id="paginacaoml"><span style="font-weight: normal;">
  906. {block:Pagination}
  907. {block:JumpPagination length="4"}
  908. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  909. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  910. {/block:JumpPagination}
  911. {/block:Pagination}
  912. </center>
  913. </div></div>
  914.  
  915.  
  916.  
  917.  
  918. </div>
  919. </div></div>
  920.  
  921.  
  922.  
  923. </div>
  924.  
  925.  
  926.  
  927. </div>
  928.  
  929.  
  930.  
  931. </body>
  932.  
  933.  
  934.  
  935.  
  936. <div id="credit">
  937.  
  938.  
  939.  
  940. <a title="Theme feito por ANTIGO-BRASILEIRO" href="http://antigo-brasileiro.tumblr.com">Theme ©</a>
  941.  
  942.  
  943.  
  944. </div>
  945.  
  946.  
  947. </html>
Advertisement
Add Comment
Please, Sign In to add comment