ANTIGO-BRASILEIRO

sorrisos77

Aug 28th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.76 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 #27 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:palavra" content="umapalavra"/>
  47.  
  48. <meta name="text:frase" content="bote a frase aqui"/>
  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.  
  59.  
  60.  
  61.  
  62. <script type="text/javascript">
  63.  
  64. // <![CDATA[
  65.  
  66. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  67.  
  68. var fgcolour="#656565"; // foreground colour
  69.  
  70. var hlcolour="#b5b5b5"; // highlight colour
  71.  
  72. var bgcolour="#FFFFFF"; // background colour
  73.  
  74. var glcolour="#f8f8f8"; // colour of glow around letters
  75.  
  76. var speed=66; // speed colours change, 1 second = 1000
  77.  
  78. var delay=50; // how long to wait between wipes
  79.  
  80. var alink="/"; // page to link text to (set to ="" for no link)
  81.  
  82.  
  83.  
  84. /****************************
  85.  
  86. *Multi-Wipe Neon Text Effect*
  87.  
  88. *(c)2003-12 mf2fm web-design*
  89.  
  90. * http://www.mf2fm.com/rv *
  91.  
  92. * DON'T EDIT BELOW THIS BOX *
  93.  
  94. ****************************/
  95.  
  96. var w_txt, w_txl;
  97.  
  98. var w_flp=bgcolour;
  99.  
  100. var w_sty=Math.floor(Math.random()*8);
  101.  
  102. var w_cnt=-1;
  103.  
  104. var wipes=new Array();
  105.  
  106. var wrand=new Array();
  107.  
  108. window.onload=function() { if (document.getElementById) {
  109.  
  110. var i, wiper, wipei;
  111.  
  112. wiper=document.getElementById("wipe");
  113.  
  114. w_txt=wiper.firstChild.nodeValue;
  115.  
  116. w_txl=w_txt.length;
  117.  
  118. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  119.  
  120. for (i=0; i<w_txl; i++) {
  121.  
  122. wipei=document.createElement("span");
  123.  
  124. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  125.  
  126. wipes[i]=wipei.style;
  127.  
  128. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  129.  
  130. wipes[i].color=fgcolour;
  131.  
  132. wiper.appendChild(wipei);
  133.  
  134. }
  135.  
  136. if (alink) {
  137.  
  138. wiper.style.cursor="pointer";
  139.  
  140. wiper.onclick=function() { top.location.href=alink; }
  141.  
  142. }
  143.  
  144. for (i=0; i<w_txl; i++) wrand[i]=i;
  145.  
  146. wiper=setInterval("randwipe()", speed);
  147.  
  148. }}
  149.  
  150.  
  151.  
  152. function c(i, shade) {
  153.  
  154. if (shade==bgcolour) wipes[i].textShadow="none";
  155.  
  156. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  157.  
  158. wipes[i].color=shade;
  159.  
  160. }
  161.  
  162.  
  163.  
  164. function randwipe() {
  165.  
  166. var w_old;
  167.  
  168. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  169.  
  170. else {
  171.  
  172. w_cnt=-1;
  173.  
  174. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  175.  
  176. w_old=w_sty;
  177.  
  178. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  179.  
  180. }
  181.  
  182. }
  183.  
  184.  
  185.  
  186. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  187.  
  188.  
  189.  
  190. function wipe0() { // curtains
  191.  
  192. if (w_cnt<Math.floor(w_txl/2)) {
  193.  
  194. c(w_cnt, hlcolour);
  195.  
  196. c(w_txl-w_cnt-1, hlcolour);
  197.  
  198. }
  199.  
  200. else if (w_cnt<w_txl) {
  201.  
  202. c(w_cnt, w_flp);
  203.  
  204. c(w_txl-w_cnt-1, w_flp);
  205.  
  206. }
  207.  
  208. }
  209.  
  210.  
  211.  
  212. function wipe1() { // random
  213.  
  214. var i, rand, temp;
  215.  
  216. if (w_cnt==0) {
  217.  
  218. for (i=0; i<w_txl; i++) {
  219.  
  220. rand=Math.floor(Math.random()*w_txl);
  221.  
  222. temp=wrand[i];
  223.  
  224. wrand[i]=wrand[rand];
  225.  
  226. wrand[rand]=temp;
  227.  
  228. }
  229.  
  230. }
  231.  
  232. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  233.  
  234. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  235.  
  236. }
  237.  
  238.  
  239.  
  240. function wipe2() { // forwards
  241.  
  242. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  243.  
  244. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  245.  
  246. }
  247.  
  248.  
  249.  
  250. function wipe3() { // backwards
  251.  
  252. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  253.  
  254. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  255.  
  256. }
  257.  
  258.  
  259.  
  260. function wipe4() { // searchlight
  261.  
  262. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  263.  
  264. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  265.  
  266. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  267.  
  268. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  269.  
  270. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  271.  
  272. }
  273.  
  274.  
  275.  
  276. function wipe5() { // fade
  277.  
  278. var i;
  279.  
  280. if (w_cnt<w_txl+3) {
  281.  
  282. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  283.  
  284. var temp="#";
  285.  
  286. for (i=1; i<6; i+=2) {
  287.  
  288. var hex1=parseInt(start.substring(i,i+2),16);
  289.  
  290. var hex2=parseInt(w_flp.substring(i,i+2),16);
  291.  
  292. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  293.  
  294. }
  295.  
  296. for (i=0; i<w_txl; i++) c(i, temp);
  297.  
  298. }
  299.  
  300. }
  301.  
  302.  
  303.  
  304. function wipe6() { // flash
  305.  
  306. var i;
  307.  
  308. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  309.  
  310. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  311.  
  312. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  313.  
  314. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  315.  
  316. }
  317.  
  318. }
  319.  
  320.  
  321.  
  322. function wipe7() { // checkerboard
  323.  
  324. var qtr=Math.floor(w_txl/4);
  325.  
  326. if (w_cnt<qtr) {
  327.  
  328. c(w_cnt, hlcolour);
  329.  
  330. c(w_cnt+2*qtr, hlcolour);
  331.  
  332. }
  333.  
  334. else if (w_cnt<2*qtr) {
  335.  
  336. c(w_cnt-qtr, w_flp);
  337.  
  338. c(w_cnt+qtr, w_flp);
  339.  
  340. }
  341.  
  342. else if (w_cnt<3*qtr) {
  343.  
  344. c(w_cnt-qtr, hlcolour);
  345.  
  346. c(w_cnt+qtr, hlcolour);
  347.  
  348. }
  349.  
  350. else if (w_cnt<w_txl) {
  351.  
  352. c(w_cnt-2*qtr, w_flp);
  353.  
  354. c(w_cnt, w_flp);
  355.  
  356. }
  357.  
  358. }
  359.  
  360. // ]]>
  361.  
  362. </script>
  363.  
  364.  
  365.  
  366. <title>{Title}</title>
  367. <link rel="shortcut icon" href="{Favicon}">
  368. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  369. {block:Description}
  370. <meta name="description" content="{MetaDescription}" />
  371. {/block:Description}
  372.  
  373.  
  374. <link href='http://fonts.googleapis.com/css?family=Zeyada' rel='stylesheet' type='text/css'>
  375.  
  376. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  377.  
  378.  
  379. <style type="text/css">
  380.  
  381.  
  382.  
  383. body {
  384. color:{color:text};
  385. background-color: {color:background};
  386. background-image:url('http://media.tumblr.com/tumblr_m4sp9vKy8j1qj5ffr.png');
  387. color:{color:text};
  388. font-family: verdana;
  389. font-size: 11px;
  390. text-align: center;
  391. background-attachment:fixed;
  392.  
  393. background-repeat:
  394.  
  395. line-height:110%;
  396.  
  397. text-align:justify
  398. }
  399.  
  400. a:link, a:active, a:visited {
  401. color: {color:links};
  402. text-decoration:none;
  403. }
  404.  
  405. a:hover {
  406. color: {color:links};
  407. -webkit-transition-duration: 0.8s;
  408. -moz-transition-duration: 0.8s;
  409. }
  410.  
  411.  
  412. .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;}
  413. .bubble p {margin:1px 0px;}
  414. .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};}
  415. .askborder{-webkit-border-radius: 3px 3px 3px 3px; -webkit-transition-duration: 0.6s; }.askborder:hover{ -webkit-border-radius: 180px}
  416.  
  417.  
  418.  
  419.  
  420.  
  421. #bolinha {margin-top:2px;calibri;font-size:8px;text-align:right;
  422. 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;}
  423.  
  424. #bolinha:hover { background-color:#ffffff;}
  425.  
  426.  
  427.  
  428. #sidebar {outline: dashed 1px #000;width:90px;font-family:'calibri'; font-size:10px; color:#777;margin-top:290px;margin-left: 65px;float: center;text-align: justify; position: fixed ;padding: 3px;background: #ffffff; }
  429.  
  430.  
  431.  
  432. #hak {width: 300px;
  433. height: 22px;
  434. position: fixed;
  435. background-color: transparent;
  436. margin-left: -198px;
  437. z-index: 0;
  438. margin-top: -115px;
  439. text-align: right;
  440. -webkit-transform: rotate(-28deg);}
  441. .optitle{font-family: Homenaje; font-size: 15px; line-height: 14px; margin-top: 117px; margin-left: -2px; text-align: center; width: 116px; color: #848686; height: 18px; word-spacing: 1px; background-color: #FFFFFF}
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449. #foto{
  450. width: 190px;
  451. height: auto;
  452. top: 212px;
  453. left:170px;
  454. position:fixed;
  455. padding: 5px ;
  456. background-color:#fff;
  457. color:#fff;
  458. text-align:center;
  459. float:right;
  460. }
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467. .falamuito {font-size: 15px; font-family: calibri;color: {color:#000}; position:fixed; padding: 4px; margin-left: 1px; margin-top: -4px;height: autopx; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; padding-right: 3px;}
  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.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486. #sbar5 {width: 11px;
  487. height: 58px;
  488. margin-left: 85px;
  489. margin-top: -262px;
  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: 371px;
  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. .rs {right:1px;margin-left: autopx; margin-top: -450px;font-size: 10px; background-color: #000000; font-family: Homenaje; line-height:16px; color:#fff; position: fixed; -webkit-border-radius: 0px 0px 0px 0px; overflow: hidden; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index: 1; text-align: center; font-style: bold; padding-bottom: 9px}
  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.  
  845. </div>
  846.  
  847. </div>
  848.  
  849.  
  850.  
  851. </div></div>
  852.  
  853. </div></div></div></div>
  854.  
  855.  
  856.  
  857.  
  858. <div id="sidebar">
  859. <div id="hak">
  860. <center><div class="optitle">{text:palavra}</div></div>
  861.  
  862. <div id="bolinha"><a href="/" style="color:#000" >refresh</a></div>
  863. <div id="bolinha"><a href="/ask" style="color:#000" >ask me</a></div>
  864. <div id="bolinha"><a href="{text:Link1}" style="color:#000" >{text:Link1 Title}</a></div>
  865. <div id="bolinha"><a href="{text:Link2}" style="color:#000" >{text:Link2 Title}</a></div>
  866. <div id="bolinha"><a href="{text:Link3}" style="color:#000" >{text:Link3 Title}</a></div>
  867. <div id="bolinha"><a href="{text:Link4}" style="color:#000" >{text:Link4 Title}</a></div>
  868.  
  869.  
  870.  
  871. <b>{description}<font color='#FF6660'>...</font> </b>
  872.  
  873. </div>
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880.  
  881.  
  882.  
  883.  
  884.  
  885.  
  886.  
  887. <div id="foto">
  888.  
  889.  
  890.  
  891.  
  892.  
  893. <img src="{image:sidebar1}" width= "190px;" height= "260px;"/></a> <br><div id="pag"><div class="falamuito"><span id="wipe">{text:frase}</span>
  894. </div>
  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.  
  924. </body>
  925.  
  926.  
  927.  
  928.  
  929. <div id="credit">
  930.  
  931.  
  932.  
  933. <a title="Theme feito por ANTIGO-BRASILEIRO, + base de late-to-write" href="http://antigo-brasileiro.tumblr.com">© Theme</a>
  934.  
  935.  
  936.  
  937. </div>
  938.  
  939.  
  940. </html>
Advertisement
Add Comment
Please, Sign In to add comment