Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <meta http-equiv="x-dns-prefetch-control" content="off"/>
- <html>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <! theme por uncensore-d | não copie e não retire os créditos, por favor !>
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <!-- DEFAULT VARIABLES -->
- <meta name="color:background" content="#f3f3f3" />
- <meta name="color:link" content="#000000" />
- <meta name="color:linkhover" content="#696969" />
- <meta name="color:text" content="#000000" />
- <meta name="color:post" content="#ffffff" />
- <meta name="color:sidebar" content="#ffffff" />
- <meta name="color:scroll" content="#000000" />
- <meta name="color:border" content="#ffffff" />
- <meta name="color:sidlinks hover" content="#ffffff" />
- <meta name="color:sidlinks txt hover" content="#000000" />
- <meta name="color:sidlink" content="#000000" />
- <meta name="if:WipeTitle" content="1"/>
- <meta name="if:Show tags" content="1"/>
- <meta name="if:Enable endless scrolling" content="0"/>
- <meta name="image:background" content="" />
- <meta name="image:sidebar 1" content="http://24.media.tumblr.com/tumblr_m3zk2cWwDB1rw4gr6o1_400.jpg" />
- <meta name="text:titulo" content="heartless" />
- <meta name="text:Link1" content="/" />
- <meta name="text:Link1 Title" content="link" />
- <meta name="text:Link2" content="/" />
- <meta name="text:Link2 Title" content="link" />
- <meta name="text:Link3" content="/" />
- <meta name="text:Link3 Title" content="link" />
- <meta name="text:Link4" content="/" />
- <meta name="text:Link4 Title" content="link" />
- <meta name="text:Link5" content="/" />
- <meta name="text:Link5 Title" content="link" />
- <meta name="text:Link6" content="/" />
- <meta name="text:Link6 Title" content="link" />
- <meta name="text:Link7" content="/" />
- <meta name="text:Link7 Title" content="link" />
- <meta name="text:Link7" content="/" />
- <meta name="text:Link7 Title" content="link" />
- <meta name="text:Link8" content="/" />
- <meta name="text:Link8 Title" content="link" />
- <meta name="text:Link9" content="/" />
- <meta name="text:Link9 Title" content="link" />
- <meta name="text:Link10" content="/" />
- <meta name="text:Link10 Title" content="link" />
- <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}
- <style type="text/css">
- body {background-color:{color:background}; font-family: verdana; color: {color:text};
- text-align: center; font-size: 11px; background-image:url('{image:background}');
- background-attachment: fixed; }
- a {color: {color:link}; text-decoration: none; }
- a:hover {color: {color:link}; background-color: transparent; text-decoration: none;}
- p {margin: 6px 0 0 0}
- blockquote{border-left: 3px solid {color:text}; margin:5px 5px 2px 2px; padding-left:2px;
- border-bottom:0px;}
- #tudo {text-align: center; width: 935px; margin: 20px auto 20px auto; padding: 0px; z-index: 1}
- #entries{ background-color: transparent; text-align: center; float: left; margin-left:129px; margin-top:0px; }
- .post {width: 500px; background-color: {color:post}; padding: 10px; margin-bottom: 1px;
- text-align: justify; font-family: {font:text}; font-size: 11px; color:{color:text};
- margin-left: 0px; }
- .tags{font-size: 9px; color:{color:link}; font-family: verdana; background-color:
- {color:post}; -webkit-transition: all .2s linear; -moz-transition: all .2s linear;
- transition: all 0.2s linear;}
- .tags a:hover {background-color: {color:post}; color:{linkhover}; }
- h1 {font-family: georgia; text-align: center; font-size: 16px; color: {color:text}; font-
- weight: normal; line-height: 17px; text-transform: uppercase;}
- h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text};
- font-weight: normal; line-height: 17px;}
- h1 a:hover {text-align: center; font-size: 16px; color: {color:text}; font-weight:
- normal; line-height: 17px; text-transform: uppercase;}
- .image {text-align: center; border: 0px; }
- .image img {max-width: 500px; margin-bottom: 3px }
- .markqt {font-size: 80px; font-family: verdana; color:{color:text}; line-height: 90px;
- margin-left: 0px; opacity: 0.2; filter:alpha (opacity=100); }
- .qt {font-family: georgia; font-size: 15px; line-height: 15px; margin-top: 0px; margin-
- left: 5px; padding: 10px; text-align:center; }
- .qsr{margin: -5px 0px 0 0; text-align: center; text-transform: none;}
- .qsr a, a:hover{text-transform: none;}
- .chat {line-height: 12px; list-style: none }
- .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height:20px;}
- .person1 {background-color:{color:background}; color: {color:text}; }
- .person1 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
- .person2 {color: {color:text}; }
- .person2 .label {font-weight: bold; padding: 0px; margin-left: 5px; color:{color:text}}
- .audio{background-color:black; display:block;}
- .source{display:none}
- .asker {font-family:georgia; font-size:10px; font-style:italic;}
- .asker a {font-family:georgia; font-size:10px; font-style:italic;}
- #questions {color: {color:text}; padding:5px; margin-bottom:0px; font-family:verdana;
- font-size:10px; font-style:italic; padding-bottom:0px;}
- #questions a {color:{color:link}; font-size:10px;}
- .answers {font-size:11px; font-family:verdana;}
- .answers a {font-size:9px; font-family:verdana;}
- #cap {width: 500px; margin-top: -2px;}
- #dda {font-size: 9px; font-family: verdana; text-transform: lowercase;}
- .dda a {font-size: 9px;}
- .notes {width: 520px; padding: 0px; margin-top: 3px; margin-bottom: 10px; font-size: 9px; text-align: left; }
- ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11; margin-bottom:1px;}
- ol.notes li {background-color: {color:post}; margin-bottom: 1px; padding: 5px; }
- .notes img{display: none; border:0px}
- #tumblr_controls{position: fixed!important}
- ::-webkit-scrollbar{width:4px;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: {color:background}; -webkit-border-
- radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
- ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: {color:scroll};-webkit-
- border-radius:px;}
- ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: {color:scroll};-webkit-
- border-radius:px;}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #sidebar {position: fixed; margin: 500px 0px 0px 450px; }
- #malaxofobia {position: fixed; margin-left: 202px; width: 146px; height: 17px; background-color: #f8f8f8;padding-top: 2px; margin-top: -384px; opacity:1; text-align: left; font-family: tinytots; text-transform: normal; font-size: 18px; color: {color:text};font-weight: normal; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; }
- #sidebarimage{margin-left: 200px; margin-top: -360px; width: auto; float: center;
- background-color: {color:sidebar}; padding: 4px; position: fixed; height: auto; z-index:2; }
- .sidebarimg {height: auto; text-align: left; border: 0px solid {color:background}; background-color: {color:sidebar}; -webkit-transition: all 0.4s linear; -moz-transition: all 0.4s linear; -o-transition: all 0.4s linear; transition: all 0.4s linear; }
- .sidebarimg img{width: 138px; height: 167px; display: block; overflow: auto; }
- #sidlinks {font-size: 10px; font-family: tinytots; margin-left: 200px; width: auto; background-color: transparent; text-align: center; padding: auto; margin-top: -154px; height: auto; position:fixed; z-index: 10}
- #sidlinks a {float: left; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; margin-bottom: 1px; width: 48px; background-color:{color:sidlink}; height: 10px; color:transparent; text-decoration: none; text-transform: none; line-height: 10px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 1px; }
- #sidlinks a:hover{text-align: center; letter-spacing: 1px; background-color:{color:sidlinks hover}; color:{color:sidlinks txt hover}; padding-top: 15px;}
- #sidlinks2 {font-size: 10px; font-family: tinytots; margin-left: 249px; width: auto; background-color: transparent; text-align: justify; padding: 0px; margin-top: -154px; height: auto; position:fixed; z-index: 8}
- #sidlinks2 a {float: left; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; margin-bottom: 1px; width: 48px; background-color:{color:sidlink}; height: 10px; color:transparent; text-decoration: none; text-transform: none; line-height: 10px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 1px;}
- #sidlinks2 a:hover{text-align: center; letter-spacing: 1px; background-color:{color:sidlinks hover}; color:{color:sidlinks txt hover}; padding-top: 15px;}
- #sidlinks3 {font-size: 10px; font-family: tinytots; margin-left: 298px; width: auto; background-color: transparent; text-align: justify; padding: 0px; margin-top: -154px; height: auto; position:fixed; z-index: 6 }
- #sidlinks3 a {float: left; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; margin-bottom: 1px; width: 48px; background-color:{color:sidlink}; height: 10px; color:transparent; text-decoration: none; text-transform: none; line-height: 10px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 1px;}
- #sidlinks3 a:hover{text-align: center; letter-spacing: 1px; background-color:{color:sidlinks hover}; color:{color:sidlinks txt hover}; padding-top: 15px;}
- #sidlinks4 {font-size: 10px; font-family: tinytots; margin-left: 200px; width: auto; background-color: transparent; text-align: center; padding: auto; margin-top: -371px; height: auto; position:fixed; z-index: 10}
- #sidlinks4 a {float: left; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; margin-bottom: 1px; width: 48px; background-color:{color:sidlink}; height: 10px; color:transparent; text-decoration: none; text-transform: none; line-height: 15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 1px; }
- #sidlinks4 a:hover{text-align: center; letter-spacing: 1px; background-color:{color:sidlinks hover}; color:{color:sidlinks txt hover}; padding-bottom: 15px; margin-top: -15px; }
- #sidlinks5 {font-size: 10px; font-family: tinytots; margin-left: 249px; width: auto; background-color: transparent; text-align: center; padding: auto; margin-top: -371px; height: auto; position:fixed; z-index: 10}
- #sidlinks5 a {float: left; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; margin-bottom: 1px; width: 48px; background-color:{color:sidlink}; height: 10px; color:transparent; text-decoration: none; text-transform: none; line-height: 15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 1px; }
- #sidlinks5 a:hover{text-align: center; letter-spacing: 1px; background-color:{color:sidlinks hover}; color:{color:sidlinks txt hover}; padding-bottom: 15px; margin-top: -15px;}
- #sidlinks6 {font-size: 10px; font-family: tinytots; margin-left: 298px; width: auto; background-color: transparent; text-align: center; padding: auto; margin-top: -371px; height: auto; position:fixed; z-index: 10}
- #sidlinks6 a {float: left; display: block; letter-spacing: 0px; font-family: georgia; font-size: 9px; text-align: center; margin-bottom: 1px; width: 48px; background-color:{color:sidlink}; height: 10px; color:transparent; text-decoration: none; text-transform: none; line-height: 15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 1px; }
- #sidlinks6 a:hover{text-align: center; letter-spacing: 1px; background-color:{color:sidlinks hover}; color:{color:sidlinks txt hover}; padding-bottom: 15px; margin-top: -15px;}
- #sidescri {margin-left: 200px; margin-top: -184px; width: 146px; float: left; background-color: {color:sidebar}; padding: 0px; position: fixed; height: 29px; overflow: hidden;}
- .sidescri{margin: 0px; padding: 0px; text-align: center; font-size: 9px; font-family: verdana; padding: 2px; color: {color:text}; overflow: hidden; }
- .sidescri a{font-size: 9px; {font:body2};}
- #creditoo {position: fixed; margin-left: 208px; width: 10px; height: 15px; background-color: transparent; padding-top: 1px; margin-top: -144px; opacity:1; text-align: right; font-family: tinytots; text-transform: normal; font-size: 9px; color: {color:text};font-weight: normal; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; padding-right: 3px; }
- .pagination {font-family: georgia; position: fixed; margin-left: 202px; margin-top: -144px; font-size: 12px; z-index: 0; }
- .pagination a {color: {color:text}; margin-right: 8px; background-color:transparent ; width:150px; }
- .pagination a:hover {color:{color:text};}
- </style>
- <body>
- <div id="tudo">
- <div id="sidebar">
- <div class="pagination">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}{block:NextPage}
- <a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}</div>
- <div id="creditoo"><a href="http://uncensore-d.tumblr.com/">©</a></div>
- <div id="sidescri">
- <div class="sidescri">{block:Description}{Description}{/block:Description}</div>
- </div>
- <div id="sidlinks">
- {block:ifLink4}<a href="{text:Link4}" title="{text:Link4 Title}">{text:letter4}</a>{/block:ifLink4}
- </div>
- <div id="sidlinks2">
- {block:ifLink5}<a href="{text:Link5}" title="{text:Link5 Title}">{text:letter5}</a>{/block:ifLink5}
- </div>
- <div id="sidlinks3">
- {block:ifLink6}<a href="{text:Link6}" title="{text:Link6 Title}">{text:letter6}</a>{/block:ifLink6}
- </div>
- <div id="sidlinks4">
- {block:ifLink1}<a href="{text:Link1}" title="{text:Link1 Title}">{text:letter1}</a>{/block:ifLink1}
- </div>
- <div id="sidlinks5">
- {block:ifLink2}<a href="{text:Link2}" title="{text:Link2 Title}">{text:letter2}</a> {/block:ifLink2}
- </div>
- <div id="sidlinks6">
- {block:ifLink3}<a href="{text:Link3}" title="{text:Link3 Title}">{text:letter3}</a>{/block:ifLink3}
- </div>
- <div id="sidebarimage">
- <div class="sidebarimg">
- <img src="http://25.media.tumblr.com/tumblr_m4eagbNNjE1qg12jpo1_400.jpg"/></div></div>
- <div class="paginacao"><div class="page">{block:Pagination}<span class="pprev">
- {block:PreviousPage}<a href="{PreviousPage}"></a>{/block:PreviousPage}</span><span
- class="pnext"> {block:NextPage}<a href="{NextPage}"></a>{/block:NextPage}</span>
- {/block:Pagination}</div>
- </div>
- </div>
- <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:Posts}<div class="post">
- {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>
- {LinkCloseTag}{/block:Photo}
- {block:Photoset}{Photoset-500}{/block:Photoset}
- {block:Quote}<div class="qt">“{Quote}”</div>{block:Source}<div class="qsr"> — {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}<br><div class="audio">{AudioPlayerBlack}</div>{block:Caption}{Caption}
- {/block:Caption}{/block:Audio}
- {block:Video}{Video-500}{/block:Video}
- {block:Answer}<div id="questions"><div class="asker"><b>{Asker} murmurou:</b></div>
- {Question}</div><div class="answers">
- {Answer}</div>{/block:answer}
- <div id="cap">{block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
- {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}{block:Photoset}
- {block:Caption}{Caption}{/block:Caption}{/block:Photoset}
- <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><br><div class="tags">
- {block:IfShowTags}{block:HasTags}{block:Tags}<a href="{TagURL}">#{Tag}</a>
- {/block:Tags}{/block:HasTags}{/block:IfShowTags}</div>
- <div id="dda">
- <div style="float:left;" class="tags">{block:Date} <a href="{Permalink}">{TimeAgo}</a>
- {/block:Date} {block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>
- {/block:NoteCount}{block:IndexPage} · <a href="{ReblogUrl}" target="_blank">reblog</a>{/block:IndexPage}<br>{block:RebloggedFrom} originally <a href="{ReblogRootURL}"
- title="{ReblogRootTitle}">{ReblogRootName}</a></span>{/block:RebloggedFrom}
- {block:RebloggedFrom} · via <a href="{ReblogParentURL}">{ReblogParentName}</a>
- {/block:RebloggedFrom}</div></ br><br clear="all" /></div></div>
- {/block:Posts}{block:PostNotes}<div id="notes"><div id="ntstext">{PostNotes}</div></div>
- {/block:PostNotes}
- </div></div></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment