Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Base Code by disikes.tumblr.com
- Edit this code to your heart's content! You don't have to credit me anywhere on the theme, but if people ask where you got your base, it'd be cool if you sent them my way!
- PLEASE DO NOT REDISTRIBUTE THIS CODE AS YOUR OWN BASE CODE.
- -->
- <html lang="en">
- <head>
- <meta name="image:Background" content=""/>
- <meta name="color:Background" content="#FFFFFF"/>
- <meta name="image:Sidebar" content=""/>
- <meta name="color:Title" content="#999999"/>
- <meta name="color:Blog Title" content="#999999"/>
- <meta name="color:Link" content="#555555"/>
- <meta name="color:Hover" content="#999999"/>
- <meta name="color:Text" content="#777777"/>
- <meta name="color:Permalink" content="#e1e1e1"/>
- <meta name="color:Permalink Hover" content="#e1e1e1"/>
- <meta name="text:Link One URL" content=""/>
- <meta name="text:Link One Title" content="link"/>
- <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=""/>
- <meta name="text:Link 5" content=""/>
- <meta name="text:Link 5 URL" content=""/>
- <style type="text/css">body, a, a:hover {cursor: url(http://media.tumblr.com/tumblr_m35kzqXutO1rnr4eb.png), progress;}</style>
- <script type="text/javascript">
- // <![CDATA[
- var colour="pink"; // 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>
- <title>{Title}</title>
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <link rel="shortcut icon" href="{Favicon}">
- <!---------------DO NOT REMOVE THESE SCRIPTS--------------->
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){$(document)
- .ready(function(){$("[title]")
- .style_my_tooltips();});})
- (jQuery);
- </script>
- {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 = $('#entries');
- $wall.imagesLoaded(function(){
- $wall.masonry({
- itemSelector: '#post, #post_photo',
- isAnimated : false
- });
- });
- $wall.infinitescroll({
- navSelector : '#pagination',
- nextSelector : '#pagination a',
- itemSelector : '#post, #post_photo',
- bufferPx : 2000,
- debug : false,
- errorCallback: function() {
- $('#scroll').fadeOut('normal');
- }},
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- $newElems.imagesLoaded(function(){
- $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
- });
- }); $('#entries').show(500);
- });
- </script>
- {/block:IndexPage}
- <!---------------END SCRIPTS--------------->
- <style type="text/css">
- /************EDIT BODY HERE************/
- ::-webkit-scrollbar {
- height: 6px;
- width: 6px;
- background: #ffffff;
- }
- ::-webkit-scrollbar-thumb {
- background: #D8E8FF;
- border-radius: 10px;
- }
- body{
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment:fixed;
- background-repeat:100%;
- background-position:bottom-right;
- font-family: Calibri;
- font-size:8px;
- letter-spacing:1px;
- text-transform:normal;
- text-align:left;
- line-height:11px;
- color: {color:Text};}
- a:link, a:active, a:visited{
- text-decoration: none;
- color: {color:Link};}
- a:hover {
- color:{color:Link};
- text-decoration:none;}
- /************EDIT TOOLTIP HERE************/
- #s-m-t-tooltip {
- padding: 3px;
- height:auto;
- display: none;
- font-family: consolas;
- font-size: 8px;
- text-transform:uppercase;
- text-align: center;
- letter-spacing:1px;
- margin-top:10px;
- margin-left: 15px;
- line-height: 8px;
- z-index: 999999999999;
- border-radius:3px;
- border: 1px solid #f5f5f5;
- background:#ffffff;
- color: #888;}
- /************EDIT POST POSITION/WIDTH HERE************/
- /*To increase the amount of columns, increase the width. To decrease the amount of columns, decrease the width.*/
- #entries{
- text-align:left;
- width:780px;
- margin-left:100px;
- margin-top:10px;
- position:relative;
- overflow: hidden;
- }
- /************EDIT OVERALL POSTS HERE************/
- /*When increasing the amount of columns, you may have to decrease the #post width. Otherwise, to get larger posts, increase the width.*/
- #post{
- text-align:left;
- margin:25px;
- background:#ffffff;
- max-width: 100%;
- display:block;
- overflow:hidden;
- width:250px;
- font-size:10px;
- text-transform:uppercase;
- line-height:18px;
- letter-spacing:1px;
- padding:12px;
- opacity:.9;
- border:1px solid #eee;
- box-shadow: 8px 8px rgba(0,0,0,.05);
- -webkit-transition: all 0.4s ease-out;
- -moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
- outline-offset:-6px;
- outline:1px dashed #eee;
- {block:PermalinkPage}
- width:500px;
- {/block:PermalinkPage}}
- /*Do not delete #post img.*/
- #post img{
- max-width:100%;
- border-radius:5px;
- }
- #post:hover{
- opacity:1;
- -webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- /*Edit the permalinks all posts.*/
- .permalink{
- text-transform:lowercase;
- font-size:9px;
- background-color:#D7EAFF;
- border: 0px solid #E0F1FF;
- text-align:right;
- color:{color:Permalink};
- margin-top: 8px;
- padding-right:4px;
- line-height:12px;
- border-radius:3px;
- text-shadow:1px 1px 0px #BBBBBB;
- }
- .permalink a{
- text-transform:uppercase;
- line-height:15px;
- color:{color:Permalink};
- -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
- }
- .permalink a:hover{
- color:{color:Permalink Hover};
- -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
- }
- .notes {
- float: left;
- text-align: left;
- padding-left:4px;
- }
- /*Edit the titles on any text-based post.*/
- .posttitle{
- font-size:10px;
- text-align:center;
- color:{color:Link};}
- .posttitle a{
- color:{color:Link};}
- /************EDIT QUOTE POSTS HERE************/
- .quote{
- margin-right: 5px;}
- .source{
- padding-top:5px;
- display:block;
- text-align:right;}
- /************EDIT ANSWER POSTS HERE************/
- .ask{
- padding:4px;
- background:#fff;
- border:1px solid #eee;
- border-radius:5px;
- }
- .asker{
- color:{color:Link};}
- .answer{
- margin-top:10px;}
- /************EDIT AUDIO POSTS HERE************/
- .audio{
- {block:IndexPage}width:180px;{/block:IndexPage}
- {block:PermalinkPage}width:239px;{/block:PermalinkPage};}
- .info{
- padding:2px 0px 1px 57px;}
- .i {
- text-transform:uppercase;
- letter-spacing:1px;
- font-size:8px;}
- .pl b,strong{
- text-transform:lowercase;
- font-size:9px;}
- .player{
- position:absolute;
- overflow:hidden;
- margin-top:0px;
- margin-left:15px;
- background:#ffffff;
- width:24px;
- height:23px;}
- /************EDIT VIDEO POSTS HERE************/
- /***********DO NOT DELETE THIS CODE************/
- .video-container {
- position:relative;
- padding-bottom:56.25%;
- padding-top: 30px;
- height:0;
- overflow:hidden;}
- .video-container iframe,
- .video-container object,
- .video-container embed {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;}
- /************EDIT CHAT POSTS HERE************/
- .chat{
- line-height:12px;
- list-style:none;}
- .chat ul{
- list-style:none;
- padding:0px 5px;
- line-height:15px;}
- .label{
- color:{color:Link};}
- /************EDIT SIDEBAR HERE************/
- #sidebar{
- background:#fff;
- border:0px #f5f5f5 solid;
- margin-left:-335px;
- margin-top:-20px;
- width:165px;
- position:fixed;
- text-align:center;
- padding: 5px;
- line-height: 15px;
- height:100%;
- }
- @font-face{font-family:breakthesilence;src:url('http://static.tumblr.com/e1djgf7/1hunbm6xi/breakthesilence.ttf')}
- .blogtitle{
- padding:5px;
- padding-bottom:0px;
- text-transform:normal;
- text-align:center;
- font-size:26px;
- font-family:breakthesilence;
- }
- .blogtitle a{
- color:{color:Blog Title};}
- @font-face {
- font-family: "silkscreen";
- src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf');
- }
- .description{
- padding:5px;
- font:8px silkscreen;
- line-height:12px;
- text-align:left;
- }
- .links{
- margin-left:-15px;
- padding:0px 10px 5px 10px;
- margin-top:5px;}
- .links a{
- margin-left:15px;}
- .links a:hover{
- color:{color:Hover};}
- .linkss a{
- margin-left:5px;
- text-align:right;
- margin-top:3px;
- display:block;
- width:160px;
- height:12px;
- padding-right:3px;
- padding-bottom:3px;
- font-size:10px;
- font-family: calibri light;
- background:#ffffff;
- border-bottom:1px solid #f0f0f0;
- color:#b8b8b8;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;
- }
- .linkss a:hover{
- margin-left:5px;
- text-align:right;
- margin-top:3px;
- display:block;
- width:110px;
- height:12px;
- padding-right:13px;
- font-size:10px;
- font-family: calibri light;
- background:#ffffff;
- border-bottom:1px solid #f0f0f0;
- color:#a3b5d8;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;
- }
- #banner2 {
- background-image:url('http://i1172.photobucket.com/albums/r578/Happygirl94/tumblr_inline_mrf2j8wesW1rto88t_zps92788d71.png');
- repeat:repeat-x;
- left:0;
- width:700px;
- height:30px;
- position: fixed;
- opacity:1;
- border-right:10px solid #fafafa;
- margin-left: -170px;
- margin-top: 322px;-webkit-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);}
- /************EDIT TEXT SETTINGS HERE************/
- i, em{
- color:{color:Link};}
- b, strong{
- font-weight:normal;
- text-transform:uppercase;
- color:{color:Link};}
- ul,ol{
- margin:0px;
- margin-left:-5px;}
- p{
- padding:0px;
- margin:2px;}
- u{
- text-decoration:none;
- color:{color:Title};}
- blockquote {
- margin:0px;
- padding:4px;
- background:#fff;}
- /************DO NOT DELETE #SCROLL************/
- #scroll{
- bottom:-20px;
- position: absolute;
- left: 50%;
- width:10px;
- height:5px;
- overflow:hidden;
- margin-bottom:80px;}
- /************EDIT CREDIT HERE************/
- #credit{
- position:fixed;
- right:10px;
- bottom:10px;
- text-transform:uppercase;
- font-family:Calibri;
- font-size:8px;}
- #credit a{
- color:#aaaaaa;}
- </style>
- </head>
- <body>
- <center>
- <div id="entries">
- <div id="banner2"></div>
- <!---------------EDIT SIDEBAR CONTENT HERE--------------->
- <div id="sidebar">
- <br>
- <div class="blogtitle"><a href="/">{Title}</a></div>
- <div class="links">
- <a href="/">home</a>
- <a href="/ask">ask</a>
- <a href="{text:Link One URL}">{text:Link One Title}</a>
- </div>
- <center><a href="/"><img src="{image:sidebar}"/></a></center>
- <div class="description">{Description}</div>
- <div class="linkss">
- <a href="{text:link 2 url}">{text:link 2}</a>
- <a href="{text:link 3 url}">{text:link 3}</a>
- <a href="{text:link 4 url}">{text:link 4}</a>
- <a href="{text:link 5 url}">{text:link 5}</a>
- </div>
- </div>
- {block:Posts}
- <!---------------DO NOT DELETE block:ContentSource--------------->
- {block:ContentSource}
- <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
- width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- <div id="post">
- <!---------------EDIT TEXT POSTS HERE--------------->
- {block:Text}
- <div class="text">
- <div class="posttitle">{block:Title}{Title}{/block:Title}</div>
- {Body}{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
- </div>{/block:IndexPage}</div>
- {/block:Text}
- <!---------------EDIT LINK POSTS HERE--------------->
- {block:Link}
- <a href="{URL}"><div class="posttitle">{Name}</div></a>
- {block:Description}{Description}{/block:Description}
- {block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
- </div>{/block:IndexPage}
- {/block:Link}
- <!---------------EDIT PHOTO POSTS HERE--------------->
- {block:Photo}
- {block:IndexPage}
- <img src="{PhotoURL-250}" alt="{PhotoAlt}" width="250px"/>{/block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
- </div>{block:PermalinkPage}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{/block:PermalinkPage}</a>
- {/block:Photo}
- <!---------------EDIT PHOTOSET POSTS HERE--------------->
- {block:Photoset}
- {block:IndexPage}<a href="{Permalink}">{Photoset-250}</a><div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
- </div>{/block:IndexPage}
- {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
- {/block:Photoset}
- <!---------------EDIT QUOTE POSTS HERE--------------->
- {block:Quote}
- {Quote}{block:Source}
- <div class="source">{Source}</div>{/block:Source}
- {block:IndexPage}
- <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>{/block:IndexPage}</div>
- {/block:Quote}
- <!---------------EDIT ANSWER POSTS HERE--------------->
- {block:Answer}
- <div class="ask"><span class="asker">{Asker}:</span> {Question}</div>
- <div class="answer">{Answer}</div>
- {block:IndexPage}
- <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div></div>{/block:IndexPage}
- {/block:Answer}
- <!---------------EDIT CHAT POSTS HERE--------------->
- {block:Chat}
- {block:Title}<div class="posttitle">{Title}</div>{/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:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> /<a href="{Permalink}">{NoteCount}</a></div>
- {/block:IndexPage}
- {/block:Chat}
- <!---------------EDIT AUDIO POSTS HERE--------------->
- {block:Audio}<div class="player">{AudioPlayerWhite}</div>
- <div class="info"><div class="i"><span{block:TrackName} style="display: none;"{block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}</div><div class="i">by<span{block:Artist} style="display: none;"{block:Artist}>Unknown</span> {block:Artist}{Artist}{/block:Artist}</div></div>{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a></div>
- {/block:IndexPage}
- {/block:Audio}
- <!---------------EDIT VIDEO POSTS HERE--------------->
- {block:Video}
- {block:IndexPage}<div class="video-container">{Video-250}</div>
- <div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a></div>{/block:IndexPage}
- {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
- {/block:Video}
- <!---------------EDIT PERMALINK PAGE HERE--------------->
- {block:PermalinkPage}
- {block:Caption}{Caption}{/block:Caption}
- <p>{block:Date} {Month} {DayofMonthWithSuffix}, {Year}{/block:Date} {block:NoteCount}, {NoteCountWithLabel}{/block:NoteCount} {block:RebloggedFrom} , (via <a href="{ReblogParentURL}">{ReblogParentName}</a>){/block:RebloggedFrom}
- <div class="permapage">
- <div style="margin-top:10px; margin-left:-10px;">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>{/block:PermalinkPage}
- </div>
- {/block:Posts}
- </div>
- <!---------------DO NOT DELETE THIS--------------->
- {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}
- </center>
- </body>
- <BODY onselectstart="return false;" ondragstart="return false;">
- <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>
- <!---------------EDIT CREDIT CONTENT HERE--------------->
- <div id="credit"><a href="http://dislikes.tumblr.com/">credit</a></div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment