- <html>
- <!-- NEVER-ENDING VERSION 2 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. :) Thanks to themesbyladyybug for the hover status codes.-->
- <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://chomsky.soc.cornell.edu/~marty/plasma-turbulence-web-background.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="/" />
- <META name="text:about me" content="Put something about yourself here! :)" />
- <META name="text:updates" content="Put the updates of your blog here!" />
- <META name="if:rainbowlinks" content="0"/>
- <link href='http://fonts.googleapis.com/css?family=Ruthie|Amatic+SC:400,700' rel='stylesheet' type='text/css'>
- <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=Vibur' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Dawning+of+a+New+Day' 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>
- {block:ifrainbowlinks}<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>{/block:ifrainbowlinks}
- <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:no-repeat;
- color: #7E587E;
- font-family:trebuchet MS;
- font-size:10px;
- line-height:14px;
- }
- #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: #EBDDE2;
- text-shadow: 2px 1px 1px;
- 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: #FDEEF4; 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}
- #status{
- moz-box-shadow: 0 0 1px #E799A3;
- -webkit-box-shadow: 0 0 8px #C48793;
- position:fixed !important;
- left:980px; padding-top:6px;
- top: 240px;
- padding-bottom:17px;
- text-align:center;
- height:10px;
- width:69px;
- overflow:hidden;
- border:4px double #FDEEF4;
- -moz-border-radius: 17px 17px 17px 17px;
- border-radius:17px 17px 17px 17px;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background: #fff;
- z-index:999;
- }
- #status:hover{
- border:5px solid #FDEEF4;
- -moz-border-radius: 17px 17px 17px 17px;
- border-radius:17px 17px 17px 17px;
- padding:5px;
- height:100px;
- width:270px;
- }
- #status2{
- moz-box-shadow: 0 0 1px #E799A3;
- -webkit-box-shadow: 0 0 8px #C48793;
- position:fixed !important;
- left:980px; padding-top:6px;
- top: 290px;
- padding-bottom:17px;
- text-align:center;
- height:10px;
- width:69px;
- overflow:hidden;
- border:4px double #FDEEF4;
- -moz-border-radius: 17px 17px 17px 17px;
- border-radius:17px 17px 17px 17px;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background: #fff;
- z-index:999;
- }
- #status2:hover{
- border:5px solid #FDEEF4;
- -moz-border-radius: 17px 17px 17px 17px;
- border-radius:17px 17px 17px 17px;
- padding:5px;
- height:100px;
- width:270px;
- }
- #content {
- width:400px;
- padding:12px;
- background-color:#fff;
- margin-bottom:5px;
- position: absolute;
- top: 2px;
- left: 490px;
- -moz-border-radius:10px;
- -webkit-border-radius:10px;
- -moz-box-shadow: 0 0 1px #E799A3;
- -webkit-box-shadow: 0 0 12px #C48793;
- }
- header {
- text-align: center;
- background: transparent;
- font-size: 6.5pt;
- color: #d5a9a7;
- font-family: trebuchet ms;
- text-transform: uppercase;
- letter-spacing: 5px; fixed;
- filter: alpha(opacity=100);
- -moz-opacity: 100;
- opacity: 100;
- padding: 3px;
- border-bottom: 3px dotted #eeeeee;
- }
- .permalink {
- line-height:16px;
- display:block;
- text-align:center;
- font-family: 'rouge script';
- font-size:14px;
- text-transform:lowercase;
- margin-bottom:5px;
- margin-top:3px;
- padding:1px;
- }
- .text {
- font-family: 'Dawning of a new day';
- font-weight:bold;
- font-size:24px;
- line-height:28px;
- }
- .link {
- font-size:25px;
- font-family: 'Amatic SC';
- line-height:28px;
- }
- .links {
- width: 70px;
- height: 20px;
- background-color: #FDEEF4;
- font-size:8px;
- letter-spacing:0px;
- line-height:17px;
- text-align:left;
- margin-top:4x;
- padding-left:10px;
- -webkit-transition-duration: .6s;
- border-radius:10px;
- -moz-box-shadow: 0 0 1px #E799A3;
- -webkit-box-shadow: 0 0 8px #C48793;
- display: inline-block;
- }
- .links:hover {
- background-color: #fff;
- -webkit-transition-duration: .5s;
- border-left:4px solid #FCDFFF;
- margin-left:7px;
- }
- .navposition
- {
- position:fixed;
- top:175px;
- left:160px;
- }
- ::-webkit-scrollbar {
- width: 10px;
- height: 4px;
- background: #ffffff;
- background-repeat: repeat-y;
- background-attachment: fixed;
- }
- ::-webkit-scrollbar-thumb {
- background-color:#EBDDE2;
- -webkit-border-radius: 2ex; }
- .anything
- {
- position:fixed;
- top:140px;
- left:230px;
- font-family:'Ruthie';
- font-size:29px;
- line-height:29px;
- }
- </style>
- </head>
- <body>
- <div id="02" class="popup_block">
- <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>
- </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="navposition">
- <p><div class="links"><a href="/">REFRESH</a></div></p>
- <p><div class="links"><a href="/ask">LETTERBOX</a></div></p>
- <p><div class="links"><a href="/submit">SUBMIT!</a></div></p>
- <p><div class="links"><a href="#?w=300" rel="02" class="poplight">OTHER LINKS</a>
- </div></p>
- <p><div class="links"><a href="http://sweetcandyskittles.tumblr.com">THEME</a>
- </div></p>
- <div class="anything"><center>{title}</center><div style="height:auto;width:154px;font:10px trebuchet MS;background-color:#FDEEF4; -moz-box-shadow: 0 0 1px #E799A3; -webkit-box-shadow: 0 0 8px #C48793;border:2px solid #FCDFFF;padding-left:5px;padding-right:5px;border-radius:10px;"><center><p></p><img src="{PortraitURL-128}" style="border-radius:30px;"/><p></p></center>{description}<p></p>
- </div></div></div></div></div></div>
- <div id="content">
- {block:Posts}
- {block:Text}
- {block:Title}<div class="text"><center>{Title}</center></div><center><img src="http://25.media.tumblr.com/tumblr_lywhnkO8kE1r77gqoo1_250.png"></center>{/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}<div class="text"><center>{Title}</center></div>{/block:Title}
- <p></p>{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"><header></header><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>
- <div id="status2">
- ABOUT ME.
- <center><p>{text:about me}</strong></p>
- </center></div>
- <div id="status">
- UPDATES.<p>{text:updates}</p>
- </center></div>
- </body>
- </html>

