Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- THEME MADE BY NAMUNAMOO/HIKOUSHI (http://hikoushi.tumblr.com)
- PLEASE DON'T REMOVE THE CREDITS. THANK YOU.
- -->
- <!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" xml:lang="en" lang="en">
- <html>
- <head>
- <title>{title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <!--LOOK AT ALL THESE FREAKIN' OPTIONS. ^^"-->
- <meta name="color:Background" content="#FFFFFF"/>
- <meta name="color:Body Font" content="#363636"/>
- <meta name="color:Posts" content="#FFFFFF"/>
- <meta name="color:Border" content="#cccccc"/>
- <meta name="color:Links" content="#507dc4"/>
- <meta name="color:Links hover" content="#FFFFFF"/>
- <meta name="color:Accent Color" content="#8bce67"/>
- <meta name="color:Description" content="#898989"/>
- <meta name="color:Entry Bold" content="#4db35a">
- <meta name="color:Entry Italic" content="#53a7f8">
- <meta name="color:Notes" content="#cccccc"/>
- <meta name="color:Post Title" content="#8f65f5"/>
- <meta name="color:Quote" content="#363636"/>
- <meta name="color:Question Background" content="#EEEEEE"/>
- <meta name="color:ScrollBar" content="#484848"/>
- <meta name="color:ScrollBar Background" content="#e8e8e8"/>
- <meta name="image:Sidebar" content="http://25.media.tumblr.com/tumblr_lmyldp9Pt21qcv9d7o1_500.png"/>
- <meta name="image:Background" content=""/>
- <meta name="if:Infinite Scrolling" content="1"/>
- <meta name="if:500px posts" content="1"/>
- <meta name="if:400px posts" content="0"/>
- <meta name="if:250px posts" content="0"/>
- <meta name="if:Faded Images" content="1">
- <meta name="text:title font size" content="26px">
- <meta name="text:link 1" content="/"/>
- <meta name="text:link 1 name" content="Link 1"/>
- <meta name="text:link 2" content="/"/>
- <meta name="text:link 2 name" content="Link 2"/>
- <meta name="text:link 3" content="/"/>
- <meta name="text:link 3 name" content="Link 3"/>
- <meta name="text:link 4" content=""/>
- <meta name="text:link 4 name" content=""/>
- <meta name="text:link 5" content=""/>
- <meta name="text:link 5 name" content=""/>
- <meta name="text:link 6" content=""/>
- <meta name="text:link 6 name" content=""/>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- //When you click on a link with class of poplight and the href starts with a #
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- //Pull Query & Variables from href URL
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- //Fade in the Popup and add close button
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
- //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- //Fade in Background
- $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- return false;
- });
- //Close Popups and Fade Layer
- $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <style type="text/css">
- body {
- background-color: {color:Background};
- font-family: calibri;
- font-size: 10px;
- color: {color:Body Font};
- text-align: justify;
- background-image: url('{image:Background}');
- background-attachment: fixed;
- }
- @font-face {
- font-family: "Meow";
- src: url(http://static.tumblr.com/kauezwz/YlIlz8nop/theonlyexception.ttf) format("truetype");
- }
- @font-face {font-family: "dk";src: url('http://static.tumblr.com/iuggpng/XaZm5hhme/dk_pimpernel.ttf');}
- #posts {
- position: absolute;
- left: 25px;
- top: 25px;
- }
- #lineup {
- background-image: url('{image:Post Box Background}');
- position: relative;
- margin-left: 480px;
- top:25px;
- {block:if500pxposts}width: 500px;{/block:if500pxposts}
- {block:if400pxposts}width: 400px;{/block:if400pxposts}
- {block:if250pxposts}width: 250px;{/block:if250pxposts}
- background-color:{color:Posts};
- margin-bottom: 5px;
- padding: 7px;
- z-index:500;
- }
- #permalink {
- font-family: calibri;
- font-size: 8px;
- text-transform:uppercase;
- letter-spacing:1px;
- opacity: 0;
- {block:if500pxposts}margin-left:480px;{/block:if500pxposts}
- {block:if400pxposts}margin-left:380px;{/block:if400pxposts}
- {block:if250pxposts}margin-left:230px;{/block:if250pxposts}
- filter: alpha (opacity=0);
- position: absolute;
- top: 3px;
- text-align: left;
- padding-right: 9px;
- padding-top:5px;
- width: 80px;
- background-image: url('{image:Post Box Background}');
- background-color: #transp;
- color: #387dcc;
- -webkit-transition: all 1.0s ease;
- -moz-transition: all 1.0s ease;
- -o-transition: all 1.0s ease;
- padding-left:15px;
- }
- #lineup:hover #permalink {
- {block:if500pxposts}margin-left:505px;{/block:if500pxposts}
- {block:if400pxposts}margin-left:405px;{/block:if400pxposts}
- {block:if250pxposts}margin-left:250px;{/block:if250pxposts}
- opacity:1;
- background-color: #transp;
- color:{color:description};
- filter: alpha (opacity=8);
- width: 80px;
- padding-top:5px;
- -webkit-transition: all 1.0s ease;
- -moz-transition: all 1.0s ease;
- -o-transition: all 1.0s ease;
- }
- #permalink a {
- color:{color:Notes};
- padding-left:10px;
- margin-left:-10px;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- }
- .question{
- background-color:{color:Question Background};
- padding: 5px 5px 5px 5px;
- {block:if500pxposts}width:435px;{/block:if500pxposts}
- {block:if400pxposts}width:335px;{/block:if400pxposts}
- {block:if250pxposts}width:185px;{/block:if250pxposts}
- margin-left:55px;
- margin-top:-51px;
- min-height:40px;
- }
- .answer {
- background-color:{color:posts};
- padding-top: 1px;
- padding-bottom: 1px;
- padding-left: 10px;
- }
- #header {
- text-align: center;
- font-family: "loremipsum", serif;
- font-size: 30px;
- letter-spacing: {text:Title letter spacing};
- background-color: {color:Title Background};
- color: {color:Title};
- text-shadow: 1px 1px 1px #C4C4C4;
- font-weight: lighter;
- }
- a.perma {
- color: {color:links};
- }
- a.perma:hover {
- color: {color:Links hover};
- }
- .story {
- font-family:dk;
- font-size: 30px;
- color: {color:Post Title};
- text-align: left;
- margin:3px 0px 3px 0px;
- {block:if500pxposts}width: 470px;{/block:if500pxposts}
- {block:if400pxposts}width: 370px;{/block:if400pxposts}
- {block:if250pxposts}width: 200px;{/block:if250pxposts}
- padding-left:10px;
- }
- #lineup img {max-width: 100%;}
- .quote {
- font-family: Meow;
- font-size: 12px;
- font-style: italic;
- color: {color:Quote}
- }
- blockquote {
- padding: 2px 2px 2px 2px;
- padding-left:5px;
- border-left:3px solid #898989;
- }
- .tags {
- padding: 3px;
- }
- a {
- color:{color:Links};
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- text-decoration: none;
- }
- a:hover {
- color:{color:Links hover};
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- text-decoration: none;
- }
- .entry b, strong {
- color: {color:Entry Bold};
- }
- .entry i, em {
- color: {color:Entry Italic};
- }
- ::-webkit-scrollbar-thumb:vertical {
- background-color:{color:ScrollBar};
- border-top:2px solid {color:ScrollBar};
- border-bottom:2px solid {color:ScrollBar};
- height:auto;
- }
- ::-webkit-scrollbar-thumb:vertical:hover{
- background-color:{color:ScrollBar};
- }
- ::-webkit-scrollbar-thumb:horizontal{
- background-color:{color:ScrollBar};
- height:auto;
- }
- ::-webkit-scrollbar-thumb:horizontal:hover{
- background-color:{color:ScrollBar};
- }
- ::-webkit-scrollbar{
- height:6px;
- width:6px;
- background-color: {color:ScrollBar Background};
- }
- .topp {
- font-family: consolas;
- font-size: 20px;
- }
- #scrollToTop:link,
- #scrollToTop:visited {
- color: {color:main links hover};
- background-color: transparent;
- display: none;
- position: fixed;
- bottom: 0px;
- margin-left: 410px;
- }
- .bar{
- position:fixed;
- margin-top:50px;
- margin-left:450px;
- width:1px;
- height:470px;
- background-color:{color:Border};
- }
- .b1a4{
- margin-top:-10px;
- margin-left:-195px;
- width:180px;
- font-family:dk;
- position: fixed;
- font-size: {text:title font size};
- letter-spacing: 3px;
- color: {color:Accent Color};
- text-align: right;
- text-transform:uppercase;
- z-index:-999;
- }
- #whee{
- opacity:1;
- z-index:999;
- margin-top:20px;
- margin-left:-180px;
- border: 2px solid {color:Border};}
- .linkers{
- margin-left:-100px;
- margin-top:10px;
- position: fixed;
- text-align:left;
- width:70px;
- }
- .linkz a{
- float: left;
- width: 60px;
- height: 10px;
- color: {color:description};
- background-color: #transp;
- margin-left: -40px;
- letter-spacing: 1px;
- padding-bottom: 3px;
- border-bottom: 1px solid {color:Border};
- padding-left:45px;
- padding-right:20px;
- text-align: right;
- font-size: 8px;
- -webkit-transition: all 0.9s ease;
- -moz-transition: all 0.9s ease;
- -o-transition: all 0.9s ease;
- text-transform:uppercase;
- letter-spacing: 2px;
- opacity:1;
- padding-top: 10px; z-index:1;}
- .linkz a:hover{
- float: left;
- right:20px;
- margin-left: 6px;
- letter-spacing: 3px;
- color: #898989;
- text-transform:uppercase;
- border-bottom: 1px solid {color:Accent Color};
- padding-left:25px;
- padding-right:5px;
- text-align: right;
- opacity:0.6;
- -webkit-transition: all 0.9s ease;
- -moz-transition: all 0.9s ease;
- -o-transition: all 0.9s ease;
- z-index:1;
- }
- .words{
- margin-top:140px;
- margin-left:-190px;
- margin-bottom:2px;
- text-align: left;
- border-left:2px solid {color:Accent Color};
- padding-left:10px;
- padding-top:15px;
- padding-bottom:30px;
- font-family:calibri;
- text-transform:uppercase;
- letter-spacing:1px;
- font-size:8px;
- width:160px;
- color: {color:description};
- }
- .words b, strong {
- color: {color:Entry Bold};
- }
- .words i, em {
- color: {color:Entry Italic};
- }
- {block:ifFadedImages}
- img {
- padding: 0px;
- filter: alpha (opacity=100);
- opacity: 0.8;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- transition: all 0.3s ease-out;cursor: }
- img:hover {
- filter: alpha (opacity=80);
- opacity: 1;
- -webkit-transition: all 0.5s ease-out;
- -moz-transition: all 0.5s ease-out; transition: all 0.5s ease-out;cursor: }
- {/block:ifFadedImages}
- #fade {
- display: none;
- background: #000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none;
- background: #FFFFFF;
- padding: 20px;
- float: left;
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 99999;
- }
- img.btn_close {
- float: right;
- margin: -55px -55px 0 0;
- }
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- .linkzz a{
- float: left;
- width: 100px;
- height: 20px;
- color: #fff;
- background-color: {color:Accent Color};
- margin-left: 10px;
- margin-top: 10px;
- letter-spacing: 1px;
- padding-bottom: 3px;
- padding-left:25px;
- padding-right:25px;
- text-align: center;
- font-size: 8px;
- -webkit-transition: all 0.9s ease;
- -moz-transition: all 0.9s ease;
- -o-transition: all 0.9s ease;
- text-transform:uppercase;
- letter-spacing: 2px;
- padding-top: 10px; z-index:1;}
- .linkzz a:hover{
- float: left;
- right:20px;
- background-color: #fff;
- letter-spacing: 2px;
- color: {color:Accent Color};
- text-transform:uppercase;
- -webkit-transition: all 0.9s ease;
- -moz-transition: all 0.9s ease;
- -o-transition: all 0.9s ease;
- z-index:1;
- }
- .previous{
- position: fixed;
- margin-top: 340px;
- margin-left: 230px;
- font-size: 20px;
- font-family:consolas;
- text-transform:uppercase;
- z-index:999999999999999;
- -webkit-transition: all 0.6s ease;
- -moz-transition: all 0.6s ease;
- -o-transition: all 0.6s ease;
- color:{color:Main Links Hover};
- }
- .previous:hover{
- position: fixed;
- margin-left: 225px;
- font-family:consolas;
- text-transform:uppercase;
- z-index:999999999999999;
- -webkit-transition: all 0.6s ease;
- -moz-transition: all 0.6s ease;
- -o-transition: all 0.6s ease;
- color:{color:Main Links Hover};
- }
- .next{
- position: fixed;
- margin-top: 370px;
- margin-left: 230px;
- font-size: 20px;
- font-family:consolas;
- text-transform:uppercase;
- z-index:999999999999999;
- -webkit-transition: all 0.6s ease;
- -moz-transition: all 0.6s ease;
- -o-transition: all 0.6s ease;
- color:{color:Main Links Hover};
- }
- .next:hover{
- position: fixed;
- margin-left: 235px;
- font-family:consolas;
- text-transform:uppercase;
- z-index:999999999999999;
- -webkit-transition: all 0.6s ease;
- -moz-transition: all 0.6s ease;
- -o-transition: all 0.6s ease;
- color:{color:Main Links Hover};
- }
- iframe#tumblr_controls {
- top: 0% !important;
- right:0% !important;
- position: fixed !important;}
- {CustomCSS}
- </style>
- {Block:IfInfiniteScrolling}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- {/Block:IfInfiniteScrolling}
- </head>
- <body>
- <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>
- <div class="topp">
- <a href="javascript:;" id="scrollToTop"><font size="6">▲</font></a>
- </div>
- <div class="bar">
- <div class="b1a4">{title}</div>
- <img src="{image:sidebar}" width="160" id="whee">
- <div class="linkers">
- <div class="linkz"><a href="/">Home</a></div>
- <div class="linkz"><a href="/ask">Ask</a></div>
- <div class="linkz"><a href="/archive">History</a></div>
- <div class="linkz"><a href="#?w=500" rel="popup_name" class="poplight">Links</a></div>
- <div class="linkz"><a href="http://hikoushi.tumblr.com/">Theme</a></div>
- </div>
- <div class="words">{description}</div>
- </div>
- <div id="popup_name" class="popup_block">
- {block:IfLink1}<div class="linkzz"><a href="{text:link 1}"> {text:link 1 name}</a></div>{/block:IfLink1}
- {block:IfLink2}<div class="linkzz"><a href="{text:link 2}"> {text:link 2 name}</a></div>{/block:IfLink2}
- {block:IfLink3}<div class="linkzz"><a href="{text:link 3}"> {text:link 3 name}</a></div>{/block:IfLink3}
- {block:IfLink4}<div class="linkzz"><a href="{text:link 4}"> {text:link 4 name}</a></div>{/block:IfLink4}
- {block:IfLink5}<div class="linkzz"><a href="{text:link 5}"> {text:link 5 name}</a></div>{/block:IfLink5}
- {block:IfLink6}<div class="linkzz"><a href="{text:link 6}"> {text:link 6 name}</a></div>{/block:IfLink6}
- </div>
- {Block:IfNotInfiniteScrolling}
- <div class="previous">
- <center>
- {block:PreviousPage}
- <a href="{PreviousPage}" title="previous">◀</a>
- {/block:PreviousPage}
- </center>
- </div>
- <div class="next">
- <center>
- {block:NextPage}
- <a href="{NextPage}" title="next">▶</a>
- {/block:NextPage}
- </center>
- </div>
- {/Block:IfNotInfiniteScrolling}
- {Block:IfInfiniteScrolling}
- <div class = "autopagerize_page_element" >
- {/Block:IfInfiniteScrolling}
- {block:Posts}
- <div id="lineup">
- {block:Text}
- {block:Title}
- <div class="story">
- {Title}
- </div>
- {/block:Title}
- {Body}
- {Block:PermalinkPage}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}
- {block:if500pxposts}
- <img src="{PhotoURL-HighRes}" width="500px" alt="{PhotoAlt}">{/block:if500pxposts}
- {block:if400pxposts}
- <img src="{PhotoURL-HighRes}" width="400px" alt="{PhotoAlt}">{/block:if400pxposts}
- {block:if250pxposts}
- <img src="{PhotoURL-HighRes}" width="250px" alt="{PhotoAlt}">{/block:if250pxposts}
- {LinkCloseTag}
- {Block:PermalinkPage}
- {block:Caption}
- {Caption}
- {/block:Caption}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:if500pxposts}{Photoset-500}{/block:if500pxposts}
- {block:if400pxposts}{Photoset-400}{/block:if400pxposts}
- {block:if250pxposts}{Photoset-250}{/block:if250pxposts}
- {Block:PermalinkPage}
- {block:Caption}
- {Caption}
- {/block:Caption}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}
- <div class="quote">
- <div style="font-size: 30px; display: inline-block; line-height: 0px; margin-bottom: -3px; margin-right: 3px;">❝</div>{Quote}
- </div>
- {block:Source}
- <div style="text-align:right">—{Source}</div>
- {/block:Source}
- {Block:PermalinkPage}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Quote}
- {block:Link}
- <a href="{URL}" {Target}>
- <div class="story"><div style="margin-left:0px">▶ {Name}</div></div>
- </a>
- {block:Description}
- {Description}
- {/block:Description}
- {Block:PermalinkPage}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Link}
- {block:Chat}
- {block:Title}
- <div class="story">
- ▶ {Title}
- </div>
- {/block:Title}
- {block:Lines}
- {block:Label}
- <b><font color="{color:Quote}">{Label}</font></b>
- {/block:Label}
- {Line}<br>
- {/block:Lines}
- {Block:PermalinkPage}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Chat}
- {block:Audio}
- {block:AlbumArt}
- <img src="{AlbumArtURL}" align="left" width="100px" height="100px" style="margin-right:5px;margin-bottom:5px; border: 2px solid #ccc; opacity:1;"/>{/block:AlbumArt}
- <div class="audio"> {AudioPlayerWhite}</div>
- <div style="border-top:1px solid {color:border}; margin-left:5px;"></div>
- {block:Artist}
- <p><b><font color="{color:Post Title}">Artist:</font></b> {Artist}
- {/block:Artist}
- {block:Album}
- <br><b><font color="{color:Post Title}">Album:</font></b> {Album}
- {/block:Album}
- {block:TrackName}
- <br><b><font color="{color:Post Title}">Track:</font></b> {TrackName}
- {/block:TrackName}
- {block:PlayCount}
- <br><b><font color="{color:Post Title}">Plays:</font></b> {FormattedPlayCount}
- {/block:PlayCount}
- <br clear="all">
- {Block:PermalinkPage}
- {block:Caption}
- {Caption}
- {/block:Caption}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Audio}
- {block:Video}
- {block:if500pxposts}{Video-500}{/block:if500pxposts}
- {block:if400pxposts}{Video-400}{/block:if400pxposts}
- {block:if250pxposts}{Video-250}{/block:if250pxposts}
- {Block:PermalinkPage}
- {block:Caption}
- {Caption}
- {/block:Caption}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a><br>{/block:ContentSource}
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Video}
- {block:Answer}
- <img src="{AskerPortraitURL-48}" style="height: 48px; width:48px;"></img>
- <div class="question">
- <b>{Asker}</b> whispered: {Question}</div>
- {block:if500pxposts}<div class="answer">
- <div style="margin-left: 300px; margin-top:-5px;color: {color:Question Background};font-size:20px;">◤</div>
- {Answer}</div>{/block:if500pxposts}
- {block:if400pxposts}<div class="answer">
- <div style="margin-left: 300px; margin-top:-5px;color: {color:Question Background};font-size:20px;">◤</div>
- {Answer}</div>{/block:if400pxposts}
- {block:if250pxposts}<div class="answer">
- <div style="margin-left: 150px; margin-top:-5px;color: {color:Question Background};font-size:20px;">◤</div>
- {Answer}</div>{/block:if250pxposts}
- {Block:PermalinkPage}
- <br><br><br>
- {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
- {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
- {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
- {block:HasTags}
- <div class="tags">
- Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
- </div>
- {/block:HasTags}
- <br>
- <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation —  <a href="http://{name}.tumblr.com">Home</a>  <a href="/ask">Message</a>  <a href="/archive">Archive</a>  <a href="/random">Random</a></div><br>
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/Block:PermalinkPage}
- {/block:Answer}
- {Block:IndexPage}<div id="permalink">
- <a href="{Permalink}">{NoteCountWithLabel}</a><br>
- <a href="{ReblogURL}" target="_blank">Reblog</a>
- <br>{block:RebloggedFrom}
- <div style="width:40px; height:1px; background-color:{color:Border};margin-top:6px;"></div><br>
- <a href="{ReblogParentURL}" title="via: {ReblogParentName}"><img src="{ReblogParentPortraitURL-16}"></a>
- {block:ContentSource}<a href="{SourceURL}" title="source: {ReblogRootName}"><img src="{ReblogRootPortraitURL-16}"></a>{block:ContentSource}{/block:RebloggedFrom}
- {/block:ContentSource}
- </div>
- </div>{/Block:IndexPage}
- {/block:Posts}{Block:IfInfiniteScrolling}</div>{/Block:IfInfiniteScrolling}
- </body>
- </html>
Add Comment
Please, Sign In to add comment