Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <!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">
- <head>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <link href='http://fonts.googleapis.com/css?family=Josefin+Slab' rel='stylesheet' type='text/css'>
- <!--DEFAULT VARIABLES-->
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#fcfcfc"/>
- <meta name="color:link" content="#777"/>
- <meta name="color:text" content="#777"/>
- <meta name="color:title" content="#333"/>
- <meta name="color:hover" content="#373638"/>
- <meta name="image:sidebar" content="1"/>
- <meta name="image:background" content="1"/>
- <meta name="text:Link 1" content=""/>
- <meta name="text:Link 1 URL" content=""/>
- <meta name="text:Link 2" content=""/>
- <meta name="text:Link 2 URL" content=""/>
- <meta name="text:Link 3" content=""/>
- <meta name="text:Link 3 URL" content=""/>
- <meta name="text:Link 4" content=""/>
- <meta name="text:Link 4 URL" content=""/>
- <style type="text/css">body, a, a:hover {cursor: url(http://media.tumblr.com/tumblr_lpyq1khKRw1qcn2vb.gif), progress;}</style>
- <script type="text/javascript">
- // <![CDATA[
- var colour="white"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-13 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";
- rats.style.zIndex="999";
- 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";
- rats.style.zIndex="999";
- 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 (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- 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+1)+"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;
- starx[i]+=(i%5-2)/5;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- 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;
- tinyx[i]+=(i%5-2)/5;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- 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) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (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() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)=='number' && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- 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>
- <style type="text/css">
- #tumblr_controls{
- position:fixed !important;
- -webkit-filter: invert(100%)
- }
- iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-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;}
- p {
- margin:0px;
- margin-top:0px;
- }
- body {
- margin: 5px;
- font-family: calibri light;
- line-height:12px;
- font-size:10px;
- letter-spacing:1px;
- background-attachment: fixed;
- background-repeat: repeat;
- color:{color:text};
- background-color: {color:Background};
- background-image:url({image:Background});
- }
- a:link, a:active, a:visited{
- text-decoration: none;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- -o-transition: all 0.6s ease-out;
- transition: all 0.6s ease-out;
- color:{color:link};
- }
- a:hover {
- text-decoration: none;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- -o-transition: all 0.3s ease-out;
- transition: all 0.3s ease-out;
- color: {color:Hover};
- }
- div#center{
- margin:auto;
- position:relative;
- width:1000px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- .entry {
- float:left;
- display: block;
- margin:5px;
- overflow:hidden;
- width:250px;
- background:white;
- padding:7px;
- border:1px solid #eee;
- opacity:0.8;
- -webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- {block:PermalinkPage}
- width:500px;
- text-align:left;
- line-height:18px;
- font-size:11px;
- letter-spacing:1px;
- {/block:PermalinkPage}
- }
- .entry:hover{
- opacity:1;
- -webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .entry .perma{
- width:250px;
- height:auto;
- margin-left:0px;
- position: absolute;
- line-height: 14px;
- overflow:hidden;
- text-align:center;
- top:3px;
- padding:3px;
- background:white;
- word-spacing:2px;
- letter-spacing:1px;
- opacity: 0.0;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- .entry:hover .perma{
- overflow:visible;
- opacity:0.95;
- }
- .entry img{
- max-width:100%;
- border-radius:5px;
- }
- #posts {
- width:560px;
- margin-top:1px;
- z-index:99;
- margin-left:260px;
- right:auto;
- background:transparent;
- margin-right:auto;
- position:relative;
- overflow-y: hidden;
- }
- #main {margin:0 auto;
- height: 100%;
- position: fixed;
- padding:15px;
- width:560px;
- margin-left: 240px;
- margin-top: -20px;
- border-left:0px dashed #E1E1E1;
- background-color:white;
- }
- #banner1 {
- background-image:url('http://media.tumblr.com/acdb10e3811f3e6319303f897e909412/tumblr_inline_n4cj14FxpL1r63cto.png');
- repeat:repeat-x;
- left:0;
- width:720px;
- height:18px;
- position: fixed;
- opacity:1;
- border-right:10px solid #fafafa;
- margin-left: 51px;
- margin-top: 334px;-webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- z-index:999999999999999999;
- }
- #banner2 {
- background-image:url('http://media.tumblr.com/acdb10e3811f3e6319303f897e909412/tumblr_inline_n4cj14FxpL1r63cto.png');
- repeat:repeat-x;
- left:0;
- width:700px;
- height:18px;
- position: fixed;
- opacity:1;
- border-right:10px solid #fafafa;
- margin-left: 660px;
- margin-top: 330px;-webkit-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);
- z-index:999999999999999999;
- }
- #sidebar{
- position:fixed !important;
- width:200px;
- height:180px;
- background:white;
- height:auto;
- margin-top:240px;
- margin-left:-10px;
- text-align:justify;
- padding:5px;
- border: 1px solid #f5f5f5;
- }
- #sidebar img{
- width: 100px;
- height: 100px;
- }
- #sidebar2{
- position:fixed !important;
- width:100px;
- height:180px;
- background:white;
- height:auto;
- margin-top:120px;
- margin-left:-10px;
- text-align:justify;
- padding:5px;
- border: 1px solid #f5f5f5;
- }
- #sidebar3{
- position:fixed !important;
- width:80px;
- background:transparent;
- height:auto;
- margin-top:120px;
- margin-left:110px;
- text-align:justify;
- padding:5px;
- }
- a.kaito {
- border: 1px solid #eee;
- margin-left: 2px;
- margin-bottom: 4px;
- text-align: center;
- width: 60px;
- background: #fff;
- display: inline-block;
- color:#555;
- font:normal 9px 'calibri light';
- text-transform: uppercase;
- letter-spacing: 2px;
- padding:8px;
- filter: alpha(opacity = 80);
- opacity:.8;
- border-radius:5px;
- -moz-transition-duration: 1s;-
- webkit-transition-duration: 1s;
- }
- .description{
- padding:0px;
- font-size:8px;
- text-transform:uppercase;
- line-height:14px;
- letter-spacing:1px;
- }
- askk {
- font-family:calibri light;
- font-size: 15px;
- z-index:1;
- color: {color:Title};
- }
- .title{
- line-height: 18px;
- font-size: 16px;
- font-family: 'Josefin Slab', serif;
- color:{color:Title};
- }
- .permalink{
- text-transform: uppercase;
- font-size:8px;
- display: block;
- text-align: center;
- text-decoration: none;
- margin-top:8px;
- margin-bottom:2px;
- padding:3px;
- border-top:1px solid #eee;
- }
- #audio {
- width:200px;
- height:auto;
- min-height:60px;
- padding-bottom:0px;
- }
- .cover {
- position:absolute;
- z-index:1;
- width:60px;
- height:60px;
- }
- .cover img {
- float:left;
- width:60px;
- height:60px;
- }
- .playbox {
- opacity:0.6;
- width:27px;
- height:30px;
- overflow:hidden;
- position:absolute;
- z-index:1000;
- margin-left:17px;
- margin-top:17px;
- text-align:center;
- }
- .info {
- margin-left:73px;
- margin-top:4px;
- line-height:14px;
- }
- #infscr-loading{
- bottom: -70px;
- position: absolute;
- left: 50%;
- margin-left:-8px;
- width:16px;
- height:11px;
- overflow:hidden;
- margin-bottom: 50px;
- }
- ::-webkit-scrollbar-thumb:vertical {background-color: #000; border:4px solid #FFFFBA; border-top: 5px solid #F3DBFF; border-bottom: 5px solid #F3DBFF; height: 10px;}
- ::-webkit-scrollbar-thumb:horizontal {background-color: #000; height:10px!important;}
- ::-webkit-scrollbar {background-color: #000; border: 4px solid #000; height:10px; width:10px;}
- ::-webkit-scrollbar-track-piece {
- background-color: #DCEAFF;
- border: 3px solid #fff;
- }
- ::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
- background: #ddd;
- }
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 10px;
- border-left: 1px dotted #555555;
- }
- blockquote p, ul{
- margin:0px;
- padding:0px;
- }
- a img{border: 0px;}
- ul, ol, li{list-style:none; margin:0px; padding:0px;}
- .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
- .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
- .notes img{width:15px; position:relative; top:3px;border-radius:60px;}
- <--ses-->
- small{font-size: 90%;}
- {CustomCSS}
- </style>
- {block:IndexPage}
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
- <script type="text/javascript">
- $(window).load(function(){
- var $wall = $('#posts');
- $wall.imagesLoaded(function(){
- $wall.masonry({
- itemSelector: '.entry, .entry_photo',
- isAnimated : false
- });
- });
- $wall.infinitescroll({
- navSelector : '#pagination',
- nextSelector : '#pagination a',
- itemSelector : '.entry, .entry_photo',
- bufferPx : 2000,
- debug : false,
- errorCallback: function() {
- $('#infscr-loading').fadeOut('normal');
- }},
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- $newElems.imagesLoaded(function(){
- $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
- });
- }); $('#posts').show(500);
- });
- </script>
- {/block:IndexPage}
- <title>{title}</title>
- <link rel="shortcut icon" href="{Favicon}" />
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- <BODY onselectstart="return false;" ondragstart="return false;">
- <div class="wrapper">
- <div class="header">
- </div>
- <div id="cage">
- <div id="center">
- <!---->
- <div id="sidebar">
- <div class="description">{Description}</div>
- <center>
- <select onchange='location=this.options[this.selectedIndex].value;' style='
- font-family:calibri light;line-height:90%;font-style:none;font-size:10px;text-transform:lowercase;letter-spacing:0px;color:#353535;width:200px;text-align:center;background-color:#fff;border:#ddd 1px solid; height:20px;'>
- <option>N A V I G A T I O N</option>
- <option value="{text:Link 1 url}"> {text:link 1} </option>
- <option value="{text:link 2 url}"> {text:link 2} </option>
- <option value="{text:link 3 url}"> {text:link 3} </option>
- <option value="{text:link 4 url}"> {text:link 4} </option>
- </select>
- </center>
- </div>
- <div id="sidebar2">
- <center><a href="/"><img src="{image:sidebar}" width=100%></a></center>
- </div>
- <div id="sidebar3">
- <a class="kaito" href="/">home</a>
- <a class="kaito" href="/ask">contact</a>
- <a class="kaito" href="/archive">past</a>
- </div>
- <!------------------------------------->
- <div class="left">
- <div id="banner2"></div>
- <div id="banner1"></div>
- <div id="main"></div>
- <div id="posts">
- {block:Posts}
- <div class="entry">
- {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span>
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
- <br>{/block:HasTags}</span>
- {/block:Text}
- {block:Answer}
- <div style="margin-top:2px;;margin-bottom:0px;min-height:30px; padding: 4px; background-color:#fff;border:1px solid #eee;border-radius:5px; letter-spacing:1px;line-height:14px;">
- <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3.5px;"/><askk>{asker}</askk>: {Question}</div>
- <div style="margin-top:2px; line-height:13px;letter-spacing:1px;margin-bottom:4px; background: transparent;">{Answer}</div>
- {/block:Answer}
- {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description}
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
- {/block:Link}
- {block:Photo}
- {block:IndexPage}
- <center>
- <div class="perma">
- Posted on {dayofweek} · <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
- <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
- {LinkCloseTag}
- {/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}
- <center>
- <div class="perma">
- Posted on {dayofweek} · <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
- {Photoset-250}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Photoset-500}</center>
- {/block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br>
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
- </span>{/block:Quote}
- {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
- {/block:Chat}
- {block:Audio}
- <div id="audio"><div class="cover"><img src="http://static.tumblr.com/k9utpfa/tcom8wpif/default_cover_m.jpg"></div>{block:AlbumArt}<div class="cover"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}<div class="playbox">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div><div class="info"><b>Artist:</b> <span{block:Artist} style="display:none;"{/block:Artist}>Unknown</span>{block:Artist}{Artist}{/block:Artist}<br><b>Title:</b> <span{block:TrackName} style="display:none;"{/block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}<br><b>Album:</b> <span{block:Album} style="display:none;"{/block:Album}>Unknown</span>{block:Album}{Album}{/block:Album}{block:PlayCount}<br><b>Plays:</b> {FormattedPlayCount}{/block:PlayCount}</div></div>
- {block:IndexPage}
- {/block:IndexPage}
- {/block:Audio}
- {block:Video}
- {block:IndexPage}
- <center>
- <div class="perma">
- Posted on {dayofweek} · <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
- {Video-250}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Video-400}</center>
- {/block:PermalinkPage}
- {block:Video}
- {block:PostNotes}<div align="middle">{caption}</div>
- <center>
- {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
- {block:HasTags}
- tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
- {block:RebloggedFrom}
- reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
- posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
- {/block:RebloggedFrom}
- </center></span>
- <br>
- <div id="postnotes">{PostNotes}</div><br>
- <center>{block:ContentSource}
- <br><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}</center>
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </div></div>
- {block:IndexPage}
- {block:Pagination}
- <div id="pagination">
- {block:NextPage}
- <a id="nextPage" href="{NextPage}"></a>
- {/block:NextPage}
- {block:PreviousPage}
- <a href="{PreviousPage}"></a>
- {/block:PreviousPage}
- </div>
- {/block:Pagination}
- {/block:IndexPage}
- </body>
- <div style=" font-size:8px; position:fixed; bottom:5px; left:0px; text-align:center; font-family:arial">
- <a href="http://themesbymiki.tumblr.com/tagged/cute-themes">✿</a></div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment