- <html>
- <!-- FOREVER-CHAINED THEME by sweetcandyskittles.tumblr.com Please do not redistribute the codes or even claim this theme as yours. Thanks a lot. Hope you like this theme. :) -->
- <head>
- <title>{Title}</title>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script><script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script><a href="javascript:;" id="scrollToTop"><img src="{image:scrolltotop}" border="0"></a>
- <meta name="image:BG" content="http://30.media.tumblr.com/tumblr_li2hqpzkH21qcdtsho1_500.png">
- <META name="text:titleofblog" content="Forever-chained" />
- <meta name="image:permalink background" content="http://www.decor.net.au/shop/images/uploads/books/981-/981-63714.jpg">
- <meta name="image:scrolltotop" content="http://27.media.tumblr.com/tumblr_lywycoGrRQ1r77gqoo1_250.png">
- <META name="text:LINKTITLE5HERE" content="Link5" />
- <META name="text:LINKTITLE4HERE" content="Link4" />
- <META name="text:LINKTITLE3HERE" content="Link3" />
- <META name="text:LINKTITLE2HERE" content="Link2" />
- <META name="text:LINKTITLE1HERE" content="Link1" />
- <META name="text:LINK1URLHERE" content="/" />
- <META name="text:LINK2URLHERE" content="/" />
- <META name="text:LINK3URLHERE" content="/" />
- <META name="text:LINK4URLHERE" content="/" />
- <META name="text:LINK5URLHERE" content="/" />
- <link href='http://fonts.googleapis.com/css?family=Flavors' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Yesteryear' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Give+You+Glory' rel='stylesheet' type='text/css'>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}<meta name="description" content="{MetaDescription}">{/block:Description}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 20;
- 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>
- <script type="text/javascript">
- // <![CDATA[
- var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-11 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var tiny=new Array();
- var star=new Array();
- var starv=new Array();
- var starx=new Array();
- var stary=new Array();
- var tinyx=new Array();
- var tinyy=new Array();
- var tinyv=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, rats, rlef, rdow;
- for (var i=0; i<sparkles; i++) {
- var rats=createDiv(3, 3);
- rats.style.visibility="hidden";
- document.body.appendChild(tiny[i]=rats);
- starv[i]=0;
- tinyv[i]=0;
- var rats=createDiv(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- var rlef=createDiv(1, 5);
- var rdow=createDiv(5, 1);
- rats.appendChild(rlef);
- rats.appendChild(rdow);
- rlef.style.top="2px";
- rlef.style.left="0px";
- rdow.style.top="0px";
- rdow.style.left="2px";
- document.body.appendChild(star[i]=rats);
- }
- set_width();
- sparkle();
- }}
- function sparkle() {
- var c;
- if (x!=ox || y!=oy) {
- ox=x;
- oy=y;
- for (c=0; c<sparkles; c++) if (!starv[c]) {
- star[c].style.left=(starx[c]=x)+"px";
- star[c].style.top=(stary[c]=y)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
- star[c].style.visibility="visible";
- starv[c]=50;
- break;
- }
- }
- for (c=0; c<sparkles; c++) {
- if (starv[c]) update_star(c);
- if (tinyv[c]) update_tiny(c);
- }
- setTimeout("sparkle()", 40);
- }
- function update_star(i) {
- if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
- if (starv[i]) {
- stary[i]+=1+Math.random()*3;
- if (stary[i]<shigh+sdown && starx[i]>0) {
- star[i].style.top=stary[i]+"px";
- starx[i]+=(i%5-2)/5;
- star[i].style.left=starx[i]+"px";
- }
- else {
- star[i].style.visibility="hidden";
- starv[i]=0;
- return;
- }
- }
- else {
- tinyv[i]=50;
- tiny[i].style.top=(tinyy[i]=stary[i])+"px";
- tiny[i].style.left=(tinyx[i]=starx[i])+"px";
- tiny[i].style.width="2px";
- tiny[i].style.height="2px";
- tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
- star[i].style.visibility="hidden";
- tiny[i].style.visibility="visible"
- }
- }
- function update_tiny(i) {
- if (--tinyv[i]==25) {
- tiny[i].style.width="1px";
- tiny[i].style.height="1px";
- }
- if (tinyv[i]) {
- tinyy[i]+=1+Math.random()*3;
- if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
- tiny[i].style.top=tinyy[i]+"px";
- tinyx[i]+=(i%5-2)/5;
- tiny[i].style.left=tinyx[i]+"px";
- }
- else {
- tiny[i].style.visibility="hidden";
- tinyv[i]=0;
- return;
- }
- }
- else tiny[i].style.visibility="hidden";
- }
- document.onmousemove=mouse;
- function mouse(e) {
- set_scroll();
- y=(e)?e.pageY:event.y+sdown;
- x=(e)?e.pageX:event.x+sleft;
- }
- function set_scroll() {
- if (typeof(self.pageYOffset)=="number") {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body.scrollTop || document.body.scrollLeft) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- window.onresize=set_width;
- function set_width() {
- if (typeof(self.innerWidth)=="number") {
- swide=self.innerWidth;
- shigh=self.innerHeight;
- }
- else if (document.documentElement && document.documentElement.clientWidth) {
- swide=document.documentElement.clientWidth;
- shigh=document.documentElement.clientHeight;
- }
- else if (document.body.clientWidth) {
- swide=document.body.clientWidth;
- shigh=document.body.clientHeight;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height+"px";
- div.style.width=width+"px";
- div.style.overflow="hidden";
- return (div);
- }
- function newColour() {
- var c=new Array();
- c[0]=255;
- c[1]=Math.floor(Math.random()*256);
- c[2]=Math.floor(Math.random()*(256-c[1]/2));
- c.sort(function(){return (0.5 - Math.random());});
- return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
- }
- // ]]>
- </script>
- <script language=JavaScript>
- <!--
- //Disable right click script III- By Renigade (renigade@mediaone.net)
- //For full source code, visit http://www.dynamicdrive.com
- var message="";
- ///////////////////////////////////
- function clickIE() {if (document.all) {(message);return false;}}
- function clickNS(e) {if
- (document.layers||(document.getElementById&&!document.all)) {
- if (e.which==2||e.which==3) {(message);return false;}}}
- if (document.layers)
- {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
- else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
- document.oncontextmenu=new Function("return false")
- // -->
- </script>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://i52.tinypic.com/2lco6ip.png" class="btn_close" title="Close it" alt="Close" /></a>');
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- $('body').append('<div id="fade"></div>');
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
- return false;
- });
- $('a.close, #fade').live('click', function() {
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <style type="text/css">
- body {
- background-color:#fff;
- background-image:url({image:BG});
- background-attachment:fixed;
- background-repeat:repeat;
- color: #Ae4567;
- font-family:trebuchet MS;
- font-size:10px;
- line-height:14px;
- }
- div.shake img{position:relative}
- #scrollToTop:link,#scrollToTop:visited { color: transparent; background-color: transparent; display: none; position: fixed; bottom: 15px; right: 15px;}
- a, a:link, a:visited, a:active {
- color: #000;
- text-shadow: 1px 1px 1px;
- text-decoration: none;
- -webkit-transition-timing-function: ease-out;
- -webkit-transition-duration: 0.5s;
- -moz-transition-timing-function: ease-out;
- -moz-transition-duration: 0.5s;
- }
- a:hover {
- color: #000;
- background-color: transparent;
- -webkit-transition-timing-function: ease-out;
- -webkit-transition-duration: 0.5s;
- -moz-transition-timing-function: ease-out;
- -moz-transition-duration: 0.5s;
- text-decoration:none;
- border:none;
- }
- .popup_block{
- display: none;
- background: #fcfbf8;
- padding: 10px;
- font-family: arial;
- border: 3px solid #f2e7e2;
- float: left;
- font-size: 10px;
- position: fixed;
- top: 50%; left: 50%;
- z-index: 1;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- }
- img.btn_close {
- float: right;
- margin: -5px -5px 0 0;
- }
- *html .popup_block {
- position: absolute;
- }
- #musicplayer {text-align: center;font-size: 11px;position:fixed;left:20px;top:-68px;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-o-transition: all .5s ease-in-out;z-index:999;}
- #musicplayer:hover {top:-10px;}
- #music {padding: 20px 0 5px 0;background: #fff;width:230px;border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;-webkit-border-bottom-right-radius: 5px;z-index: 9999;}
- #musictab {font-family:century gothic;text-shadow: 0 1px 0 #000000;height:30px;padding: 0 0 8px 0;background:#fff;border-bottom-left-radius: 5px;-moz-border-radius-bottomleft: 5px;-webkit-border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;-webkit-border-bottom-right-radius: 5px;width: 50px;}
- .bubble {align:right;background: #EBDDE2; margin:7px 0px 5px 66px;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 #EBDDE2;}
- .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: #eee}
- #content {
- width:400px;
- padding:12px;
- background-color:#fff;
- margin-bottom:5px;
- position: absolute;
- top: 9px;
- left: 560px;
- -moz-border-radius:10px;
- -webkit-border-radius:10px;
- }
- .permalink {
- background-image:url('{image:permalink background}');
- line-height:19px;
- display:block;
- text-align:center;
- font-family: 'rouge script';
- font-size:18px;
- text-transform:lowercase;
- margin-bottom:5px;
- margin-top:3px;
- padding:1px;
- -moz-border-radius:10px;
- -webkit-border-radius:10px;
- }
- .text {
- font-family: 'Yesteryear';
- font-size:24px;
- line-height:28px;
- }
- .link {
- font-size:25px;
- font-family: 'Give you glory';
- font-style:italic;
- line-height:28px;
- }
- .titlebar
- {
- top:90px;
- left: 275px;
- position: fixed;
- text-align: center;
- font-family: 'ruge boogie';
- line-height: 43px;
- font-size:40px;
- color:#C25A7C;
- }
- .sidebar
- {
- top: 93px;
- left: 187px;
- position: fixed;
- }
- .credits
- {
- top: 523px;
- left: 270px;
- position: fixed;
- }
- .navtitle
- {
- top: 407px;
- left: 310px;
- position: fixed;
- font-family: 'rouge script';
- font-size: 26px;
- line-height: 27px;
- color:#000;
- }
- .sidebar2
- {
- top: 0px;
- left: 240px;
- position: fixed;
- }
- .navigateposition
- {
- top: 437px;
- left: 7px;
- position: fixed;
- }
- .navigatebar a{
- display: inline-block;
- color: #000;
- background-color:#FDEEF4;
- height:15px;
- width: 177px;
- padding-left:5px;
- padding-top:3px;
- border-left: 8px solid #E56E94;
- -webkit-transition: 0.1s
- top: 504px;
- left: 274px;
- position: relative;
- text-align: center;
- font-family: Trebuchet Ms;
- font-size:9px;
- }
- .navigatebar a:hover{
- width: 92px;
- text-align:left;
- border-left: 25px solid #ffdfdf;
- padding-right:2px;
- color: #000;
- letter-spacing:2px;
- text-transform:uppercase;
- -webkit-transition: 0.5s
- }
- ::-webkit-scrollbar {
- width: 10px;
- height: 4px;
- background: #ffffff;
- background-repeat: repeat-y;
- background-attachment: fixed;
- }
- ::-webkit-scrollbar-thumb {
- background-image:url('http://1.bp.blogspot.com/-LjoSccgnxQc/TmeAxXtuQVI/AAAAAAAAHzw/VhrXJVaPER8/s1600/medium-black-theme.jpg');
- -webkit-border-radius: 2ex; }
- </style>
- </head>
- <body>
- <div id="02" class="popup_block">
- <Center><div class="text"><p> Other links!</div></p>
- <p>Customize in the appearance section :)</p>
- <p><a href="{text:LINK1URLHERE}">♕ {text:LINKTITLE1HERE}</a></p>
- <p><a href="{text:LINK2URLHERE}">♕ {text:LINKTITLE2HERE}</a></p>
- <p><a href="{text:LINK3URLHERE}">♕ {text:LINKTITLE3HERE}</a></p>
- <p><a href="{text:LINK4URLHERE}">♕ {text:LINKTITLE4HERE}</a></p>
- <p><a href="{text:LINK5URLHERE}">♕ {text:LINKTITLE5HERE}</a></p>
- </font></div>
- </div></div></div></div></div></div></div></div></div></div>
- <div id="musicplayer">
- <div id="music"> <center>Edit this on the html page! :) Put the url of your music player here. If you have questions, ask me. :)</center></div>
- <div id="musictab"> <br><img src="http://i12.photobucket.com/albums/a213/superkate_2468/favicon-2ico.gif"></div></div></div>
- <div class="sidebar2"><img src="http://30.media.tumblr.com/tumblr_lxu5seGTJc1r77gqoo1_500.png"></div>
- <div class="titlebar">{text:titleofblog}</div>
- <div class="sidebar">
- <TABLE style="WIDTH: 350px; HEIGHT: 350px" align=center>
- <TBODY><TR><TD><div align=left><div style="font-family: trebuchet ms; font-size: 10px;position:relative; left:79px; HEIGHT: 128px; WIDTH: 220px; COLOR: #9e8d80; SCROLLBAR-FACE-COLOR: #6B8E23; SCROLLBAR-SHADOW-COLOR: #cccccc; SCROLLBAR-HIGHLIGHT-COLOR: #cccccc; OVERFLOW-Y: scroll; FILTER: chroma(color=#6B8E23); OVERFLOW-X: hidden; SCROLLBAR-3DLIGHT-COLOR: #6b8e23; SCROLLBAR-ARROW-COLOR: #cccccc; SCROLLBAR-TRACK-COLOR: #6b8e23; SCROLLBAR-DARKSHADOW-COLOR: #6b8e23; SCROLLBAR-BASE-COLOR: #6b8e23; ">
- <img src="{PortraitURL-128}" align="left" style="width: 68px; margin-right: 10px; border: 3px solid #000;">
- <font color="000" size="1px">{description}</font>
- </DIV></DIV></TD></TR></TBODY></TABLE></div>
- </div>
- <div class="credits"><center>♥ Forever-chained theme by <a href="http://sweetcandyskittles.tumblr.com">sweetcandyskittles</a>.</center></div>
- <div class="navtitle">Navigation ♕</div>
- <div class="navigateposition"><div class="navigatebar">
- <a href="/">Refresh</a></br>
- <a href="/ask">Letterbox</a></br>
- <a href="/submit">Submit</a></br>
- <a href="#?w=500" rel="02" class="poplight">Other links</a></br>
- </div></div></div>
- <div id="content">
- {block:Posts}
- {block:Text}
- {block:Title}<div class="text">{Title}</div>{/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom:3px;-moz-border-radius:10px;-webkit-border-radius:10px;">{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- {Photoset-400}{block:caption}{caption}{/block:caption}
- {/block:photoset}
- <center>{block:Quote}"{Quote}"<br>
- {block:Source}<b>- {Source}</b>{/block:Source}
- {/block:Quote}</center>
- {block:Link}
- <center><div class="link"><a href="{URL}" target="_blank">{Name} →</a></div></center>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}{Title}{/block:Title}
- {block:Lines}
- {block:Label}
- <b>{Label}</b>
- {/block:Label}
- <i>{Line}</i><br>
- {/block:Lines}
- {/block:Chat}
- {block:Audio}<center>
- {AudioPlayerBlack}
- {block:Caption}{Caption}{/block:Caption}</center>
- {/block:Audio}
- {block:Video}
- {VideoURL-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Video}
- {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker} whispered: {Question} </div>{Answer}{/block:Answer}
- {block:IndexPage}<center><div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> |♥| <a href="{ReblogURL}" target="_blank">Re-dream</a>
- </center>{/block:IndexPage}
- {block:PermalinkPage}
- {/block:PermalinkPage}
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/block:Posts}
- </div>
- </div>
- </body>
- </html>

