Advertisement
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">
- <!-- theme 003 by heytonks.tumblr.com ~ do not remove credit, redistribute, or claim as your own. if you have any questions, feel free to send me a message on my personal blog (heytonks) -->
- <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}
- <link href='http://fonts.googleapis.com/css?family=Raleway:800,600' rel='stylesheet' type='text/css'>
- <!-- default variables -->
- <meta name="if:Pop Up Ask Box" content="1"/>
- <meta name="text:Your Username" content="you must put your username / url here for your pop-up ask to work for example if your url is heytonks than you must delete this text and type heytonks in the box"/>
- <meta name="image:Sidebar Image" content="http://static.tumblr.com/vdw1lg6/teEn5vyuj/static6.gif"/>
- <meta name="image:Sidebar Background" content=""/>
- <meta name="image:Background" content=""/>
- <meta name="text:Link 1 URL" content="/"/>
- <meta name="text:Link 1" content="home"/>
- <meta name="text:Link 2 URL" content="/ask"/>
- <meta name="text:Link 2" content="message"/>
- <meta name="text:Link 3 URL" content="/"/>
- <meta name="text:Link 3" content="link 3"/>
- <meta name="text:Link 4 URL" content="/"/>
- <meta name="text:Link 4" content="link 4"/>
- <meta name="text:Link 5 URL" content="/"/>
- <meta name="text:Link 5" content="link 5"/>
- <meta name="text:Link 6 URL" content="/"/>
- <meta name="text:Link 6" content="link 6"/>
- <meta name="text:Custom Cursor URL" content="http://static.tumblr.com/vdw1lg6/KVQn5vyh5/static1.png"/>
- <meta name="color:Background" content ="#fbfbfb"/>
- <meta name="color:Title" content ="#4bc0db"/>
- <meta name="color:Sidebar" content ="#ffffff"/>
- <meta name="color:Description Text" content ="#5a5a5a"/>
- <meta name="color:Description Box" content ="#fdfdfd"/>
- <meta name="color:Sidebar Links" content ="#f9f9f9"/>
- <meta name="color:Sidebar Links Hover" content ="#cefcff"/>
- <meta name="color:Post Background" content ="#ffffff"/>
- <meta name="color:Post Title" content ="#fffaf4"/>
- <meta name="color:Text" content ="#3e3e3e"/>
- <meta name="color:Links" content ="#a3819e"/>
- <meta name="color:Links Hover" content ="#ce00b5"/>
- <meta name="color:Tags" content ="#484848"/>
- <meta name="color:Tags Hover" content ="#d5d5d5"/>
- <meta name="color:Post Info" content ="#1c859d"/>
- <meta name="color:Post Info Hover" content ="#92eaed"/>
- <meta name="color:Scrollbar" content ="#e2e2e2"/>
- <meta name="color:Post Border" content ="#f5f5f5"/>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/ko1mcho/PMbmlkh9e/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("[title],a[title],img[title]").style_my_tooltips({
- tip_follows_cursor:"true",
- tip_delay_time:200,
- tip_fade_speed:200,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- {block:ifPopUpAskBox}
- <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 class="btn_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>
- {/block:ifPopUpAskBox}
- </head>
- <style type="text/css">
- *, body, a, a:hover {cursor: url({text:Custom Cursor URL}), auto;}
- body {
- background-color:{color:Background};
- font-size:12px;
- text-decoration:none;
- font-family:"Trebuchet MS";
- color:{color:Text};
- background-image:url('{image:Background}');
- background-attachment:fixed;
- background-position:top left;
- background-repeat:repeat;
- }
- a {
- text-decoration:none;
- color:{color:Links};
- -webkit-transition:all 0.8s;
- -moz-transition: all 0.8s;
- -o-transition: all 0.8s;
- -ms-transition: all 0.8s;
- }
- a:hover {
- color:{color:Links Hover};
- -webkit-transition:all 0.8s;
- -moz-transition: all 0.8s;
- -o-transition: all 0.8s;
- -ms-transition: all 0.8s;
- }
- blockquote {
- border-left:1px dotted #a5a5a5;
- padding:0px 8px;
- margin-left:20px;
- }
- h2 {
- text-transform:uppercase;
- font-size:12px;
- display:block;
- padding:15px;
- text-align:center;
- color:{color:Text};
- background-color:{color:Post Title};
- font-family:"Trebuchet MS";
- margin-top:0px;
- }
- #sidebar {
- background-color:{color:Sidebar};
- margin-top:-20px;
- margin-left:-10px;
- position:fixed;
- width:450px;
- height:100%;
- padding-right:10px;
- border-right:1px solid {color:Post Border};
- background-image:url('{image:Sidebar Background}');
- background-attachment:fixed;
- background-position:bottom left;
- background-repeat:none;
- }
- #wrapper {
- width:250px;
- margin-top:160px;
- margin-left:110px;
- }
- #sidebarimage {
- margin-left:15px;
- }
- #sidebarimage img {
- width:235px;
- max-height:350px;
- }
- #title {
- font-family: 'Raleway', sans-serif;
- font-weight:800;
- text-transform:uppercase;
- font-size:21px;
- color:{color:Title};
- margin-left:15px;
- padding-bottom:4px;
- -webkit-filter:blur(0px);
- -webkit-transition:all 0.5s;
- -moz-transition: all 0.5s;
- -o-transition: all 0.5s;
- -ms-transition: all 0.5s;
- }
- #title:hover {
- -webkit-filter:blur(1px);
- -webkit-transition:all 0.5s;
- -moz-transition: all 0.5s;
- -o-transition: all 0.5s;
- -ms-transition: all 0.5s;
- }
- #title a {
- color:{color:Title};
- }
- #title a:hover {
- color:{color:Title};
- }
- ::-webkit-scrollbar { background-color: {color:Scrollbar}; height:9px; width:9px; border: 4px solid {color:Description Box}; }
- ::-webkit-scrollbar-thumb{ background-color: {color:Scrollbar}; height:auto; border-radius:3px; border: 2px solid {color:Description Box}; }
- #description {
- margin-top:10px;
- font-size:12px;
- float:left;
- width:160px;
- height:85px;
- text-align:justify;
- overflow-x:hidden;
- overflow-y:auto;
- padding:12px;
- border:1px dotted {color:Scrollbar};
- border-radius:4px;
- background-color:{color:Description Box};
- color:{color:Description Text};
- font-family:Calibri;
- letter-spacing:.7px;
- line-height:15px;
- margin-left:15px;
- }
- #links {
- width:42px;
- margin-top:10px;
- float:right;
- color:{color:Description Text};
- }
- #links a {
- text-align:center;
- display:block;
- height:12px;
- background-color:{color:Sidebar Links};
- text-decoration:none;
- border-bottom:2px solid {color:Scrollbar};
- font-family: 'Raleway', sans-serif;
- font-weight:600;
- font-size:9px;
- margin-bottom:5px;
- line-height:26px;
- color:{color:Description Text};
- text-transform:uppercase;
- letter-spacing:1.6px;
- -webkit-transition:all 0.8s;
- -moz-transition: all 0.8s;
- -o-transition: all 0.8s;
- -ms-transition: all 0.8s;
- }
- #links a:hover {
- color:{color:Description Text};
- background-color:{color:Sidebar Links Hover};
- border-bottom:2px solid {color:Title};
- -webkit-transition:all 0.8s;
- -moz-transition: all 0.8s;
- -o-transition: all 0.8s;
- -ms-transition: all 0.8s;
- }
- #s-m-t-tooltip{
- font-family: 'Raleway', sans-serif;
- font-weight:600;
- font-size:8px;
- height:auto;
- width:auto;
- padding:6px;
- margin-top:15px;
- margin-left:15px;
- background-color:#565656;
- position:absolute;
- color:#ffffff;
- text-transform:uppercase;
- letter-spacing:2px;
- box-shadow:2px 2px 6px #747474;
- }
- #posts {
- background-color:{color:Post Background};
- padding:20px;
- width:500px;
- border:1px solid {color:Post Border};
- margin:20px 0px 20px 500px;
- border-radius:6px;
- opacity:0.8;
- -webkit-transition-duration:0.8s;
- -moz-transition-duration:0.8s;
- -o-transition-duration:0.8s;
- }
- #posts:hover {
- opacity:1;
- box-shadow: 2px 2px 7px #d2d2d2;
- -webkit-transition-duration:0.8s;
- -moz-transition-duration:0.8s;
- -o-transition-duration:0.8s;
- }
- #posts img {
- max-width:100%;
- }
- #albumart img {
- padding:8px;
- border:1px dashed {color:Scrollbar};
- margin-top:-141px;
- float:left;
- position:relative;
- z-index:93;
- }
- #defaultart img {
- padding:8px;
- border:1px dashed {color:Scrollbar};
- position:relative;
- z-index:90;
- }
- #player {
- overflow: hidden;
- width: 30px;
- height: 30px;
- margin-top:20px;
- margin-left:22px;
- position:relative;
- z-index:99;
- opacity:0.7;
- -webkit-transition-duration:0.7s;
- -moz-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- #playerbg {
- width:70px;
- height:70px;
- background-color:#ffffff;
- position:absolute;
- margin-top:-107px;
- margin-left:37px;
- z-index:96;
- -moz-border-radius: 70px;
- -webkit-border-radius: 70px;
- border-radius: 70px;
- opacity:0.7;
- -webkit-transition-duration:0.7s;
- -moz-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- #player:hover {
- opacity:0.9;
- -webkit-transition-duration:0.7s;
- -moz-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- #playerbg:hover {
- opacity:0.9;
- -webkit-transition-duration:0.7s;
- -moz-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- #audioinfo {
- font-size:11px;
- text-align:center;
- background-color:{color:Description Box};
- border-top:1px solid {color:Post Border};
- border-bottom:1px solid {color:Post Border};
- width:300px;
- line-height:15px;
- height:98px;
- padding:20px 20px;
- margin-left:155px;
- margin-top:-141px;
- float:right;
- position:relative;
- display:table;
- }
- #audioinfo p {
- display:table-cell;
- vertical-align:middle;
- text-align:center;
- }
- #tags {
- font-size:11px;
- opacity: 0;
- height: 0;
- -moz-transition-duration: .4s;
- -webkit-transition-duration: .4s;
- transition-duration: .4s;
- }
- #posts:hover #tags {
- display:block;
- margin-top:5px;
- background-color:{color:Description Box};
- padding:5px;
- border:1px dotted {color:Post Border};
- opacity: 1;
- height: auto;
- -moz-transition-duration: .4s;
- -webkit-transition-duration: .44s;
- transition-duration: .4s;
- }
- #posts:hover #tags a {
- color:{color:Tags};
- }
- #posts:hover #tags a:hover {
- color:{color:Tags Hover};
- }
- #postinfo {
- margin-top:27px;
- font-size:10px;
- text-transform:uppercase;
- border-top:1px dashed {color:Scrollbar};
- padding-top:11px;
- width:250px;
- }
- #postinfo a {
- color:{color:Post Info};
- }
- #postinfo a:hover {
- color:{color:Post Info Hover};
- }
- #tags img {
- vertical-align:middle;
- }
- #ask {
- display:block;
- background-color:{color:Description Box};
- border-top:1px solid {color:Post Border};
- border-bottom:1px solid {color:Post Border};
- margin-top:30px;
- padding:20px;
- }
- #askerimg img {
- border-radius:40px;
- margin-top:-48px;
- background-color:{color:Post Background};
- padding:5px;
- border:1px dashed {color:Scrollbar};
- transform: rotate(0deg);
- -webkit-transition-duration: 1s;
- -moz-transform: rotate(0deg);
- -webkit-transform: rotate(0deg);
- -o-transform: rotate(0deg);
- }
- #askerimg img:hover {
- transform: rotate(360deg);
- -webkit-transition-duration: 1s;
- -moz-transform: rotate(360deg);
- -webkit-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- }
- #asker {
- font-family: 'Raleway', sans-serif;
- font-weight:800;
- font-size:14px;
- text-transform:uppercase;
- margin-top:4px;
- }
- #question {
- margin-top:3px;
- }
- #pagination {
- margin-top:165px;
- font-size:11px;
- font-style:italic;
- letter-spacing:0.6px;
- }
- #pagination a {
- color:{color:Title};
- display:inline-block;
- background-color:{color:Sidebar};
- padding:4px 8px;
- }
- #pagination a:hover {
- color:{color:Sidebar};
- background-color:{color:Title};
- }
- .date {
- margin-left:530px;
- position:absolute;
- font-size:22px;
- font-family: 'Raleway', sans-serif;
- font-weight:800;
- letter-spacing:-1.0px;
- line-height:19px;
- text-align:right;
- }
- #notecontainer {
- width:500px;
- margin-left:500px;
- text-transform:lowercase;
- font-size:10px;
- font-style:italic;
- }
- ol.notes {
- list-style-type:none;
- }
- li.note {
- padding:10px 2px;
- border-bottom:1px solid {color:Post Border};
- list-style-image:url('http://static.tumblr.com/vdw1lg6/f8Fn2ytm8/theme-x.png');
- }
- img.avatar {
- width:16px;
- height:16px;
- border-radius:3px;
- display:inline-block;
- vertical-align:middle;
- margin-right:10px;
- }
- #posts li {
- list-style-image:url('http://static.tumblr.com/vdw1lg6/f8Fn2ytm8/theme-x.png');
- }
- #quote {
- font-style:italic;
- font-size:17px;
- line-height:25px;
- margin-left:33px;
- margin-top:-13px;
- padding-right:10px;
- }
- #quotemark {
- color: #eeeeee;
- font-size:110px;
- font-style: italic;
- height:46px;
- z-index: 0;
- }
- #quotesource {
- font-family: 'Raleway', sans-serif;
- font-weight:600;
- text-align:right;
- text-transform:uppercase;
- font-size:11px;
- margin-top:7px;
- }
- #credit a {
- position:fixed;
- bottom:12px;
- right:12px;
- padding:6px;
- border:1px dashed #cecece;
- font-family: 'Raleway', sans-serif;
- font-weight:800;
- font-size:11px;
- background-color:{color:Sidebar};
- color:{color:Title};
- -webkit-transition:all 0.8s;
- -moz-transition: all 0.8s;
- -o-transition: all 0.8s;
- -ms-transition: all 0.8s;
- }
- #credit a:hover {
- color:{color:Sidebar};
- background-color:{color:Title};
- -webkit-transition:all 0.8s;
- -moz-transition: all 0.8s;
- -o-transition: all 0.8s;
- -ms-transition: all 0.8s;
- }
- {block:ifPopUpAskBox}
- #fade { /*--Transparent background layer--*/
- background: #000;
- position: fixed; left: 0; top: 0;
- width: 100%; height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none; /*--hidden by default--*/
- background:transparent;
- padding: 20px;
- float: left;
- position: fixed;
- top: 50%; left: 50%;
- z-index: 99999;
- }
- img.btn_close {
- float: right;
- margin: -5px -5px 0 0;
- }
- /*--Making IE6 Understand Fixed Positioning--*/
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- .showhide_element {
- display: none;
- }
- {/block:ifPopUpAskBox}
- {CustomCSS}
- </style>
- <body>
- <div id="credit"><a href="http://heytonks.tumblr.com/" title="heytonks">THEME</a></div>
- <div id="sidebar">
- <div id="wrapper"><div id="title"><a href="/">{Title}</a></div>
- <div id="sidebarimage"><a href="/"><img src="{image:Sidebar Image}"></a></div>
- <div id="description">{Description}</div>
- <div id="links">
- {block:ifLink1}<a href="{text:Link 1 URL}" title="{text:Link 1}">01</a>{/block:ifLink1}
- {block:ifLink2}{block:ifPopUpAskBox}<a href="#?w=500" rel="02" class="poplight" title="{text:Link 2}">02</a>{/block:ifPopUpAskBox}{/block:ifLink2}
- {block:ifLink2}{block:ifNotPopUpAskBox}<a href="{text:Link 2 URL}" title="{text:Link 2}">02</a>{/block:ifNotPopUpAskBox}{/block:ifLink2}
- {block:ifLink3}<a href="{text:Link 3 URL}" title="{text:Link 3}">03</a>{/block:ifLink3}
- {block:ifLink4}<a href="{text:Link 4 URL}" title="{text:Link 4}">04</a>{/block:ifLink4}
- {block:ifLink5}<a href="{text:Link 5 URL}" title="{text:Link 5}">05</a>{/block:ifLink5}
- {block:ifLink6}<a href="{text:Link 6 URL}" title="{text:Link 6}">06</a>{/block:ifLink6}
- </div>
- {block:Pagination}<center>
- <div id="pagination">{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage} /
- {block:NextPage}<a href="{NextPage}">forth</a>{/block:NextPage}</div>
- </center>{/block:Pagination}
- <!-- wrapper --> </div>
- </div>
- <!-- posts -->
- <div id="content">
- {block:Posts}
- <div id="posts">
- {block:IndexPage}<div class="date">
- {block:Date}<a href="{Permalink}" title="{TimeAgo}">.{MonthNumberWithZero}<br/>{DayOfMonthWithZero}<br/>{ShortYear}</a>{/block:Date}
- </div>{/block:IndexPage}
- {block:PermalinkPage}<div class="date">
- {block:Date}<a href="{Permalink}" title="{TimeAgo}">.{MonthNumberWithZero}<br/>{DayOfMonthWithZero}<br/>{ShortYear}</a>{/block:Date}
- </div>{/block:PermalinkPage}
- {block:Text}
- {block:Title}<h2>{Title}</h2>{/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photo}
- {block:Panorama}
- {LinkOpenTag}<img src="{PhotoURL-Panorama}">{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Panorama}
- {block:Photoset}
- {Photoset-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photoset}
- {block:Quote}
- <div id="quotemark">“</div>
- <div id="quote">{Quote}</div>
- {block:Source}<div id="quotesource">{Source}</div>{/block:Source}
- {/block:Quote}
- {block:Link}
- <h2><a href="{URL}">{Name}</a></h2>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}<h2>{Title}</h2>{/block:Title}
- {block:Lines}
- {block:Label}<b>{Label}</b>{/block:Label}
- {Line}<br/>{/block:Lines}
- {/block:Chat}
- {block:Audio}<div id="audiowrap">
- <div id="defaultart"><img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg" width="120" alt="default album art"/></div>
- {block:AlbumArt}<div id="albumart"><img src="{AlbumArtURL}" width="120"></div>{/block:AlbumArt}
- <div id="playerbg"><div id="player">{AudioPlayerWhite}</div></div>
- <div id="audioinfo"><p>{block:TrackName}<span style="text-transform:uppercase; font-size:14px; color:#66d2d9; font-family: 'Raleway', sans-serif; font-weight:800;">{TrackName}</span><br/>{/block:TrackName}
- {block:Artist}<b>Artist:</b> {Artist}<br/>{/block:Artist}
- {block:Album}<b>Album:</b> {Album}<br/>{/block:Album}
- <span style="text-transform:uppercase; font-size:12px; color:#000000; font-weight:bold;">{PlayCountWithLabel}</span></p></div></div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Video}
- {Video-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Video}
- {block:Answer}<center><div id="ask">
- <div id="askerimg"><img src="{AskerPortraitURL-40}"></div>
- <div id="asker">{Asker} <span style="line-height:14px; font-size:10px; display:inline-block; vertical-align:middle;">asked:</span></div>
- <div id="question">{Question}</div></div></center>
- {Answer}
- {/block:Answer}
- <!-- post info -->
- {block:IndexPage}<center><div id="postinfo">
- {block:NoteCount}<span style="color:#c32a13; font-size:9px; padding-right:1px;">♥</span><a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<span style="padding:0px 8px;"> - </span><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> / <a href="{ReblogRootURL}" title="{ReblogRootName}">root</a><br/>{/block:RebloggedFrom}</div>
- {block:HasTags}<div id="tags"><span style="text-transform:uppercase; font-size:9px;">tagged under:</span> {block:Tags}<a href="{TagURL}"><img src="http://p.yusukekamiyamane.com/icons/search/fugue/icons/tag-small.png">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
- </center>{/block:IndexPage}
- {block:PermalinkPage}<center><div id="postinfo">
- {block:NoteCount}<span style="color:#c32a13; font-size:9px; padding-right:1px;">♥</span><a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<span style="padding:0px 8px;"> - </span><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> / <a href="{ReblogRootURL}" title="{ReblogRootName}">root</a><br/>{/block:RebloggedFrom}</div>
- {block:Date}<span style="text-transform:uppercase; font-size:10px; color:#000000; padding:6px;">posted at {12Hour}:{Minutes} on {Month} {DayOfMonth}, {Year}</span>{/block:Date}
- {block:HasTags}<div id="tags"><span style="text-transform:uppercase; font-size:9px;">tagged under:</span> {block:Tags}<a href="{TagURL}"><img src="http://p.yusukekamiyamane.com/icons/search/fugue/icons/tag-small.png">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
- </center>{/block:PermalinkPage}
- </div>
- {/block:Posts}
- {block:PostNotes}<div id="notecontainer">{PostNotes}</div>{/block:PostNotes}
- </div>
- </body>
- {block:ifPopUpAskBox}
- <div id="02" class="popup_block">
- <center><span style="text-transform:uppercase; font-family: 'Raleway', sans-serif; font-weight:800; font-size:14px; color:#ffffff;">{AskLabel}</span><p><iframe frameborder="0" height="200" src="http://www.tumblr.com/ask_form/{text:Your Username}.tumblr.com/" width="500"></iframe></p>
- <p><span style="color:#ffffff;">YOUR FAQ OR UPDATES GO HERE</span></p>
- </center></div>
- </div></div></div></div></div></div></div></div></div></div>
- {/block:ifPopUpAskBox}
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement