ANTIGO-BRASILEIRO

exclusivo para lucas

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