Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- ESSE THEME É VISUALIZADO NO GOOGLE CHORME E INTERNET EXPLORER
- -->
- <!--
- MAIS UMA BASE DO PROBLEMASCOMAMOR
- -->
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>Crepúsculo</title>
- <link rel='shortcut icon' a href='http://perlbal.hi-pi.com/blog/517614/mn/1259504122-cullens.jpg'>
- <link href='http://fonts.googleapis.com/css?family=Bilbo+Swash+Caps' rel='stylesheet' type='text/css'>
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 50;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- {
- if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- <style>
- #tumblr_controls{position: fixed!important;z-index:15;}
- iframe#tumblr_controls { right:3px !important; position: fixed !important; -webkit-transition: opacity 0.5s linear; opacity: 0.6; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; transition: all 0.8s ease-out;}
- iframe#tumblr_controls:hover{ -webkit-transition: opacity 0.7s linear; opacity: 1; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
- /*** Negrito, Itálico, underline... ***/
- s {color: #8B4513;}
- i {color: #483D8B;}
- b {color: #483D8B; }
- u, span.sublinha {color: #8B4513; text-decoration: none; border-bottom: 1px dotted:#483D8B;}
- /*** Div coração ***/
- .coracao {display : block; font-size: 8pt; font-family: verdana, Lucida Sans Unicode; line-height: 15px; border-bottom : 1px solid #f4f4f3; text-indent : 5px; vertical-align : middle; background:
- url('http://static.tumblr.com/08l8cbl/HfUltaa4m/heart1.jpg') no-repeat left; padding-left : 10px;
- padding-bottom : 2px;}
- .coracao:hover {display : block; font-size: 8pt; font-family: verdana, Lucida Sans Unicode; line-height: 15px; border-bottom : 1px dashed #94730c; text-indent : 5px; vertical-align : middle; background : url('http://static.tumblr.com/08l8cbl/NMoltaa64/heart2.jpg') no-repeat left; padding-left : 10px; padding-bottom : 2px; background-color: #eee;}
- /*** Divisor da tag Chat - by: daniideutscher.tumblr ***/
- .chatdivisor {display : block; font-size: 8pt; font-family: verdana, Lucida Sans Unicode; line-height: 15px; border-bottom : 1px solid #f4f4f3; text-indent : 5px; vertical-align : middle; padding-left : 0px;
- padding-bottom : 2px;}
- /*** Div para tags ***/
- .fortags {border-left: 4px solid #FFF; background: #fff; padding: 3px;}
- /** Aqui é o Código do Background **/
- body {background-color: #000; background: url('http://portugues.torange.biz/photo/8/13/Escuro-Vermelho-fundo-1298875915_98.jpg'); background-attachment:fixed; background-repeat: repeat;}
- /*** Titulo dos posts. ***/
- h1 {color: #000; font-family: 'Baskerville Old Face', cursive; font-size:30px; line-height:25px; font-weight:normal; margin:0px; padding:5px; margin-bottom:-0px; text-align:left; letter-spacing:1px; border-bottom: 2px solid #eee;}
- /** h2 é o titulo do menu **/
- h2 {color: #FF0000; font-family: 'verdana', cursive; font-size:25px; line-height:24px; font-weight:normal; margin:0px; padding:5px; margin-bottom:-0px; text-align:left; letter-spacing: 1px;}
- /*** ask by biibis ***/
- .bubble {align:right;background: #eee; margin:1px 0px 3px 63px;padding:10px;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:-10px;top:10px;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:10px solid #eee;}
- /* Menu por HTMLAND */
- .menu { background: #000; text-align: left; font-size: 13px; font-family: 'Lucida Fax'; letter-spacing: 1px; color: #FF0000; width:200px; float: center; margin:2px 2px 2px 2px; -webkit-transition-duration: 0.50s; -webkit-border-radius: 0px 0px 0px 0px; text-shadow: 2px 2px 3px #eee; -webkit-transition-duration: .45s;}
- .menu:hover { background: #CD0000; text-align: left; font-size: 13px; font-family: 'Lucida Fax'; letter-spacing: 1px; color: #000000; width:202px; float: center; margin:2px 2px 2px 2px; -webkit-transition-duration: 0.50s;
- -webkit-border-radius: 10px 0px 10px 0px;}
- /*Menu pequeno*/
- .menu1 { background: #000; text-align: left; font-size: 13px; font-family: 'Lucida Fax'; letter-spacing: 1px; color: #FF0000; width:96px; float: center; margin:2px 2px 2px 2px; -webkit-transition-duration: 0.50s; -webkit-border-radius: 0px 0px 0px 0px; text-shadow: 2px 2px 3px #eee; -webkit-transition-duration: .45s;}
- .menu1:hover { background: #CD0000; text-align: left; font-size: 13px; font-family: 'Lucida Fax'; letter-spacing: 1px; color: #000000; width:96px; float: center; margin:2px 2px 2px 2px; -webkit-transition-duration: 0.50s;
- -webkit-border-radius: 10px 0px 10px 0px;}
- /*** Caixas que fazem o menu, ou aonde fica os posts ***/
- .box {background: #fff; margin-bottom: 10px; padding: 5px; text-align: justify; border: 1px solid #eee; -moz-box-shadow: 0 0 1em #eee; -webkit-box-shadow: 0 0 1em #eee; box-shadow: 0 0 1em #eee; -moz-border-radius: 10px; -webkit-border-radius: 10px; }
- .boxrhthemes {overflow:hidden; letter-spacing: 2px; text-align: justify; color: #000; font: 11px; background-color: #fff; padding:8px; border-radius: 4px;}
- .center {text-align: center; display: block; margin-left: auto; margin-right: auto;}
- .left {float: left; margin: 1px 4px 0 4px;}
- .right {float: right; margin: 1px 4px 0 4px;}
- /*** Seleção Colorida - By; MADLYLUV.com ***/
- ::-moz-selection
- {color: #fff;
- background: #3C3C3C;}
- ::selection
- {color: #fff;
- background: #1C1C1C;}
- /*** Ask ***/
- .askbox {
- align:right;
- background: #eee;
- margin:-60px 0px 5px 62px;
- padding:10px;
- left: 7px;
- width: 420px;
- position: relative;}
- .askbox p {margin:1px 0px;}
- .askbox span {
- display: block;
- position: absolute !important;
- width: 1px;
- height: 1px;
- font-size: 0;
- line-height: 1px;
- left: -10px;
- top: 10px;
- border-top: 7px solid transparent;
- border-bottom: 7px solid transparent;
- border-right: 10px solid #eee; text-shadow: 0 1px 1px #eee;}
- /*** Formatação da pessoa que pergunta ***/
- .asker img {
- width: 48px;
- height:48px;
- align:left;
- margin:0px 0px 5px 0px;}
- /*** Img ***/
- .imgpost {border: 2px solid #eee; -moz-border-radius: 4px; -webkit-border-radius: 4px;}
- /*** borda nas imagens ***/
- .borda{
- -webkit-border-radius: 20px;
- -moz-border-radius: 20px;
- border-radius: 20px;
- }
- /*** Formatação do link e link:hover ***/
- a { font-family: 'verdana'; color: #8B0000; text-decoration: none;
- }
- a:hover{font-family: 'verdana'; color: #000; text-decoration: none;
- }
- </style>
- </head>
- <body>
- <!--Mouse u.u-->
- <script src="http://blogonthenet.xpg.com.br/ttricks/estrelas.js"></script>
- <script type="text/javascript">
- var colour="red";
- </script>
- <!--Playlist-->
- <!--SCM Music Player by Adrian C Shum - http://scmplayer.net-->
- <script type="text/javascript" src="http://scmplayer.net/script.js" ></script>
- <script type="text/javascript">
- SCMMusicPlayer.init("{'skin':'skins/black/skin.css','playback':{'autostart':'true','shuffle':'false','volume':'50'},'playlist':[{'title':'Decode-paramore','url':'http://www.youtube.com/watch?v=RvnkAtWcKYg'}],'placement':'bottom','showplaylist':'false'}");
- </script>
- <!--End of SCM Music Player script-->
- <div style="position:absolute; width: 388px; left:2px; top:300px; position: fixed; text-align: left;" >
- <img src="http://www.outracoisa.com.br/wp-content/uploads/2008/12/crepusculo-01.jpg" width="300" >
- </div>
- <div style="position:absolute; width: 300px; right:30px; top:50px; text-align: right;" >
- <div class="box">
- <center><img src="http://25.media.tumblr.com/tumblr_lwm7kalGpm1qjs1jxo1_500.jpg" class="borda" width="285"></center>
- <center>
- Sua descrição aqui.Sua descrição aqui.Sua descrição aqui.Sua descrição aqui.Sua descrição aqui.Sua descrição aqui.Sua descrição aqui.Sua descrição aqui.
- </center></div>
- <br>
- <div class="boxrhthemes">
- <!-- Menu -->
- <center><div class="menu"><center><a href="/">Home</a></div>
- <div class="menu"><center><span onClick="document.getElementById('liuc').innerHTML=
- document.getElementById('01').innerHTML" style="CURSOR:hand;" title="about-me"> About</span></center> </div>
- <div class="menu"><center><a href="/ask"> Ask-me </a></div>
- <div class="menu"><center><span onClick="document.getElementById('liuc').innerHTML=
- document.getElementById('02').innerHTML" style="CURSOR:hand;" title="Tumblr">Tumblr</span></center> </div>
- <div class="menu"><center><a href="/submit"> Submit </a></div>
- <div class="menu"><center><span onClick="document.getElementById('liuc').innerHTML=
- document.getElementById('03').innerHTML" style="CURSOR:hand;" title="trailers">Crepúsculo</span></center> </div>
- <div class="menu"><center><a href="/suatag"> Textos </a></div>
- <div class="menu"><center><span onClick="document.getElementById('liuc').innerHTML=
- document.getElementById('04').innerHTML" style="CURSOR:hand;" title="fotos e sobre...">Imagens</span></center> </div>
- </center>
- </div><br>
- <div class='boxrhthemes'>
- <!------inicio contador------>
- <b><img src='http://2.bp.blogspot.com/_pummPotDZiY/R27zusVzkCI/AAAAAAAAAMI/gd5Zo8r7I7w/s200/mini+cora%C3%A7%C3%A3o.gif'>Visitantes online:<img src='http://2.bp.blogspot.com/_pummPotDZiY/R27zusVzkCI/AAAAAAAAAMI/gd5Zo8r7I7w/s200/mini+cora%C3%A7%C3%A3o.gif'></b> <i><script type="text/javascript" src="http://fastonlineusers.com/on3.php?d=seu tumblr"></script></i></a><br>
- <!------final contador------>
- <!------inicio contador------><b><img src='http://2.bp.blogspot.com/_pummPotDZiY/R27zusVzkCI/AAAAAAAAAMI/gd5Zo8r7I7w/s200/mini+cora%C3%A7%C3%A3o.gif'>No total de:<img src='http://2.bp.blogspot.com/_pummPotDZiY/R27zusVzkCI/AAAAAAAAAMI/gd5Zo8r7I7w/s200/mini+cora%C3%A7%C3%A3o.gif'></b> <i><script src="http://fastwebcounter.com/secure.php?s=seu tumblr"></script> visitantes</i></a></a>
- <!------final contador------>
- <marquee><b><s><img src='http://2.bp.blogspot.com/_pummPotDZiY/R27zusVzkCI/AAAAAAAAAMI/gd5Zo8r7I7w/s200/mini+cora%C3%A7%C3%A3o.gif'>Escreva sua Frase<img src='http://2.bp.blogspot.com/_pummPotDZiY/R27zusVzkCI/AAAAAAAAAMI/gd5Zo8r7I7w/s200/mini+cora%C3%A7%C3%A3o.gif'></b></s></marquee>
- </div>
- </div>
- <!-- conteudo -->
- </div>
- <div id="conteudo">
- <!-- liuc -->
- <div id="liuc">
- <!---------- Post's --------------->
- <div style="position:absolute; width:556px; left:300px; top:50px; padding-top:0px; z-index:2;">
- {block:Posts}
- {block:Regular}<div class="post"><div class="box">
- {block:Title}<h1>{Title}</h1>{/block:Title}
- <div class="entry">{Body}</div>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Texto</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a href="{ReblogUrl}">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a class="tag" href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Regular}
- <!---------------- Tag: Photo ------------->
- {block:Photo}
- <div class="post"><div class="box">
- <center>
- {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" margin-left=05px; width=530px class="borda">{LinkCloseTag}</center>
- {block:Caption}
- <br>
- <div class="caption">{Caption}</div>
- {/block:Caption}
- <div style="clear:both;"></div>
- <BR>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Photo</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a href="{ReblogUrl}">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Photo}
- <div style="clear:both;"></div>
- <!---------- Tag: Ask --------------------------->
- {block:Answer}
- <div class="post"><DIV CLASS="BOX">
- <img src="{AskerPortraitURL-40}"align="left" class="borda"/>
- <div class="bubble"><span></span>
- <div class="ask"><b>{Asker}</b>:
- <br>{Question}</font><br></div></div></span>
- <br><br><center>{Answer}</center>
- <div style="clear:both;"></div>
- <BR>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Ask</a> postada em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a></center> </div></div>
- </div></div>
- {block:Answer}
- <div style="clear:both;"></div>
- <!---------- Tag: Quote --------------------------->
- {block:Quote}
- <div class="post"><div class="box">
- <h1><blockquote>{Quote}</blockquote></h1>
- </span>
- {block:Source}<div class="source">— {Source}</div>{/block:Source}
- <BR>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Quote</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a class="reblogue" href="{ReblogUrl}">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a class="tag" href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Quote}
- <div style="clear:both;"></div>
- <!---------- Tag: Link's --------------------------->
- {block:Link}
- <div class="post"><div class="box"><a href="{URL}" class="link" {Target}><h1>{Name}</h1></a>
- {block:Description}
- <div class="description">{Description}</div>
- {/block:Description}
- <BR>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Link</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a class="reblogue" href="{ReblogUrl}">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a class="tag" href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Link}
- <div style="clear:both;"></div>
- <!---------- Tag: Chat --------------------------->
- {block:Chat}
- <div class="post"><div class="box">
- {block:Title}<div class="titulo"><a href="{Permalink}"><h1>{Title}</h1></a></div>
- {/block:Title}
- <div class="chat">
- {block:Lines}
- <div class="chatdivisor">
- <div class="{Alt} user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- </div>
- {/block:Label}
- {Line}
- </div>
- {/block:Lines}
- </div>
- <BR>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Chat</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a class="reblogue" href="{ReblogUrl};">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a class="tag" href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Chat}
- <div style="clear:both;"></div>
- <!---------- Tag: Audio --------------------------->
- {block:Audio}
- <div class="post"><div class="box">
- {AudioPlayerWhite}
- {block:Caption}
- <div class="caption">{Caption}</div>
- <div style="float:right; margin-top: -50px;"><h>Música ouvida {PlayCount} vezes</h> {block:ExternalAudio}(<a href="{ExternalAudioURL}">download!</a>){/block:ExternalAudio}</div>
- {/block:Caption}
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Música</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a class="reblogue" href="{ReblogUrl}">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a class="tag" href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Audio}
- <div style="clear:both;"></div>
- <!---------- Tag: Videos --------------------------->
- {block:Video}
- <div class="post">
- <div class="box">
- {Video-500}
- <br>
- {block:Caption}
- <div class="caption">{Caption}</div>
- {/block:Caption}
- <BR>
- <div class="infopost"></div>
- <!---------------- DATA DOS POSTS ------------->
- <div class="fortags"><div class="date"><a class="notes" href="{Permalink}"><center>Vídeo</a> postado em <strong>{DayOfMonth}</strong>/<strong>{MonthNumberWithZero}</strong>/<strong>{Year}</strong> às {12Hour}:{Minutes}{AmPm} | <a class="notes">{NoteCountWithLabel}</a> | (<a class="reblogue" href="{ReblogUrl};">reblogue this!</a>)</center></div>
- <div class="tag">{block:HasTags}Tags: {block:Tags} <a class="tag" href="{TagURL}">{Tag}</a> <img src="http://1.bp.blogspot.com/_pummPotDZiY/R0EFecEI7nI/AAAAAAAAAFI/OQy26AJTSnU/s200/cora%C3%A7%C3%A3o+vermelho.gif"> {/block:Tags}{/block:HasTags}</a></div></div>
- </div></div>
- {/block:Video}
- <div style="clear:both;"></div>
- <!---------------- NOTAS DOS POSTS ------------->
- {block:PostNotes}<div class="box">
- <div class="notes-bottom">
- {PostNotes}
- </div></div>
- {/block:PostNotes}
- {/block:Posts}
- <!---------------- Paginação ------------->
- <center><div class="caixap2">
- <div id="paginacaoml"><span class="info" style="font-weight: normal;">Página <b>{CurrentPage}</b> de <b>{TotalPages}</b></span> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}{/block:Pagination}
- {block:JumpPagination length="10"}
- {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}{block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
- </div></div>
- </center>
- <br>
- </div></div></div></div>
- <!--Falso i-frame-->
- <div id="01" style="display:none;">
- <div style="position:absolute; width:556px; left: 300px; top:50px; padding-top:0px; z-index:2;">
- <div class="box">
- <h2>About-me</h2>
- <hr>
- <img src='http://t3.gstatic.com/images?q=tbn:ANd9GcT3zhzZopJ2pgLWEjY4AfCFwW64w5m_AT-00Fo8WAwRF8ph34bAVa7COQ'>Sobre vc, Sobre vc, já sabe né?Sobre você.Sobre vc, Sobre vc, já sabe né?Sobre você.Sobre vc, Sobre vc, já sabe né?Sobre você.Sobre vc, Sobre vc, já sabe né?Sobre você.Sobre vc, Sobre vc, já sabe né?Sobre você.Sobre vc, Sobre vc, já sabe né?Sobre você.
- </div>
- <div class='box'>
- <h2>F.A.Q</h2>
- <hr>
- <img src='http://fotos.imagensporfavor.com/img/pics/glitters/c/coracao_partido-12382.gif'>Leia, demais perguntas na ask!<br>
- <b>Pergunta?</b><br>
- <b>R:</b><i>Resposta</i><br>
- <b>Pergunta?</b><br>
- <b>R:</b><i>Resposta</i><br>
- <b>Pergunta?</b><br>
- <b>R:</b><i>Resposta</i><br>
- <b>Pergunta?</b><br>
- <b>R:</b><i>Resposta</i><br>
- </div></div>
- <div id="02" style="display:none;">
- <div style="position:absolute; width:556px; left: 300px; top:50px; padding-top:0px; z-index:2;">
- <div class="box">
- <h2>About my Tumblr</h2>
- <hr>
- <img src='http://profile.ak.fbcdn.net/hprofile-ak-snc4/50555_47797880775_935716_q.jpg'>Meu tumblr é assim...reblogo sobre...falo sobre...posto...etc..Sobre seu tumblr,etc.Meu tumblr é assim...reblogo sobre...falo sobre...posto...etc..Sobre seu tumblr,etc.Meu tumblr é assim...reblogo sobre...falo sobre...posto...etc..Sobre seu tumblr,etc.Meu tumblr é assim...reblogo sobre...falo sobre...posto...etc..Sobre seu tumblr,etc.
- </div>
- <div class='box'>
- <h2> Créditos </h2>
- <hr>
- <img src='http://fotos.imagensporfavor.com/img/pics/glitters/c/coracao_partido-12382.gif'><b>Desenvolvimento:</b> <a href="http://themes-em-construcao.tumblr.com/">Themes em Construção</a>.<br>
- <img src='http://fotos.imagensporfavor.com/img/pics/glitters/c/coracao_partido-12382.gif'><b>Base por:</b> <a href="http://problemascomamor.tumblr.com">Matheus</a>. <br>
- <img src='http://fotos.imagensporfavor.com/img/pics/glitters/c/coracao_partido-12382.gif'><b>Menu e bg:</b><a href="http://htmland.tumblr.com"> Htmland </a>.<br>
- <img src='http://fotos.imagensporfavor.com/img/pics/glitters/c/coracao_partido-12382.gif'><b>Tags do theme , Box , Para tags e muitas ajudas:</b> <a href="http://daniideutscher.tumblr.com/"> Dani</a> e <a href="http://wewanthtml.tumblr.com"> WeWantHtml</a>.<br>
- <img src='http://fotos.imagensporfavor.com/img/pics/glitters/c/coracao_partido-12382.gif'><b>Imagem do sidebar:</b> <a href="http://likecats.tumblr.com/">Like Photo</a>.<br>
- </div>
- </div>
- <div id="03" style="display:none;">
- <div style="position:absolute; width:556px; left: 300px; top:50px; padding-top:0px; z-index:2">
- <div class='box'>
- <h2>Videos</h2>
- <hr><br>
- Crepúsculo<br>
- <iframe width="420" height="315" src="http://www.youtube.com/embed/vM7thd27V0o" frameborder="0" allowfullscreen></iframe><br>
- Lua Nova<br>
- <iframe width="500" height="315" src="http://www.youtube.com/embed/J0uk-TRssgA" frameborder="0" allowfullscreen></iframe><br>
- Eclipse<br>
- <iframe width="500" height="315" src="http://www.youtube.com/embed/y6Ii_cRk_8M" frameborder="0" allowfullscreen></iframe><br>
- Amanhecer(parte 1)<br>
- <iframe width="500" height="315" src="http://www.youtube.com/embed/kCqiCNWi2iI" frameborder="0" allowfullscreen></iframe><br>
- </div></div></div>
- <div id="04" style="display:none;">
- <div style="position:absolute; width:556px; left: 300px; top:50px; padding-top:0px; z-index:2">
- <div class='box'>
- <h2>Fotos</h2>
- <hr>
- <img src='http://t2.gstatic.com/images?q=tbn:ANd9GcR3ra8BkMF5pj_t83Ogrwq30E7r5HXhu-Ri2leire9hjeiAtkl67g' width='460' height='320'><br><br>
- <img src='http://t1.gstatic.com/images?q=tbn:ANd9GcT-kheuFvfMYQDhF8Df6QdqPvSNHqsh7fqYwvQe2RHNKkAs0eLoOg' width='430' height='340'><br><br>
- <img src='http://t1.gstatic.com/images?q=tbn:ANd9GcRK3Vjdr99T6rLKPV7vW9y3FWqtAPLkk514yr3kj-TkGwTQjbbSXQ' width='400' height='340'><br><br>
- <img src='http://t1.gstatic.com/images?q=tbn:ANd9GcQfc4_dfRBZuOqiIa38bQsZ6bmAes-NvLFWTf5hoUjr4-EzuQce' width='460' height='320'><br><br>
- <img src='http://t3.gstatic.com/images?q=tbn:ANd9GcQ2Who26oHuwuyafNtQ_CjfNHyZ22imJtHsp6YR4u-EoY_EkWBO' width='460' height='320'><br><br>
- <!--acrescente mais imagens-->
- <hr>
- <h2>Sobre a Saga</h2>
- <hr>
- <marquee><a href='http://pt.wikipedia.org/wiki/Crepúsculo_(livro)'><img src='http://profile.ak.fbcdn.net/hprofile-ak-ash2/41814_138242002860126_4079_q.jpg' title='sobre a saga'></a>
- <a href='http://pt.wikipedia.org/wiki/Bella_Swan'><img src='http://t0.gstatic.com/images?q=tbn:ANd9GcQ8blJAhIcWA0f45WysZU7mPWsi7a4Gv4hWxkQ5J2w0GIQgxbacWQ' height='50'title='sobre a Bella'></a>
- <a href='http://pt.wikipedia.org/wiki/Edward_Cullen'><img src='http://t3.gstatic.com/images?q=tbn:ANd9GcQBEfDFc44ShnuoL_o46MLQ-oOFAfeVCY7DWJbI-pdPOMRqo9wu0g' title='sobre o Edward'></a>
- <a href='http://pt.wikipedia.org/wiki/Jacob_Black'><img src='http://momwatchtwilight.com/images/new_moon_jacob-735761_50_50.jpg' title='sobre o Jacob'></a>
- <a href='http://thetwilightsaga.com/'><img src='http://profile.ak.fbcdn.net/hprofile-ak-snc4/211042_119153184836377_7177877_q.jpg' title='site official'></a>
- <marquee>
- </div></div></div>
- </div></div></div>
- </div>
- </div></div></div></div></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment