Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <! Theme #EXCLUSIVO DE ANTIGO-BRASILEIRO PARA SDPM, NÃO RETIRE OS CRÉDITOS, NÃO COPIE!!!!>
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head> <!-- DEFAULT VARIABLES -->
- <meta name="font:text" content="verdana" />
- <meta name="font:title" content="georgia" />
- <meta name="color:background" content="#fbfbfb" />
- <meta name="color:text" content="#000" />
- <meta name="color:entry" content="#fff" />
- <meta name="color:desc" content="#fff" />
- <meta name="color:links" content="#000" />
- <meta name="color:links1" content="#000" />
- <meta name="color:linktex" content="#fff" />
- <meta name="color:pag" content="#fff" />
- <meta name="image:background" content=""/>
- <meta name="image:sidebar1" content=""/>
- <meta name="image:sidebar1" content=""/>
- <meta name="text:frase" content="bote o titulo aqui"/>
- <meta name="text:Link1" content="/" />
- <meta name="text:Link1 Title" content="link1" />
- <meta name="text:Link2" content="/" />
- <meta name="text:Link2 Title" content="link2" />
- <meta name="text:Link3" content="/" />
- <meta name="text:Link3 Title" content="link3" />
- <meta name="text:Link4" content="/" />
- <meta name="text:Link4 Title" content="link4" />
- <meta name="text:Link5" content="/" />
- <meta name="text:Link5 Title" content="link5" />
- <meta name="text:Link6" content="/" />
- <meta name="text:Link6 Title" content="link6" />
- <meta name="text:Link7" content="/" />
- <meta name="text:Link7 Title" content="link7" />
- <meta name="text:Link8" content="/" />
- <meta name="text:Link8 Title" content="link8" />
- <meta name="text:Link9" content="/" />
- <meta name="text:Link9 Title" content="link9" />
- <meta name="text:Link10" content="/" />
- <meta name="text:Link10 Title" content="link10" />
- <script type="text/javascript">
- // <![CDATA[
- // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
- var fgcolour="#656565"; // foreground colour
- var hlcolour="#b5b5b5"; // highlight colour
- var bgcolour="#FFFFFF"; // background colour
- var glcolour="#f8f8f8"; // colour of glow around letters
- var speed=66; // speed colours change, 1 second = 1000
- var delay=50; // how long to wait between wipes
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- *Multi-Wipe Neon Text Effect*
- *(c)2003-12 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var w_txt, w_txl;
- var w_flp=bgcolour;
- var w_sty=Math.floor(Math.random()*8);
- var w_cnt=-1;
- var wipes=new Array();
- var wrand=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, wiper, wipei;
- wiper=document.getElementById("wipe");
- w_txt=wiper.firstChild.nodeValue;
- w_txl=w_txt.length;
- while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
- for (i=0; i<w_txl; i++) {
- wipei=document.createElement("span");
- wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
- wipes[i]=wipei.style;
- wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=fgcolour;
- wiper.appendChild(wipei);
- }
- if (alink) {
- wiper.style.cursor="pointer";
- wiper.onclick=function() { top.location.href=alink; }
- }
- for (i=0; i<w_txl; i++) wrand[i]=i;
- wiper=setInterval("randwipe()", speed);
- }}
- function c(i, shade) {
- if (shade==bgcolour) wipes[i].textShadow="none";
- else wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=shade;
- }
- function randwipe() {
- var w_old;
- if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
- else {
- w_cnt=-1;
- w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- w_old=w_sty;
- while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
- }
- }
- function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
- function wipe0() { // curtains
- if (w_cnt<Math.floor(w_txl/2)) {
- c(w_cnt, hlcolour);
- c(w_txl-w_cnt-1, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt, w_flp);
- c(w_txl-w_cnt-1, w_flp);
- }
- }
- function wipe1() { // random
- var i, rand, temp;
- if (w_cnt==0) {
- for (i=0; i<w_txl; i++) {
- rand=Math.floor(Math.random()*w_txl);
- temp=wrand[i];
- wrand[i]=wrand[rand];
- wrand[rand]=temp;
- }
- }
- if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
- }
- function wipe2() { // forwards
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- }
- function wipe3() { // backwards
- if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
- }
- function wipe4() { // searchlight
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
- if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
- if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- }
- function wipe5() { // fade
- var i;
- if (w_cnt<w_txl+3) {
- var start=(w_flp==fgcolour)?bgcolour:fgcolour;
- var temp="#";
- for (i=1; i<6; i+=2) {
- var hex1=parseInt(start.substring(i,i+2),16);
- var hex2=parseInt(w_flp.substring(i,i+2),16);
- temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
- }
- for (i=0; i<w_txl; i++) c(i, temp);
- }
- }
- function wipe6() { // flash
- var i;
- if (w_cnt<6*Math.floor(w_txl/6)+3) {
- if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
- else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
- else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
- }
- }
- function wipe7() { // checkerboard
- var qtr=Math.floor(w_txl/4);
- if (w_cnt<qtr) {
- c(w_cnt, hlcolour);
- c(w_cnt+2*qtr, hlcolour);
- }
- else if (w_cnt<2*qtr) {
- c(w_cnt-qtr, w_flp);
- c(w_cnt+qtr, w_flp);
- }
- else if (w_cnt<3*qtr) {
- c(w_cnt-qtr, hlcolour);
- c(w_cnt+qtr, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt-2*qtr, w_flp);
- c(w_cnt, w_flp);
- }
- }
- // ]]>
- </script>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <link href='http://fonts.googleapis.com/css?family=Zeyada' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
- <style type="text/css">
- body {
- color:{color:text};
- background-color: {color:background};
- background-image:url('http://static.tumblr.com/vz9dmqi/TOFm98119/vovov.png');
- color:{color:text};
- font-family: verdana;
- font-size: 11px;
- text-align: center;
- background-attachment:fixed;
- background-repeat: no-repeat;
- background-position: 103% 110%;
- line-height:110%;
- text-align:justify
- }
- a:link, a:active, a:visited {
- color: {color:links};
- text-decoration:none;
- }
- a:hover {
- color: {color:links};
- -webkit-transition-duration: 0.8s;
- -moz-transition-duration: 0.8s;
- }
- .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;}
- .bubble p {margin:1px 0px;}
- .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};}
- .askborder{-webkit-border-radius: 3px 3px 3px 3px; -webkit-transition-duration: 0.6s; }.askborder:hover{ -webkit-border-radius: 180px}
- #aithi2 {margin-left: 824px;margin-bottom: 101px;}
- #aithi {margin-left: 50px;margin-top: 3px;position:fixed;}
- #aiderlan {width: 222px; padding: 4px; background-color: #ffffff; position:fixed; margin-left: -24px; font-size: 13px; font-family: georgia; text-transform: uppercase; text-align: center; margin-top: 2px;}
- #aiderlan img{width: 213px;height: 300px;border: 0px solid #f1f1f1}
- #aiderlan img:hover {gray;-webkit-filter: grayscale(1);-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out;}
- #lan {width: 222px; padding:0px;background-color:#0; margin-top: 4px; font-family:tinytots; font-size: 8px; text-transform: uppercase}
- .lan a{width: 43px; display: block; background-color: #f6f6f6; text-align: center; padding: 5px 5px 5px 5px; font-family:tinytots; font-size: 8px; text-transform: uppercase}
- .lan a:hover{color: #999999; background-color: #ffffff;}
- .lan2 {width: 22px; padding:0px;background-color:#0; margin-top: -23px; margin-left: 56px; }
- .lan3 {width: 22px; padding:0px;background-color:#0; margin-top: -23px; margin-left: 112px; }
- .lan4 {width: 22px; padding:0px;background-color:#0; margin-top: -23px; margin-left: 169px; }
- #fthi {border-radius: 0.9em;width:120px; background-color: #ffffff; padding: 4px; float: right; position: fixed; margin-left: 0px; margin-top: -59px;}
- #fthi img{width: 112px;height: 120px; -webkit-transition-duration: 0.7s; border: 4px solid #f1f1f1}
- #fthi img:hover{opacity: 0.7;}
- .cre {width:122px; background-color: #ffffff; padding: 2px; margin-top: 3px; font-size: 9px; margin-left: -3px; border-top: 1px solid #f1f1f1; text-align: center; height: 13px; padding-top: 4px;}
- #linkstd {width:320px; background-color: #f; padding: 0px; float: right; position: fixed; margin-left: 0px; margin-top: -59px; -webkit-transition-duration: 0.7s; }
- #lthi {width: 99px; background-color: #f; padding: 7px; -webkit-transition-duration: 0.7s; opacity: 0}
- #lthi:hover {opacity: 0.9}
- .lthi a{width: 110px; padding: 2px; background-color: #f6f6f6; font-size: 9px; text-align: center; display: block; margin: 0 0px 1px 0; color: #999999}
- .falamuito {font-size: 15px; font-family: calibri;color: {color:#000}; position:fixed; padding: 4px; margin-left: 16px; margin-top: -4px;height: autopx; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; padding-right: 3px;}
- #tt {background-color: transparent;
- width: 195px;
- overflow:fixed; padding: 4px;
- position:fixed;text-align:justify;
- text-transform:none;
- top: 220px;left: 832px;font-family:Helvetica, Arial, sans-serif;}
- #sbar5 {width: 104px;
- background-color: #F7F7F7;
- padding: 4px;
- float: right;
- height: 13px;
- position: fixed;
- margin-left: 832px;
- margin-top: 94px;
- }
- #credit{position:fixed;bottom:5px;right:15px;}
- #credit a{color: #000;font-size:10px;font-family:consolas;text-decoration:none;}
- #icon {
- text-align: center;
- width: 100px;
- display: block;
- padding: 8px;
- }
- #container {
- background-color:transparent;
- width: 465px;
- position: absolute;
- top:13px;
- left: 290px;
- padding-bottom: 5px;
- }
- #entries {margin: -10px 0 0px 0}
- #entry {
- width: 500px;
- border-bottom: 2px solid {color:background};
- background-color:{color:entry};
- text-align: justify;
- padding: 20px;
- margin-bottom:0px;}
- .image{text-align: center; margin: 0 0 5px 0}
- .image img{border: 0px; margin: 0; padding: 0;}
- #ask_form{width: 500px; }
- .search_result{font-size: 12px; text-align: center}
- .source{display:none}
- h1{
- font-family: georgia;
- font-size:20px;
- letter-spacing: -1px;
- line-height: 20px;
- text-transform: none;
- font-weight: normal;
- margin: 0 0 5px 0;
- text-align: center;
- }
- 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; }
- .fj {margin-top: -45px;font-size: 40px; font-family: Elephant; line-height: 120px; color:{color:text};}
- .qquote {font-family: calibri; text-align: left; font-size: 14px; line-height: 16px; padding: 0px;}
- .qsource {font-size: 8px; font-family: PF Ronda Seven;text-align: right;margin-bottom: 5px;}
- .chat{
- line-height: 12px;
- list-style: none
- }
- .chat ul {
- line-height: 15px;
- list-style: none;
- padding: 0px;
- line-height: 20px;
- background: {color:entry};
- }
- .person1 {
- background-color: {color:entry};
- color: {color:text}
- }
- .person1 .label {
- font-weight: bold;
- padding: 0px;
- margin-left: 5px;
- color: {color: text}
- }
- .person2 {
- background-color: {color:entry};
- color: {color: text}
- }
- .person2 .label {
- font-weight: bold;
- padding: 0px;
- margin-left: 5px;
- color: {color: text}
- }
- .audioimage{
- float:left;
- text-align: center;
- margin: 0 10px 5px 0;
- width: 205px;
- border: 15px solid {color:background};
- }
- .audioimage img{
- max-width: 205px;
- height: auto;
- margin: 0 0 2px 0
- }
- .playcount {font-style: italic}
- .asker {
- width: 480px;
- background-color: {color:background};
- color:{color:text};
- padding: 10px; }
- .asker img{
- float: left;
- margin: 0px 4px 2px 0
- }
- .asker a{
- font-size: 20px;
- color:{color:links};
- text-transform: lowercase;
- line-height: 27px;
- padding: 0; margin: 0;
- font-family: georgia;
- }
- .asker a:hover{
- font-size: 20px;
- color:{color:links};
- text-transform: lowercase;
- line-height:27px;
- padding: 0;
- margin: 0;
- font-family: georgia;
- }
- .answer {padding: 5px 0 0 0; }
- #cap {
- padding: 2px 0 0 0;
- width: 500px;
- margin: 0 0 0 5px
- }
- .info {
- margin-top: 10px;
- border-left: 0px solid {color:entry};
- padding: 5px;
- background-color: {color:entry};
- text-align: left;
- font-size: 8px;
- font-family: tinytots;
- text-transform: uppercase;
- }
- .info a {font-size: 8px;text-transform:uppercase;}
- .info2 {
- padding: 2px;
- border-bottom: 1px dotted {color:entry};
- text-align: right;
- }
- .tags {
- color: {color:text};
- font-size: 9px;
- font-family: verdana;
- display: inline;
- list-style: none;
- text-transform: none;
- }
- .tags a {
- font-size: 9px;
- color: {color:text};
- display: inline;
- list-style: none;
- text-transform: none;
- }
- #nts {
- width: 500px;
- margin-left: 95px;
- padding: 10px;
- margin-top: 5px;
- font-size: 10px;
- text-align: left
- }
- #nts img{display: none; border:0px}
- #clear{
- clear: both;
- width: 50px;
- height: 0px;
- background-color: transparent
- }
- #prevnextlinks{
- text-align: center;
- width: 500px;
- background-color:{color:entry};
- padding: 7px 20px 7px 20px;
- margin: 0 0 2px 0;
- font-size: 10px
- }
- #notes {
- width: 500px;
- margin: 0px;
- margin-left: 0px;
- padding: 5px;
- text-align: left
- }
- ol.notes {list-style: none; margin: 0 20px 0 10px; padding: 0px}
- ol.notes li {margin: 0px; padding: 2px;}
- #notes img{border:0px}
- #notes a{font-size: 10px}
- #tumblr_controls{position: fixed!important}
- ::-webkit-scrollbar{width:5px;height:5px;}
- ::-webkit-scrollbar-button:start:decrement
- ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
- ::-webkit-scrollbar-track-piece{background-color:#fff;-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
- ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:#000;-webkit-border-radius:px;}
- ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:#000;-webkit-border-radius:px;}
- {CustomCSS}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #pag {width:222px; background-color: #ffffff; padding: 4px; float: right; height: 13px; position: fixed; margin-left: 0px; margin-top: 26px;}
- .ilikemandy{padding:2px; font-size: 11px; text-align:center; background-color:; margin:0px; height: auto; text-align: center; text-transform:none; letter-spacing:0px; font-family:calibri;}
- #paginacaoml {font-family: arial sans; font-size:8px; font-weight: none; line-height: 15px; text-shadow: 0 0px 0px #000;}
- #paginacaoml a {background: {color:pag}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
- #paginacaoml a:hover {background: {color:pag};}
- #paginacaoml span.pagina_atual {background: #; margin: 0 1px 0 0; padding: 1px 3px; color:{color:links}; text-decoration: none;}
- #paginacaoml span.info {background: {color:pag}; margin: 0 0px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
- </style>
- </head>
- <body>
- <div id="container">
- <div id="entries">
- {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
- <script type="text/javascript"
- src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
- {block:SearchPage}<div class="search_result">{SearchResultCount} results</div>{/block:SearchPage}
- {block:Posts}
- <div id="entry">
- {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}
- <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Photo}
- {block:Photoset}{Photoset-500}
- <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>
- {/block:Photoset}
- {block:Quote}
- <div class="qquote"><div class="fj">“</div><div style="margin-top: -80px;margin-left:25px;background-color: whitesmoke;padding: 15px;-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;">{Quote}</div></div>
- {block:Source}<div class="qsource"><br> — {Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <h1><a href="{URL}" {Target}>{Name}</a></h1>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
- <div class="chat"><ul>{block:Lines}
- <li class="person{UserNumber}">{block:Label}
- <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
- {/block:Chat}
- {block:Audio}
- <div class="audioimage">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
- {AudioPlayerWhite}
- <div class="playcount">{PlayCountWithLabel}</div>
- <div class="cap">{block:Caption}{Caption}{/block:Caption}</div>
- {/block:Audio}
- {block:Video}{Video-500}
- <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Video}
- {block:Answer}
- <img src="{AskerPortraitURL-48}" align="left" class="askborder" class="dreamgirl"><div class="bubble"><span></span><b>{Asker}</b>
- {Question} </div><br>{Answer} {/block:Answer}
- <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
- <img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
- {/block:ContentSource}</div>
- <div id="clear"></div>
- {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}
- <br>
- {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
- </div></div>
- {/block:Posts}
- {block:PostNotes}
- <div id="nts"><div id="ntstext"> . {PostNotes}</div></div>
- {/block:PostNotes}
- </div>
- </div>
- </div></div>
- </div></div></div></div>
- <div id="aithi">
- <div id="pag"><div class="falamuito"><span id="wipe">Sociedade dos Poetas Mortos</span>
- <div id="aiderlan">
- <img src="http://a6.sphotos.ak.fbcdn.net/hphotos-ak-ash3/579891_174155426048231_1078164958_n.jpg" style="
- outline: dashed 1px black;
- ">
- <div id="lan"><div class="lan">
- <a href="/">lan1</a>
- <div class="lan2"> <a href="/">lan2</a> </div>
- <div class="lan3"> <a href="/">lan3</a></div>
- <div class="lan4"> <a href="/">lan4</a></div>
- </div>
- <span class="ilikemandy"><center>Ela é o tipo que lê Nicholas Sparks, assiste comédia romântica, ouve músicas lentas, escreve poesias e gosta de tudo que envolve o amor – Mas nem sequer vive um.<script src="http://connect.facebook.net/pt_BR/all.js#xfbml=1"></script><fb:like layout="button_count" show_faces="false" href="http://www.sociedadedospoetasmortos.com/"></fb:like></center>
- </div>
- </div></div>
- </div></div></div></div>
- <div id="aithi2">
- <div id="fthi"><img src="http://25.media.tumblr.com/tumblr_m3xqneezqQ1qmyvlfo1_250.jpg">
- <div class="cre">Theme<b> <a href="http://antigo-brasileiro.tumblr.com/">exclusive</a></b> <a href="http://antigo-brasileiro.tumblr.com/">©</a></div></div>
- <div id="linkstd"><div id="lthi">
- <div class="lthi">
- <a href="/">link1</a>
- <a href="/">link2</a>
- <a href="/">link3</a>
- <a href="/">link4</a>
- <a href="/">link5</a>
- </div></div></div></div>
- </div>
- </div></div>
- <div id="sbar5"> <center><div id="paginacaoml"><span style="font-weight: normal;">
- {block:Pagination}
- {block:JumpPagination length="4"}
- {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
- {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
- {/block:JumpPagination}
- {/block:Pagination}
- </center>
- </div></div>
- </div></div>
- <div id="tt">
- <div align="left">
- <script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
- <script>
- new TWTR.Widget({
- version: 2,
- type: 'profile',
- rpp: 3,
- interval: 30000,
- width: 120,
- height: 300,
- theme: {
- shell: {
- background: '#fbfbfb',
- color: '#000000'
- },
- tweets: {
- background: '#fbfbfb',
- color: '#6e6b6e',
- links: '#000000'
- }
- },
- features: {
- scrollbar: false,
- loop: false,
- live: false,
- behavior: 'all'
- }
- }).render().setUser('@thicaa').start();
- </script>
- </div></div>
- </body>
- <div id="credit">
- <a title="Theme feito por ANTIGO-BRASILEIRO, + base de late-to-write" href="http://antigo-brasileiro.tumblr.com">© theme</a>
- </div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment