Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!------------------------------------------------------------------------
- /// camels theme by ally
- © 2014 stahrfruits.tumblr.com
- -------------------------------------------------------------------------->
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
- <head>
- <link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
- <meta name="color:Background" content="#FFFFFF"/>
- <meta name="color:Text" content="#000000"/>
- <meta name="color:Title" content="#ffc400"/>
- <meta name="color:Links" content="#4d3c11"/>
- <meta name="color:Hover" content="#FFFFFF"/>
- <meta name="color:Scrollbar" content="#363636"/>
- <meta name="color:Chat Background" content="#F5F5F5"/>
- <meta name="image:Header" content=""/>
- <meta name="if:Fade Images" content="1" />
- <meta name="if:rounded posts" content="" />
- <meta name="if:Endless Scrolling" content="1"/>
- <meta name="if:customlink1" content="1"/>
- <meta name="if:customlink2" content="1"/>
- <meta name="if:customlink3" content="1"/>
- <meta name="text:asklink" content="/ask"/>
- <meta name="text:ask link title" content="contact"/>
- <meta name="text:customlink1" content="/"/>
- <meta name="text:customlink2" content="/"/>
- <meta name="text:customlink3" content="/"/>
- <meta name="text:customlink1 title" content="link"/>
- <meta name="text:customlink2 title" content="link"/>
- <meta name="text:customlink3 title" content="link"/>
- <meta name="text:Blog Title" content="TITLE HERE" />
- <meta name="text:Scrolling Tab Bar" content="" />
- <meta name="text:reblog" content="reblog" />
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script type="text/javascript">
- var rev = "fwd";
- function titlebar(val)
- {
- var msg = "{text:Scrolling Tab Bar}";
- var res = " ";
- var speed = 100;
- var pos = val;
- msg = "{text:Scrolling Tab Bar}";
- var le = msg.length;
- if(rev == "fwd"){
- if(pos < le){
- pos = pos+1;
- scroll = msg.substr(0,pos);
- document.title = scroll;
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- else{
- rev = "bwd";
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- }
- else{
- if(pos > 0){
- pos = pos-1;
- var ale = le-pos;
- scrol = msg.substr(ale,le);
- document.title = scrol;
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- else{
- rev = "fwd";
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- }
- }
- titlebar(0);
- </script>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
- <script type="text/javascript" src="scrolltopcontrol.js">
- </script>
- <script type="text/javascript">
- var scrolltotop={
- //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
- //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
- setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
- controlHTML: '<img src="http://img189.imageshack.us/img189/3782/b2t.png"> l, //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
- controlattrs: {offsetx:10, offsety:10}, //offset of control relative to right/ bottom of window corner
- anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
- state: {isvisible:false, shouldvisible:false},
- scrollup:function(){
- if (!this.cssfixedsupport) //if control is positioned using JavaScript
- this.$control.css({opacity:0}) //hide control immediately after clicking it
- var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
- if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
- dest=jQuery('#'+dest).offset().top
- else
- dest=0
- this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
- },
- keepfixed:function(){
- var $window=jQuery(window)
- var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
- var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
- this.$control.css({left:controlx+'px', top:controly+'px'})
- },
- togglecontrol:function(){
- var scrolltop=jQuery(window).scrollTop()
- if (!this.cssfixedsupport)
- this.keepfixed()
- this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
- if (this.state.shouldvisible && !this.state.isvisible){
- this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
- this.state.isvisible=true
- }
- else if (this.state.shouldvisible==false && this.state.isvisible){
- this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
- this.state.isvisible=false
- }
- },
- init:function(){
- jQuery(document).ready(function($){
- var mainobj=scrolltotop
- var iebrws=document.all
- mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
- mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
- mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
- .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
- .attr({title:'Scroll to Top'})
- .click(function(){mainobj.scrollup(); return false})
- .appendTo('body')
- if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
- mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
- mainobj.togglecontrol()
- $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
- mainobj.scrollup()
- return false
- })
- $(window).bind('scroll resize', function(e){
- mainobj.togglecontrol()
- })
- })
- }
- }
- scrolltotop.init()
- </script>
- <title>{Title}</title>
- <style type="text/css">
- /*General Layout */
- body {margin:0px; background-color: {color:Background}; {block:IfGrainedBackgroundImage} background-image:url(‘{image:Background}’); background-attachment: fixed; background-repeat: repeat;{/block:IfGrainedBackgroundImage}font-family:raleway; font-size:11px; line-height:16px;text-align: justify; color:{color:Text}; letter-spacing:0px;}
- div#wrap{{block:IndexPage}width:1300px;{block:IndexPage}{block:PermalinkPage}width:500px; margin-left:auto;{/block:PermalinkPage}margin:auto;}
- div#content{{block:IndexPage}width:1300px;{block:IndexPage} margin-left:auto; margin-center:auto; margin-top:-20px; padding-top:0px;}
- .entry{{block:IndexPage}width:230px; float:left; padding:5px; padding-bottom:0px; margin:10px;{/block:IndexPage}
- {block:PermalinkPage}width:500px; margin-left:auto; margin-right:auto; {/block:PermalinkPage} text-align:justify;}
- .entry img{{block:IndexPage} max-width:230px; -webkit-transition: 0.3s ease-in; {/block:IndexPage}{block:PermalinkPage}width:500px; margin-left:auto; margin-right:auto;{/block:PermalinkPage}}
- .entry img:hover{{block:IndexPage} margin-top:5px;-webkit-transition: 0.3s ease-in;{/block:IndexPage}}
- {block:ifroundedposts}
- .entry img{
- -khtml-border-radius: 15px;
- -moz-border-radius: 15px;
- -webkit-border-radius: 15px;
- border-radius: 15px;
- }
- {/block:ifroundedposts}
- .header{padding:0px; margin-left:auto; margin-right:auto; margin-top:20px; {block:IndexPage}width:520px;{block:IndexPage} {block:PermalinkPage}width:500px;{/block:PermalinkPage}}
- /*Contents Info */
- .post_title{ font-family:raleway; text-transform:uppercase; letter-spacing:4px; font-size:18px; color:{color:Titles}; line-height:20px;}
- .links{font-family: raleway; color:{color:Links}; margin-bottom: 4px; text-transform:lowercase; font-size: 12px; line-height: 9px; letter-spacing:2px; margin: 5px; padding: 4px; text-align:right;}
- .links:hover{color:{color:Hover};}
- a:link, a:active, a:visited{color: {color:Links}; text-decoration: none; -webkit-transition: color 0.5s ease-out;-moz-transition: color 0.5s ease-out;transition: color 0.5s ease-out;}
- a:hover {color:{color:Hover};text-decoration: none;}
- div#page{position:fixed; right:5px; bottom:5px; font-family:raleway; text-transform:uppercase; text-align:right; background-color:{color:Chat Background};
- {block:IfEndlessScrolling}display:none;{/block:IfEndlessScrolling} padding:5px;}
- .quot{margin-left:0px; margin-top:-8px; font-family:raleway; text-transform:uppercase; font-size:18px; color:{color:Post title}; line-height:14px; letter-spacing:2px;}
- .quote{position:relative; top:5px; font-size:40px; opacity:0.2; filter: alpha(opacity = 20);}
- .source{ font-size:12px; text-align:right;}
- div#chat li { padding: 4px; background-color:{color:Chat Background}; margin-top: 2px;}
- div#chat ul{ {block:IndexPage} width:250px; {/block:IndexPage}
- {block:PermalinkPage} width:500px; margin-left:80px;{/block:PermalinkPage} list-style: none; padding: 0px; margin-top:5px; margin-bottom:10px; text-align: justify; }
- .audio {{block:IfWhiteAudioPlayer}background-color: #fff;{/block:IfWhiteAudioPlayer} {block:IfNotWhiteAudioPlayer} background-color: #000; {/block:IfNotWhiteAudioPlayer} {block:PermalinkPage} width:500px; {/block:PermalinkPage}}
- .asker{padding:5px; line-height:16px; font-family:raleway; text-transform:uppercase; letter-spacing:2px; background-color: {color:Chat Background}; }
- .qs { text-align:right;}
- .notespage { width:500px; opacity: 1; z-index: 10000; margin-top:0px; margin-left:0px; margin-right:auto; text-align:right; }
- .postnotes { margin-top:0; margin-left:20px; margin-right:auto; margin-bottom:0px; width:500px;
- text-align:left max-height:300px; overflow-x:auto; }
- {block:ifFadeImages} img {opacity: 0.85; -webkit-transition-duration: 0.8s; }
- img:hover { opacity: 1; -webkit-transition-duration: 0.8s; } {/block:ifFadeImages}
- .info{ background-color:{color:Chat Background}; display:block; padding:5px;}
- .triangle{font-family:Arial; font-size:16px; color:{color:Chat Background}; position:absolute;
- margin:-20px 0px 0px 7px;}
- .blogtitle{font-size:1px; {block:IndexPage}letter-spacing:12px;{block:IndexPage} {block:PermalinkPage}letter-spacing:10px;{/block:PermalinkPage} padding-bottom:15px; line-height:22px; color:{color:blogtitle}; font-family:ralewa; text-transform:uppercase; cursor:help; text-align:center;}
- /*Permalink Inyfo */
- {block:IndexPage}
- .entry .permalink {margin-top: 4px; border-top: 1px dotted {color:text}; text-align: center; font-size: 10px; text-transform: uppercase; padding-top: 3px; overflow:hidden; -webkit-transition: opacity 0.7s linear; opacity: 0.0; -webkit-transition: all 0.4s linear; -moz-transition: all 0.4s linear;transition: all 0.4s linear;}
- .entry:hover .permalink {overflow:visible; -webkit-transition: opacity 0.7s linear; opacity: .5; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
- .permalink {display:block; position: relative; text-align: right; text-transform:uppercase; font-size:9px; margin-top:-11px; font-family:'raleway', sans-serif; opacity:0.8; filter: alpha(opacity = 80); -webkit-transition: 0.3s ease-in; }
- .entry:hover .permalink{opacity: 1; filter: alpha(opacity = 100); -webkit-transition: 0.3s ease-in; }
- .photo_perma{display:block; height:15px; text-align:left; text-transform:uppercase; padding-left: 10px; padding-right: 10px; padding-top:10px; padding-bottom:10px; background-color:{color:background}; position: absolute; margin-top:-48px; margin-left:8px; opacity:0; filter: alpha(opacity = 0); -webkit-transition: 0.3s ease-in;}
- .photo_perma a{color:{color:text};}
- .entry:hover .photo_perma{ {block:IfCaption} margin-top:25px; {/block:IfCaption} opacity:0.75;
- filter: alpha(opacity = 75); -webkit-transition: 0.3s ease-in; }
- {/block:IndexPage}
- /*Other Info */
- iframe#tumblr_controls{position:fixed; top:1px; margin: 0 0 0 0; right: 6px;}
- {block:ifFadeImages} img {opacity: 0.85; -webkit-transition-duration: 0.8s; }
- img:hover { opacity: 1; -webkit-transition-duration: 0.8s; } {/block:ifFadeImages}
- ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:100px;}
- ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar}; height:10px;}
- ::-webkit-scrollbar {height:10px; width:8px; background-color:{color:background};}
- {CustomCSS}
- #links {
- text-align: center;
- font-size: 15px;
- color: {color:header links};
- text-transform: uppercase;
- }
- #desc {
- text-align:center;
- width:500px;
- height:auto;
- }
- #creds {
- text-align: left;
- font-size: 11px;
- position:fixed;
- left:10px;
- bottom:-65px;
- -webkit-transition: all .5s ease-in-out;
- -moz-transition: all .5s ease-in-out;
- -o-transition: all .5s ease-in-out;
- z-index:999;
- }
- #creds:hover {bottom:0px;}
- #cred {
- border-right-style:solid;
- border-bottom-style:solid;
- border-left-style:solid;
- border-width:0px;
- border-color:#000;
- padding: 5px 0 5px 0;
- background: #ffffff;
- width:150px;
- height:50px;
- border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- -webkit-border-top-right-radius: 0px;
- z-index: 9999;
- }
- #credtab {
- border-top-style:none;
- border-right-style:solid;
- border-bottom-style:solid;
- border-left-style:solid;
- border-width:0px;
- border-color:#000;
- text-align: center;
- height:13px;
- padding: 2px 0 8px 0;
- background:#ffffff;
- border-top-left-radius: 0px;
- -moz-border-radius-topleft: 0px;
- -webkit-border-top-left-radius: 0px;
- border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- -webkit-border-top-right-radius: 0px;
- width: 41px;
- }
- .nine{
- top:25px;
- right:5px;
- font-size:11px;
- z-index:4;
- position:fixed;
- font-family: "raleway";
- padding:0px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .nine:hover{
- bottom:15px;
- font-family: "raleway";
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .nine .linkk{opacity:0;
- bottom:5px;
- right:7px;
- font-family: "raleway";
- font-size:11px;
- z-index:4;
- position:fixed;
- padding:0px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .nine:hover .linkk{
- opacity:0.9;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- #title {
- font-family: "raleway";
- text-transform: uppercase;
- align:center;
- color:{color:Title};
- }
- </style>
- {block:IndexPage}
- <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
- </script>
- {block:IfEndlessScrolling}<script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>{/block:IfEndlessScrolling}
- <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
- <script type="text/javascript">
- $(window).load(function () {
- $('#content').masonry(),
- $('.masonryWrap').infinitescroll({
- navSelector : "div#navigation",
- // selector for the paged navigation (it will be hidden)
- nextSelector : "div#navigation a#nextPage",
- // selector for the NEXT link (to page 2)
- itemSelector : ".entry",
- // selector for all items you'll retrieve
- bufferPx : 10000,
- extraScrollPx: 11000,
- loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
- loadingText : "<em></em>",
- },
- // call masonry as a callback.
- function() { $('#content').masonry({ appendedContent: $(this) }); }
- );
- });
- </script>
- <script type="text/javascript">
- $(window).load(function(){
- $("p").remove(":contains('Source:')");
- });
- </script>
- {/block:IndexPage}
- </head>
- <body>
- </center></div>
- </div>
- {block:Pagination}<div id="page">{block:PreviousPage}<a href="{PreviousPage}">prev ious page \</a> {/block:PreviousPage}</div> <div id="page">{block:nextPage}<a href="{nextPage}">/ next page</a>{/block:nextPage}</div>{/block:Pagination} <div class="navigation">{block:Pagination}{/block:Pagination}</div>
- {block:IfSidebarfadeonscrolldown}
- <script>
- var visible = 0;
- $(window).scroll(function() {
- if($(window).scrollTop()>="60") {
- if(visible == 0){
- $("#sidebar").stop().fadeTo("medium", 1);
- visible = 1;
- }
- }
- else {
- if(visible == 1){
- $("#sidebar").stop().fadeTo("medium", 0.0);
- visible = 0;
- }
- }
- });
- </script>
- {/block:IfSidebarfadeonscrolldown}
- <div id="wrap">
- <div class="header">
- <br>
- <div id="title">
- <center><big><big><big><big><big><big><big><big><big><big>{text:Blog Title}</big></big></big></big></center>
- </div>
- {block:IfHeaderImage}<img style="{block:IndexPage}width:520px;{block:IndexPage} {block:PermalinkPage}width:500px;{/block:PermalinkPage} overflow:hidden; float:left; padding-bottom:15px;" src="{image:header}">{/block:IfHeaderImage}
- <br>
- <div id="links">
- <small>
- <a href="/">refresh</a>
- <a href="{text:asklink}">{text:ask link title}</a>
- <a href="/archive">archive</a>
- {block:ifcustomlink1}<a href="{text:customlink1}">{text:customlink1 title}</a> {/block:ifcustomlink1}
- {block:ifcustomlink2}<a href="{text:customlink2}">{text:customlink2 title}</a> {/block:ifcustomlink2}
- {block:ifcustomlink3}<a href="{text:customlink3}">{text:customlink3 title}</a> {/block:ifcustomlink3}
- <!---Please don't remove. I worked really hard on this theme :) -->
- <a href="http://re-hydrate.tumblr.com">credit</a>
- </small>
- </div>
- <p align="center">
- <div id="desc">{description}</div>
- </p>
- <div style="text-align:right;">
- </div></div>
- <div style="padding-top:15px;"><div id="content">
- {block:Posts}
- {block:Text}<div class="entry">{block:Title}<span class="post_title">{Title}</span>{/block:Title}
- {Body}{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Text}
- {block:Photo}<div class="entry">{block:IndexPage}<a href="{Permalink}">{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}<img src="{block:IndexPage}{PhotoURL-HighRes}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-HighRes}{/block:PermalinkPage}" alt="{PhotoAlt}" {block:IndexPage}width="250"{/block:IndexPage}{block:PermalinkPage}width="520"{/block:PermalinkPage}/>{block:IndexPage}</a>{/block:IndexPage}{block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage} {block:IndexPage}<span class="photo_perma"><a href="{Permalink}"> {NoteCountWithLabel}</a> • <a href="{ReblogURL}" target="_blank">{text:reblog} </a></a></a></span>{/block:IndexPage}</div>{/block:Photo}
- {block:Photoset}<div class="entry">{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{block:IndexPage}{block:IfCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfCaption}{/block:IndexPage}<br>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel} - <a href="{ReblogURL}" target="_blank">{text:reblog} </a></a></span>{/block:IndexPage}</div>{/block:Photoset}
- {block:Quote}<div class="entry"><span class="quote">❝</span><div class="quot">{Quote}</div>{block:Source}<div class="source"><p>— {Source}</p></div>{/block:Source}
- {block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Quote}
- {block:Chat}<div class="entry">{block:Title}<span class="post_title">{Title}</span>{/block:Title}
- <div id="chat"><ul>{block:Lines}<li>{block:Label}<b>{Label}</b>{/block:Label}{Line}</li>{/block:Lines}</ul></div>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Chat}
- {block:Link}<div class="entry"><span class="post_title"><a href="{URL}">{Name} </span></a>{block:Description}{Description}{/block:Description}{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Link}
- {block:Audio}<div class="entry"><div class="audio"> {block:IfWhiteAudioPlayer}{AudioPlayerWhite}{/block:IfWhiteAudioPlayer}{block:IfNotWhiteAudioPlayer}{AudioPlayerBlack}{/block:IfNotWhiteAudioPlayer}</div> {block:AlbumArt}<img src="{AlbumArtURL}" style="width:50px; height:50px; float:left; padding-right:10px; padding-top:10px; padding-left:5px; padding-bottom:10px;">{/block:AlbumArt}{block:Caption}{Caption}{/block:Caption} <br>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Audio}
- {block:Video}<div class="entry">{block:IndexPage}{Video-250}{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}
- {block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Video}
- {block:Answer}<div class="entry"><div class="asker">{Question}</div> <br> <div class="triangle">▼</div> <div class="qs">asked by {Asker}</div><br>{Answer}<p>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Answer}
- {block:PermalinkPage} <div class="notespage"> {block:NoteCount}{NoteCountWithLabel} / {/block:NoteCount} {block:Date}{TimeAgo}{/block:Date} {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom} {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom} {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="postnotes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div> {/block:PermalinkPage}
- {/block:posts}
- {block:IndexPage}
- <div class="column navigation" id="navigation">
- {block:Pagination}
- {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
- </div>
- {/block:IndexPage}
- </div></div></div></body>
- <!--
- Do not remove credit for this edit or you WILL be reported.
- -->
- <div class="nine"><a href="http://re-hydrate.tumblr.com">theme</a><br><div class="linkk"><a href="http://re-hydrate.tumblr.com">re-hydrate</a></div>
- </html>
Add Comment
Please, Sign In to add comment