Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!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">
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!--- Theme #63 - Spotlight by wonderfullythemes
- no interfering w/ the credit :)
- --->
- <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}
- <link rel="stylesheet" href="styles.css" />
- <link href='https://fonts.googleapis.com/css?family=Dosis:100|Playfair+Display:300,400,700|Roboto:100,300,400|Yrsa:300' rel='stylesheet' type='text/css'>
- <link href="css/hover.css" rel="stylesheet">
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
- <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <!--BACK TO TOP-->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- var amountScrolled = 100;
- $(window).scroll(function() {
- if ( $(window).scrollTop() > amountScrolled ) {
- $('a.back-to-top').show("");
- } else {
- $('a.back-to-top').hide("");
- }
- });
- $('a.back-to-top').click(function() {
- $('html, body').animate({ scrollTop: 0}, 700);
- return false;
- });
- });
- </script>
- <!--POP UP ASK-->
- <script type="text/javascript"
- src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
- var popMargTop = ($('#' + popID).height() + 0) / 2;
- var popMargLeft = ($('#' + popID).width() + 0) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- $('body').append('<div id="fade"></div>');
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
- return false;
- });
- $('a.close, #fade').live('click', function() {
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <!--MASONRY -->
- <!---------------DO NOT REMOVE THESE SCRIPTS--------------->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <stsss><script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:100,
- tip_fade_speed:200,
- attribute:"title"
- });
- });
- })(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(400);
- });
- </script>
- {/block:IndexPage}
- <meta name="color:Background" content="#fff" />
- <meta name="color:Link" content="#1bcc5c" />
- <meta name="color:Hover" content="#444" />
- <meta name="color:Text" content="#444" />
- <meta name="image:Background" content="" />
- <meta name="text:Link1" content="/" />
- <meta name="text:Link1 Text" content="Link 1" />
- <meta name="text:Link2" content="/" />
- <meta name="text:Link2 Text" content="Link 2" />
- <meta name="text:Link3" content="/" />
- <meta name="text:Link3 Text" content="Link 3" />
- <meta name="text:Link4" content="/" />
- <meta name="text:Link4 Text" content="Link 4" />
- <meta name="text:Link5" content="/" />
- <meta name="text:Link5 Text" content="Link 5" />
- <meta name="text:Link6" content="/" />
- <meta name="text:Link6 Text" content="Link 6" />
- <style type="text/css">
- @-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
- @-moz-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
- @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
- .fade-in {
- opacity: 0;
- -webkit-animation: fadeIn ease-in 1;
- -moz-animation: fadeIn ease-in 1;
- animation: fadeIn ease-in 1;
- -webkit-animation-fill-mode: forwards;
- -moz-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- -webkit-animation-duration: 1.5s;
- -moz-animation-duration: 1.5s;
- animation-duration: 1.5s;
- }
- #s-m-t-tooltip {
- max-width: 200px;
- font-size: 10px;
- background-color: {color:Link};
- color: {color:Background};
- line-height: 10px;
- display: none;
- position: absolute;
- letter-spacing: 2px;
- text-transform: uppercase;
- padding: 6px;
- margin: 10px 0px 0px 10px;
- z-index: 99999999999999;
- }
- body {
- overflow-x: hidden;
- background: {color:Background};
- color: {color:Text};
- font-family: 'Roboto', sans-serif;
- font-size: 14px;
- font-weight: 100;
- text-decoration: none;
- margin: 0px;
- background-image: url('{image:Background}');
- background-attachment: fixed;
- background-repeat: repeat;
- }
- a {
- color: {color:Link};
- text-decoration: none;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- }
- a:hover {
- color: {color:Hover};
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- }
- h1 {
- font-family: 'Playfair Display', serif;
- font-weight: 700;
- text-transform: none;
- margin-top: 0px;
- color: {color:Text};
- }
- h1 a {
- margin-top: 5px;
- color: {color:Link};
- }
- blockquote {
- border-left: 1px solid {color:Link};
- padding-left: 10px;
- margin-left: 5px;
- }
- blockquote blockquote {
- padding: 0 0 0 5px;
- margin: 0 0 0 12px;
- }
- img, blockquote, li, h1, h2 {
- max-width: 100%;
- }
- /* Push */
- @-webkit-keyframes push {
- 50% {
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- @keyframes push {
- 50% {
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- }
- 100% {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- .push {
- display: inline-block;
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- box-shadow: 0 0 1px rgba(0, 0, 0, 0);
- }
- .push:hover, .push:focus, .push:active {
- -webkit-animation-name: push;
- animation-name: push;
- -webkit-animation-duration: 0.3s;
- animation-duration: 0.3s;
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- -webkit-animation-iteration-count: 1;
- animation-iteration-count: 1;
- }
- /*-----------------CUSTOM LINK THINGYS----------------------*/
- {block:IndexPage}.tmblr-iframe{display:none!important;}{/block:IndexPage}
- /*------------------------CONTENT----------------------*/
- .content {
- padding: 20px;
- width: calc(100% - 40px);
- margin: auto;
- position: relative;
- }
- /*-------------------SIDEBAR----------------------------*/
- .header {
- position: relative;
- width: 1120px;
- text-align: right;
- margin: 40px auto 0 auto;
- font-size: 12px;
- text-transform: uppercase;
- letter-spacing: 2px;
- word-spacing: 5px;
- }
- #title {
- color: {color:Text};
- font-weight: 700;
- }
- /*--------------------POSTS------------------------*/
- #entries {
- width: 1160px;
- margin: 35px auto;
- position: relative;
- }
- #post {
- width: 250px;
- padding: 20px;
- {block:PermalinkPage}
- width: 400px;
- position: absolute;
- {/block:PermalinkPage}
- }
- #post img {
- max-width: 100%;
- transition: all .3s ease-in-out;
- overflow: hidden;
- }
- #post:hover img {
- {block:IndexPage}
- transform: scale(1.3);
- {/block:IndexPage}
- }
- .wowpost { overflow: hidden; }
- /*--POST TYPES--*/
- #user {
- text-transform: uppercase;
- margin-bottom: 10px;
- font-size: 16px;
- font-family: 'Dosis',sans-serif;
- font-weight: 100;
- }
- .arrow-up {
- width: 0;
- height: 0;
- border-left: 15px solid transparent;
- border-right: 15px solid transparent;
- margin-left: 30px;
- margin-top: 0px;
- border-bottom: 15px solid {color:Link};
- }
- .question {
- max-width: 100%;
- background: {color:Link};
- color: {color:Background};
- padding: 10px;
- }
- .answer {
- margin-top: 10px;
- }
- .quote {
- width: 100%;
- position: relative;
- }
- .mark, .mark2 {
- margin-left: 0px;
- width: calc(100% - 20px);
- position: relative;
- text-align: center;
- }
- .mark:before {
- font-family: 'FontAwesome';
- content: '\f10d';
- color: {color:Link};
- font-size: 20px;
- }
- .words {
- margin: 10px 0;
- font-family: 'Yrsa', serif;
- font-weight: 300;
- font-size: 16px;
- letter-spacing: 0.5px;
- text-transform: lowercase;
- }
- .mark2:before {
- font-family: 'FontAwesome';
- content: '\f10e';
- color: {color:Link};
- font-size: 20px;
- }
- .quotesource {
- text-align: right;
- padding: 20px 0;
- }
- .contentsrc {
- display: none;
- }
- .tumblr_audio_player {
- width:230px;
- {block:PermalinkPage}width: 480px;{/block:PermalinkPage}
- -moz-transform: scale(0.60, 0.60);
- -webkit-transform: scale(0.60, 0.60);
- -o-transform: scale(0.60, 0.60);
- -ms-transform: scale(0.60, 0.60);
- transform: scale(0.60, 0.60);
- -moz-transform-origin: top left;
- -webkit-transform-origin: top left;
- -o-transform-origin: top left;
- -ms-transform-origin: top left;
- transform-origin: top left;
- }
- .audioimgwrapper {
- position: absolute;
- left: 0px;
- top: 0px;
- overflow: hidden;
- width: 100px;
- height: 100px;
- }
- .audioimgwrapper img {
- width: 100%;
- height: auto;
- border-radius: 5px;
- }
- .trackdetails {
- width: auto;
- display: inline-block;
- margin-left: 110px;
- height: 100px;
- }
- .audiowrapper {
- position: relative;
- display: inline-block;
- }
- .chat li { list-style: none; }
- .line_odd, .line_even { text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
- .line_odd { color: {color:Link}; }
- .line_even { color: {color:Hover}; }
- /*--------------------INFO AND TAGS---------------------------*/
- /*photo post info*/
- .wowpost {
- -moz-transition-duration :0.5s;
- -webkit-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- }
- #post:hover .wowpost {
- {block:IndexPage}
- opacity: .2;
- -moz-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- -o-transition-duration:0.5s;
- {/block:IndexPage}
- }
- #post:hover #info {
- opacity: 1;
- -moz-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- }
- #info {
- width: 100%;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-left: -78px;
- margin-top:-5px;
- opacity: 0;
- z-index: 999;
- font-size: 14px;
- -moz-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- }
- .heart { text-align: left; }
- .heart a {
- border-radius: 50%;
- padding: 10px 12px;
- margin: 0 5px;
- color: {color:Background};
- background-color: {color:Link};
- }
- .heart a:hover {
- text-decoration: none;
- color: {color:Link};
- background-color: {color:Background};
- }
- /*all but photo post info*/
- #footer {
- text-align: left;
- margin-top: 15px;
- letter-spacing: 2px;
- font-size: 10px;
- line-height: 16px;
- text-transform: uppercase;
- }
- #footer a { color: {color:Link}; padding: 0px 3px; }
- #footer a:hover { color: {color:Hover}; }
- #datelink a { font-weight: 700; color: {color:Text}; padding: 0px; }
- #datelink a:hover { color: {color:Link}; }
- /*--permalink page--*/
- .caption {
- top: 0px;
- padding-bottom: 20px;
- }
- .permapage {
- position: absolute;
- width: 350px;
- top: 20px;
- margin-left: 435px;
- }
- .perma {
- line-height: 20px;
- color: {color:Perma Text};
- text-transform: uppercase;
- font-size: 12px;
- letter-spacing: 2px;
- padding: 20px;
- width: 310px;
- background: {color:Link};
- color: {color:Background};
- }
- .perma a {
- color: {color:Background};
- }
- .perma a:hover {
- color: {color:Hover};
- }
- .postnotes {
- position: absolute;
- width: 350px;
- line-height: 20px;
- top: 0px;
- margin: 0 0 0 820px;
- }
- .postnotes li { list-style: none; margin-left: -40px;}
- .postnotes img { display: none; }
- #scroll {
- bottom: -20px;
- position: absolute;
- left: 50%;
- width: 10px;
- height: 5px;
- overflow: hidden;
- margin-bottom: 80px;
- }
- .back-to-top { display: none; }
- /*--POP UP BOXES--*/
- .popup_block{
- display: none;
- background: {color:Background};
- color: {color:Text};
- float:left;
- font-size: 16px;
- line-height: 22px;
- width: 400px;
- padding: 40px;
- position:fixed;
- top: calc(50% - 40px);
- left: calc(50% - 40px);
- z-index: 99999;
- }
- .navlinks {
- font-size: 12px;
- text-transform: uppercase;
- letter-spacing: 2px;
- word-spacing: 5px;
- }
- *html #fade { position: absolute; }
- *html .popup_block { position: absolute; }
- #fade {
- display: none;
- position:fixed;
- left: 0px;
- top: 0px;
- width: 100%;
- height: 100%;
- z-index: 9999;
- color: {color:Text};
- background: {color:Background};
- opacity: 1;
- }
- /*--CREDIT--*/
- #spectrum {
- bottom: 15px;
- right: 15px;
- font-size: 10px;
- letter-spacing: 1px;
- position: fixed;
- text-align: right;
- z-index: 2;
- text-transform: uppercase;
- }
- @media only screen and (max-width: 1200px) {
- .header {
- width: 830px;
- }
- #entries {
- width: 870px;
- margin: 35px auto;
- }
- #post {
- {block:PermalinkPage}
- position: absolute;
- {/block:PermalinkPage}
- }
- .permapage {
- width: 400px;
- position: relative;
- margin-top: 20px;
- margin-left: 0px;
- }
- .perma {
- width: 360px;
- }
- .postnotes {
- width: 400px;
- position: absolute;
- margin-top: 0px;
- margin-left: 470px;
- }
- }
- @media only screen and (max-width: 910px) {
- .header {
- width: 540px;
- }
- #entries {
- width: 580px;
- margin: 35px auto;
- }
- #post {
- {block:PermalinkPage}
- margin-left: 90px;
- {/block:PermalinkPage}
- }
- .postnotes {
- width: 400px;
- position: relative;
- margin-top: 60px;
- margin-left: 0px;
- }
- }
- @media only screen and (max-width: 600px) {
- .header {
- width: 250px;
- }
- #entries {
- width: 290px;
- margin: 35px auto;
- {block:PermalinkPage}
- width: 400px;
- {/block:PermalinkPage}
- }
- #post {
- {block:PermalinkPage}
- margin: 0;
- {/block:PermalinkPage}
- }
- }
- {CustomCSS}</style>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
- </head><body>
- <div id="wrap" class="box fade-in one">
- <div id="spectrum">
- <a href="#" class="back-to-top">top</a><br><br>
- <a href="http://wonderfullythemes.tumblr.com" title="wonderfullythemes">theme</a>
- </div>
- <div class="content">
- <div class="header">
- <a href="/" title="refresh" id="title">{Title}</a> :
- <a href="{text:Link1}" class="push">{text:Link1 Text}</a> :
- <a href="{text:Link2}" class="push">{text:Link2 Text}</a> :
- <span class="push"><a href="#?w=400" rel="box1" class="poplight">nav</a></span> :
- <a href="/archive" class="push" target="_blank">file</a>
- </div>
- <div id="entries">
- {block:Posts}
- {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">
- <!--posts-->
- {block:Text}
- {block:Title}<h1>{Title}</h1>{/block:Title}
- {Body}
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Text}
- {block:Photo}
- {block:IndexPage}
- {block:Date}
- <div id="info">
- <div class="heart">
- <a href="{Permalink}" title="{ShortMonth} {MonthNumberWithZero}"><i class="fa fa-clock-o"></i></a>
- {block:NoteCount}
- <a href="{Permalink}" title="{NoteCountWithLabel}"><i class="fa fa-heart"></i></a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank" title="reblog"><i class="fa fa-retweet"></i></a>
- </div><!--end .heart-->
- </div><!--end #info-->
- {/block:Date}
- {/block:IndexPage}
- {block:IndexPage}
- <div class="wowpost">
- <img src="{PhotoURL-250}" alt="{PhotoAlt}"/>
- </div><!--end .wowpost-->
- {/block:IndexPage}
- {block:PermalinkPage}
- <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
- {/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}
- {Photoset-250}
- {/block:IndexPage}
- {block:PermalinkPage}
- {Photoset-400}
- {/block:PermalinkPage}
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Photoset}
- {block:Quote}
- <div class="quote">
- <div class="mark"></div>
- <div class="words">{Quote}</div>
- <div class="mark2"></div>
- <div class="quotesource">-{Source}</div>
- </div><!--end .quote-->
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Quote}
- {block:Link}
- <h2><a href="{URL}" {Target}>{Name}</a></h2>
- {block:Description}{Description}{/block:Description}
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Link}
- {block:Chat}
- {block:Title}<h1>{Title}</h1>{/block:Title}
- {block:Lines}
- <div class="chat">
- <li><span class="line_{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}</span> {Line}</li>
- </div>
- {/block:Lines}
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Chat}
- {block:Audio}
- {block:AudioPlayer}
- <div class="audiowrapper">
- {block:AlbumArt}<div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
- <div class="trackdetails">{AudioPlayerGrey}</div>
- </div>
- {/block:AudioPlayer}
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Audio}
- {block:Video}
- {block:IndexPage}
- {Video-250}
- {/block:IndexPage}
- {block:PermalinkPage}
- {Video-400}
- {/block:PermalinkPage}
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Video}
- {block:Answer}
- <div id="user"><span class="push">{Asker}</span> asked:</div>
- <div class="arrow-up"></div>
- <div class="question">{Question}</div>
- <div class="answer">{Answer}</div>
- {block:IndexPage}
- {block:Date}
- <div id="footer">
- <span id="datelink"><a href="{Permalink}">{Month} {DayOfMonthWithZero}{DayOfMonthSuffix}:</span>
- {block:NoteCount}
- <a href="{Permalink}">+{NoteCount}</a>
- {/block:NoteCount}
- <a href="{ReblogURL}" target="blank">reblog</a>
- </div><!--end #footer-->
- {/block:Date}
- {/block:IndexPage}
- {/block:Answer}
- <!--permalink page-->
- {block:PermalinkPage}
- <div class="permapage">
- {block:Caption}
- <div class="caption">{Caption}</div>
- {/block:Caption}
- <div class="perma">
- {block:Date}
- <a href="{Permalink}">{Month} {DayOfMonthWithZero} {Year}</a>
- {/block:Date}
- {block:NoteCount}
- <br><a href="{Permalink}">{NoteCountWithLabel}</a>
- {/block:NoteCount}
- {block:RebloggedFrom}
- <p>from: <a href="{ReblogParentURL}">{ReblogParentName}</a>
- <br>original: <a href="{ReblogRootURL}">{ReblogRootName}</a></p>
- {/block:RebloggedFrom}
- {block:HasTags}
- <p>
- {block:Tags}
- Filed Under : <a href="{TagURL}">{Tag}</a>
- {/block:Tags}
- </p>
- {/block:HasTags}
- </div><!--end .perma-->
- </div><!--end .permapage-->
- {block:PostNotes}
- <div class="postnotes">{PostNotes}</div>
- {/block:PostNotes}
- {/block:PermalinkPage}
- </div><!--end #post-->
- {/block:Posts}
- </div><!--end #entries-->
- </div><!--end .content-->
- </div><!--end #wrap-->
- {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><!--end #pagination-->
- {/block:Pagination}
- {/block:IndexPage}
- </body>
- <!--description-->
- <div id="box1" class="popup_block">
- <p>{Description}</p>
- <div class="navlinks">
- <a href="{text:Link3}" class="push">{text:Link3 Text}</a> :
- <a href="{text:Link4}" class="push">{text:Link4 Text}</a> :
- <a href="{text:Link5}" class="push">{text:Link5 Text}</a> :
- <a href="{text:Link6}" class="push">{text:Link6 Text}</a>
- </div>
- </div><!--end #box1 .popup_block-->
- </html>
Add Comment
Please, Sign In to add comment