Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE 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}
- <!--theme by indiesrock-->
- <meta name="color:background" content="#ffffff"/>
- <meta name="color:text" content="#000000"/>
- <meta name="color:link" content="#000000"/>
- <meta name="color:hover" content="#cccccc"/>
- <meta name="color:border" content="#cccccc"/>
- <meta name="color:side link hover" content="#ffffff"/>
- <meta name="color:side link hover bg" content="#000000"/>
- <meta name="image:sidebar" content=""/>
- <meta name="text:link1" content="/"/>
- <meta name="text:link1 text" content=""/>
- <meta name="text:link2" content="/"/>
- <meta name="text:link2 text" content=""/>
- <meta name="text:popup ask title" content=""/>
- <meta name="text:url" content=""/>
- <!---jquery for navigation and popup ask--->
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/iuggpng/bGqm4yfv9/jquery-1.7.2.js"></script>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.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('');
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 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>
- <style type="text/css">
- body {
- font-family:arial;
- font-size:10px;
- line-height:100%;
- background:{color:background};
- text:{color:text};
- }
- a {
- color:{color:link};
- text-decoration:none;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- a:hover {
- color:{color:hover};
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- img {
- border:none;
- }
- blockquote {
- padding:2px;
- padding-left:10px;
- border-left:1px solid {color:border};
- }
- h1 {
- font-size:13px;
- text-transform:uppercase;
- letter-spacing:2px;
- font-weight:normal;
- line-height:15px;
- }
- h2 {
- font-size:11px;
- text-transform:uppercase;
- letter-spacing:2px;
- font-weight:normal;
- line-height:13px;
- text-align:center;
- border:1px solid {color:border};
- padding:5px;
- }
- #container {
- width:700px;
- padding:20px;
- }
- #p {
- width:500px;
- padding:25px;
- margin:40px 0 0 380px;
- }
- #side {
- width:185px;
- margin:230px 0 0 116px;
- padding:5px;
- position:fixed;
- }
- #t {
- padding:5px;
- font-size:13px;
- text-transform:uppercase;
- letter-spacing:2px;
- margin:-3px 0 -3px 0;
- }
- #sideimg {
- padding:5px;
- width:200px;
- }
- #sideimg img {
- width:175px;
- }
- #desc {
- text-align:justify;
- padding:5px;
- width:175px;
- margin:0px 0 0 0;
- }
- .link {
- padding:0px;
- text-align:right;
- width:175px;
- font-size:8px;
- margin:0px 0 -3px 0px;
- }
- .link a {
- color:black;
- display:inline-block;
- padding:3px;
- }
- .link a:hover {
- background:{color:side link hover bg};
- color:{color:side link hover};
- }
- #pagi {
- width:500px;
- padding:25px;
- margin:20px 0 0 380px;
- text-align:Center;
- font-size:9px;
- text-transform:uppercase;
- }
- #info {
- padding:5px;
- text-align:center;
- text-transform:uppercase;
- font-size:8px;
- }
- #info a {
- padding:3px;
- }
- #tag {
- font-weight:bold;
- }
- #ask {
- text-align:left;
- font-size:11px;
- text-transform:uppercase;
- letter-spacing:2px;
- }
- #quest {
- text-align:left;
- font-size:8px;
- letter-spacing:1px;
- }
- #ans {
- text-align:right;
- font-size:9px;
- }
- .qsource {
- text-align:center;
- font-size:8px;
- text-transform:uppercase;
- }
- #audio {
- height:50px;
- border:1px solid {color:border};
- }
- .play {
- position:absolute;
- margin:12px 0 0 10px;
- width:28px;
- height:30px;
- overflow:hidden;
- }
- #tings {
- position:absolute;
- font-size:8px;
- text-transform:uppercase;
- letter-spacing:1px;
- margin:15px 0 0 50px;
- }
- #fade { /*--Transparent background layer--*/
- display: none; /*--hidden by default--*/
- 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: 52%;
- z-index: 99999;
- }
- #askt {
- text-align:center;
- font-size:13px;
- text-transform:uppercase;
- letter-spacing:3px;
- margin:0 0 10px 0 ;
- color:#fff;
- }
- ol.notes {
- width:500px;
- list-style-type:none;
- padding:25px;
- margin:5px 0 0 380px;
- font-size:8px;
- text-transform:uppercase;
- }
- ol.notes li {
- padding:5px;
- }
- ol.notes img.avatar {
- width:0px;
- height:0px;
- }
- #c {
- font-size:12px;
- right:0;
- bottom:0;
- padding:5px;
- position:fixed;
- }
- </style></head>
- <body>
- <div id="side">
- <div id="sideimg"><a href="/"><img src="{image:sidebar}"></a></div>
- <script type="text/javascript">
- jQuery(document).ready(function() {
- jQuery(".sub").hide();
- //toggle the componenet with class msg_body
- jQuery(".cthrough").click(function()
- {
- jQuery(this).next(".sub").slideToggle(500);
- });});
- </script>
- <a class="cthrough" style="cursor:help;"><div id="t">{title}</div></a>
- <div class="sub">
- <div class="link">
- <a href="/">home</a>
- <a href="{text:link1}">{text:link1 text}</a>
- <a href="{text:link2}">{text:link2 text}</a>
- <a href="#?w=500" rel="02" class="poplight">queries</a>
- </div>
- </div>
- <div id="desc">{description}</div>
- </div>
- <div id="02" class="popup_block">
- <div id="askt">{text:popup ask title}</div>
- <iframe frameborder="0" height="190" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/{text:url}.tumblr.com" width="100%"></iframe>
- </div>
- <div id="container">
- {block:posts}
- <div id="p">
- {block:Text}
- <h1>{block:Title}{Title}{/block:Title}</h1>
- {Body}
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- {Photoset-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photoset}
- {block:Video}
- {Video-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Video}
- {block:Quote}
- <h2>"{quote}"</h2>
- {block:Source}
- <div class="qsource">{Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <h1><a href="{URL}" {Target}>{Name}</a></h1>
- {block:Description}<blockquote>{Description}</blockquote>{/block:Description}
- {/block:Link}
- {block:Chat}{block:Title}{Title}{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
- {block:Audio}
- <div id="audio">
- <div id="audiobg">
- <div class="play">{AudioPlayerwhite}</div></div><div id="tings">
- {block:TrackName}{TrackName}{/block:TrackName}<br>
- {block:Artist}{Artist}{/block:Artist}</div></div><br>
- {block:Caption}<blockquote>{Caption}</blockquote>{/block:Caption}{/block:Audio}
- {block:Answer}
- <div id="ask">{asker}</div>
- <div id="quest">{question}</div>
- <div id="ans">{answer}</div>
- {/block:Answer}
- <div id="info">
- <a href="{permalink}">{ShortMonth} {DayOfMonth}{dayofmonthsuffix}</a>{block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">c</a>{/block:ContentSource}<a href="{Permalink}">+{NoteCount}</a>
- {block:HasTags}
- <div id="tag">{block:Tags}<a href="/tagged/{Tag}">{Tag}</a>{/block:Tags}</div>
- {block:HasTags}</div>
- </div>
- {/block:Posts}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:Posts}
- {block:Pagination}
- <div id="pagi">{block:PreviousPage}<a href="{PreviousPage}">previous page</a> {/block:PreviousPage} {block:NextPage} <a href="{NextPage}">next page</a>{/block:NextPage}
- </div>{/block:Pagination}
- </div></div>
- <div id="c"><a href="http://indiesrock.tumblr.com">◐</a>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment