- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <!-- THEME BY K-NOCK, DO NOT COPY
- K K NN N OOOOOOOOOO CCCCCCCCCC K K
- K K N N N O O C K K
- K K N N N O O C K K
- KK N N N O O C KK
- KK N N N O O C KK
- K K N N N O O C K K
- K K N N N O O C K K
- K K N NN OOOOOOOOOO CCCCCCCCCC K K --!>
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head> <!-- DEFAULT VARIABLES -->
- <meta name="color:background" content="#ffffff" />
- <meta name="color:text" content="#3d3d3d" />
- <meta name="color:border" content="#3d3d3d" />
- <meta name="color:entry" content="#F7F7F5" />
- <meta name="color:linkx" content="#F7F7F5" />
- <meta name="color:linkss" content="#3d3d3d" />
- <meta name="color:barra" content="#ffffff" />
- <meta name="color:barratxt" content="#000000" />
- <meta name="color:subtitulo" content="#000000" />
- <meta name="color:bgtitulo" content="#ffffff" />
- <meta name="color:descri" content="#F7F7F5" />
- <meta name="color:textdescri" content="#F7F7F5" />
- <meta name="color:info" content="#000000" />
- <meta name="color:link" content="#470E1A" />
- <meta name="color:linhas" content="#470E1A" />
- <meta name="if:Show tags" content="1"/>
- <meta name="if:Show search" content="1"/>
- <meta name="if:Show sidebar image" content="1"/>
- <meta name="if:Fixed sidebar" content="1"/>
- <meta name="if:Enable endless scrolling" content="0"/>
- <meta name="image:sidebar" content=""/>
- <meta name="image:background" content=""/>
- <meta name="text:subtitulo" content="nobody can take that from me" />
- <meta name="text:titulo" content="like a skyscraper" />
- <meta name="text:Link1" content="" />
- <meta name="text:Link1 Title" content="" />
- <meta name="text:Link2" content="" />
- <meta name="text:Link2 Title" content="" />
- <meta name="text:Link3" content="" />
- <meta name="text:Link3 Title" content="" />
- <meta name="text:Link4" content="" />
- <meta name="text:Link4 Title" content="" />
- <meta name="text:Link5" content="" />
- <meta name="text:Link5 Title" content="" />
- <meta name="text:Link6" content="" />
- <meta name="text:Link6 Title" content="" />
- <script type="text/javascript">
- // <![CDATA[
- // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
- var fgcolour="{color:pt1}"; // foreground colour
- var hlcolour="{color:pt2}"; // highlight colour
- var bgcolour="{color:pt3}"; // background colour
- var glcolour="{color:pt4}"; // 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}
- {block:IfEnableEndlessScrolling}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- {/block:IfEnableEndlessScrolling}
- <style type="text/css">
- body {background-color:{color:background}; color:{color:text}; font-family: verdana; font-size:11px; line-height:110%; margin:0px; background-image:url('{image:background}'); background-attachment: fixed}
- a {color:{color:link}; text-decoration: none; font-size: 9px}
- a:hover {color:{color:text}; text-decoration: none}
- p{margin: 1px 0 0 0}
- blockquote{margin: 1px 0 0 5px; border-left: 3px solid; color:#000000; padding:0 0 0 5px;}
- #ttl {float: left; margin-top:140px; margin-left:854px; width: 189px; background-color: {color:bgtitulo}; color: #000; padding: 8px; font-size: 22px; text-align: center; position:fixed; -webkit-border-radius:0; -webkit-border-bottom-right-radius:0px; -webkit-border-bottom-left-radius:0px; position:fixed; letter-spacing: 0px; font-family: georgia;text-transform: ; height: 26px; border: 0px solid #FFF; }
- #ttl a{font-size: 12px; color: ; }
- #sidebarimage{margin:140px auto 16px auto; margin-left: 855px;text-align:center; position: fixed; }
- #sidebarimage img{width:201px; height:246px; margin-top:51px; text-align:center; border: 2px solid {color:border};}
- #tchutchuca {width:516px; height:18px; margin-top:19px; padding: 2px; text-align: center; margin-bottom: 2px; background-color: {color:barra}; letter-spacing: 4px; font-size: 9px; font-family: verdana; color:#fff; position:fixed;margin-left: 325px;); opacity:1.00; -moz-opacity: 0.70; filter: alpha(opacity=1.0); z-index: 1000;}
- #tchutchuca2 {width:516px; height:18px; margin-top:-3px; padding: 2px; text-align: center; margin-bottom: 2px; background-color: {color:background}; letter-spacing: 4px; font-size: 9px; font-family: verdana; color:#fff; position:fixed;margin-left: 325px;); opacity:1.00; -moz-opacity: 0.70; filter: alpha(opacity=1.0); z-index: 1000;}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- /* descri */
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #frasepequena {margin-left: 900px; margin-top: 408px; width: 195px; font-size: 8px; height: 50px; text-align: center; background-color: {color:descri}; font-family: tinytots; line-height: 9px; color: {color:textdescri}; position: fixed; padding: 5px; -webkit-transition: 1s ease-in;
- -moz-transition: 1s ease-in; transition: 1s ease-in; overflow: visible; opacity: 10; overflow: hidden; }
- #links {width: 207px; float: left; margin-left:855px; margin-top: 379px; padding: 0px; text-align: center; position: absolute; padding: 2px; z-index: 999; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in; opacity: 0.8;}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #links a {float: left; margin-left: 0px; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; width: 67px; background-color: {color:linkx}; color:{color:linkss}; text-decoration: none; line-height: 20px; height: 19px; overflow: hidden; margin-top: 0px; margin-bottom: 100px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; text-transform: uppercase;}
- #links a:hover{text-align: center; background-color: #838383; color:#FFFFFF; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
- .erro a{border-right: 0px solid #F0F0F0;}
- .erro a:hover {border-right:0px solid #838383;}
- .doix {margin-top: 19px; position: fixed;}
- #linksss {width: 207px; float: left; margin-left:855px; margin-top: 380px; padding: 0px; text-align: center; position: absolute; padding: 2px; z-index: 999; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in; opacity: 0.8;}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #linksss a {float: left; margin-left: 0px; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; width: 67px; background-color: {color:linkx}; color:{color:linkss}; text-decoration: none; line-height: 20px; height: 19px; overflow: hidden; margin-top: 0px; margin-bottom: 100px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; text-transform: uppercase;}
- #linksss a:hover{text-align: center; background-color: #838383; color:#FFFFFF; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
- .erros a{border-right: 0px solid #F0F0F0;}
- .erros a:hover {border-right:0px solid #838383;}
- .doixs {margin-top: 19px; position: fixed;}
- .aumente a{text-align:center; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
- .aumente a:hover {padding-top: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #creditt {font-family: tinytots; margin-top:20px; margin-left:325px; height:12px; border-bottom: 0px solid #E4CBB7; background-color:{color:barra}; z-index:1112; padding: 0px; width: 200px; color: {color:barratxt}; padding: 4px; text-align: justify; font-size: 8px; position:fixed;}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #paginacaoml {font-size: 8px; font-family: tinytots; line-height: 19px; margin-left: 700px; margin-top:22px; position: fixed; background-color: {color:barra}; color: {color:barratxt}; z-index: 1112;}
- #paginacaoml a {font-size: 8px; font-family:tinytots; background: {color:barra}; margin: 20 1px 0 0; padding: 2px 4px; color: {color:barratxt}; text-decoration: none;}
- #paginacaoml a:hover {font-size: 8px; font-family: tinytots; background: #000000; border: none; color: #fff;}
- #paginacaoml span.pagina_atual {background: {color:barra}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:barratxt} ; text-decoration: none; font-weight: bold;}#paginacaoml span.info {background: #fff; margin: 0 1px 0 0; padding: 2px 4px; color: #000 text-decoration: none;}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
- blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
- blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
- blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
- blockquote img{max-width: 470px!important}
- blockquote blockquote img{max-width: 450px!important}
- blockquote blockquote blockquote img{max-width: 430px!important}
- blockquote blockquote blockquote blockquote img{max-width: 410px!important}
- #xp {text-align: center; width: 929px; margin: 50px auto 50px auto; padding: 0px; z-index: 1}
- #xright {float: left; margin-left: 325px; margin-top: 42px; }
- .postbox {width: 490px; background-color: {color:entry}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: relative;}
- h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
- h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
- h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
- .image {text-align: center; border: 0px}
- .image img {max-width: 500px; margin-bottom: 2px }
- .xquote {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
- .xquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
- .xquotesource a, a:hover{text-transform: none;}
- .chat {line-height: 13px; list-style: none }
- .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
- .person1 {color: {color:text}; padding: 2px; }
- .person1 .label {font-weight: bold; color:{color:text}}
- .person2 {color: {color:text}; padding: 2px; }
- .person2 .label {font-weight: bold; color:{color:text}}
- .player {background-color: #000; text-align: left; display:block;}
- #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
- .answer {padding: 2px}
- .answer img {max-width: 470px;}
- #xdate {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; }
- #xdate a {font-size: 9px; margin-left: 0px;}
- .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase; margin-left: 0px;}
- .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase; margin-left: 1px;}
- #cap {width: 500px; margin-top: -2px;}
- .source {display: none;}
- .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
- ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
- ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
- .notes img{display: none; border:0px}
- ::-webkit-scrollbar{width:5px;height:5px;}
- ::-webkit-scrollbar-button:start:decrement
- ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color: #616161;}
- ::-webkit-scrollbar-track-piece{background-color: #ffffff; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
- ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: #000000;-webkit-border-radius:px;}
- ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: #616161;-webkit-border-radius:px;}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- #tumblr_controls{position: fixed!important}
- </style>
- </head>
- <body>
- <div id="tchutchuca"></div>
- <div id="tchutchuca2"></div>
- <div id="ttl"><span id="wipe">{text:titulo}</span><br><small><small><small><small><font color="{color:subtitulo}">{text:subtitulo}</font></small></small></small></small></br></div>
- <div id="sidebarimage"><a href="/"><img src="{image:sidebar}"/></a></div>
- <div class="doix"><div id="links">
- <a href="{text:Link1}">{text:Link1 Title}</a>
- <a href="{text:Link2}">{text:Link2 Title}</a>
- <div class="erro"><a href="{text:Link3}">{text:Link3 Title}</a></div></div>
- <div class="doixs"><div id="linksss">
- <a href="{text:Link4}">{text:Link4 Title}</a>
- <a href="{text:Link5}">{text:Link5 Title}</a>
- <div class="erros"><a href="{text:Link6}">{text:Link6 Title}</a></div></div>
- <div id="slideShowContainer">
- <div id="frasepequena">{description}</div></div>
- <div id="s2"></div>
- <div id="s1"></div>
- <div id="s3"></div>
- </div>
- </div>
- <div id="creditt"><center>D-ESABITUADO | TUMBLR <a href="http://d-esabituad.tumblr.com/" title="by d-esabituado, insp: k-nock!"></a></center></div></div></div></div>
- <div id="paginacaoml"><div class="pagination"><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"></a>{/block:PreviousPage}{/block:Pagination}{block:JumpPagination length="5"}{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}</center></div></div>
- <div id="entry">
- <div id="xright">
- {block:Posts}
- <div class="postbox">
- {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="xquote">“{Quote}”</div>
- {block:Source}<div class="xquotesource"> — {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="player">{AudioPlayerBlack}</div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Video}{Video-500}{/block:Video}
- {block:Answer}
- <div id="asker"><b>{Asker} <small>moaned:</small></b> {Question}</div>
- <div class="answer">{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 id="xdate">
- {block:Date}<div class="tags">{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}<br>{/block:HasTags}</div>
- <a href="{Permalink}">{TimeAgo}</a>{block:NoteCount} <b>•</b> <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:IndexPage} <b>•</b> <a href="{ReblogUrl}" target="_blank"> reblog or <b>fuck!</b></a>{/block:IndexPage}
- {block:RebloggedFrom}<br><b>posted</b> by: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} <b>•</b> <b>reblogged</b> by: <a href="{ReblogParentURL}">{ReblogParentName}</a>
- {/block:RebloggedFrom}
- </div>
- </div>{/block:Date}
- {/block:Posts}
- {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>