Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <head>
- <!--
- Theme by h4te
- http://h4te.tumblr.com
- Please don't remove the credit.
- -->
- <title>{title}</title>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.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() {
- //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://media.tumblr.com/tumblr_lprqb3zExH1qcn2vb.png" 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>
- <meta name="color:Background" content="#B6A4D4"/>
- <meta name="color:Text" content="#000"/>
- <meta name="color:Title" content="#000"/>
- <meta name="color:Box" content="#fff"/>
- <meta name="color:Link" content="#000"/>
- <meta name="color:Hover" content="#000"/>
- <meta name="image:Background" content=""/>
- <meta name="image:Sidebar" content=""/>
- <meta name="if:Show Photo" content="0"/>
- <meta name="if:Show Title" content="0"/>
- <meta name="if:Show Note Count" content="1"/>
- <meta name="if:Show Captions" content="1"/>
- <meta name="if:Show Notes" content="1"/>
- <meta name="font:Title" content="Helvetica"/>
- <meta name="font:Blog Title" content="courier new"/>
- <meta name="font:Body" content="Helvetica"/>
- <meta name="text:Title font size" content="14px"/>
- <meta name="if:Endless Scroll" content="1"/>
- <meta name="if:Tiny Cursor" content="0"/>
- <meta name="if:Scroll To Top One" content="0"/>
- <meta name="if:Scroll To Top Two" content="0"/>
- <meta name="if:Shadow Links" content="0"/>
- <meta name="if:Sidebar Shadow" content="0"/>
- <meta name="if:Sidebar Rounded" content="0"/>
- <meta name="if:Posts Shadow" content="0"/>
- <meta name="if:Posts Rounded" content="0"/>
- <meta name="if:Dotted Border Sidebar" content="0"/>
- <meta name="if:Solid Border Sidebar" content="0"/>
- <meta name="if:Dotted Border Posts" content="0"/>
- <meta name="if:Solid Border Posts" content="0"/>
- <meta name="if:Ask Link" content="0"/>
- <meta name="if:Archive Link" content="0"/>
- <meta name="text:Link One" content="" />
- <meta name="text:Link One Title" content="" />
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Two Title" content="" />
- <meta name="text:Link Three" content="" />
- <meta name="text:Link Three Title" content="" />
- <meta name="text:Link Four" content="" />
- <meta name="text:link Four Title" content="" />
- <meta name="text:link Five" content="" />
- <meta name="text:link Five Title" content="" />
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
- {block:ifdisable}<script type="text/javascript" src="http://static.tumblr.com/is5f0mm/bW6lrpwtp/disable_right_click.txt"></script>{/block:ifdisable}
- {block:ifscrolltotopone}<script type="text/javascript" src="http://static.tumblr.com/ubmlcww/vRrls53pk/scroll_to_top.txt"></script>{/block:ifscrolltotopone}
- {block:ifscrolltotoptwo}
- <script type="text/javascript" src="http://static.tumblr.com/ubmlcww/kzXlsuqyl/scroll_to_top_2.txt"></script>
- {/block:ifscrolltotoptwo}
- <style type="text/css">
- {block:iftinycursor}
- body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}
- {/block:iftinycursor}
- {block:ifrainbowlinks}<script src="http://static.tumblr.com/is5f0mm/0cxlrpwye/rainbow_links.txt" type="text/javascript"></script>{/block:ifrainbowlinks}
- body{
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- font-family: cambria;
- font-size: 10px;
- line-height:10px;
- letter-spacing:0px;
- color:{color:Text};
- margin-top:5px;
- margin-left:0px;
- overflow: -moz-scrollbars-vertical;
- overflow-x: hidden;
- overflow-y: scroll;
- }
- a:link, a:active, a:visited
- { color: {color:Link};
- text-decoration: none;
- -webkit-transition:
- color .0s ease-out;
- -moz-transition: color 0.2s ease-out;
- transition: color .0s ease-out;}
- a:hover{
- color:{color:Hover};
- text-decoration: none;
- }
- #base{width:300px; height:auto;}
- }
- #picture{
- padding-top:3px;
- padding-bottom:3px;
- position:fixed !important;
- width:246px;
- height:207px;
- background-color:{color:box};
- left:4%;
- margin-top:0px;
- padding-left:3px;
- padding-right:3px;
- padding-bottom:2px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- }
- #side{
- margin-top:250px;
- padding:2px;
- {block:ifnotinfinitescroll}padding-bottom: 8px;{block:ifnotinfinitescroll}
- position:fixed !important;
- width:150px;
- margin-left: 30px;
- {block:ifsidebarshadow}box-shadow: 0px 5px 15px rgba(0,0,0,0.6);{/block:ifsidebarshadow}
- {block:ifsidebarrounded}-moz-border-radius: 5px;
- border-radius: 5px;{/block:ifsidebarrounded}
- background-color:{color:box};
- {block:ifsolidbordersidebar}border: 1px solid black;{/block:ifsolidbordersidebar}
- {block:ifdottedbordersidebar}border: 1px dotted black;{/block:ifdottedbordersidebar}
- }
- iframe {
- position: fixed
- top: yy%;
- left: xx%;
- }
- #center{
- margin:auto;
- position:relative;
- width:1180px;
- overflow:auto;
- overflow-y:hidden;
- }
- #posts{
- padding-top:5px;
- padding-bottom: 5px;
- float:right;
- width:630px;
- margin-right:25%}
- #entry{
- float: left;
- width: 300px;
- height: auto;
- padding: 0px;
- {block:ifnotpostsshadow}padding-left: 2px;
- padding-right: 2px;
- padding-bottom:0px;
- padding-top:2px;{/block:ifnotpostsshadow}
- line-height:10px;
- background-color:{color:box};
- margin-right:0px;
- overflow:hidden;
- box-shadow: 0px 3px 8px #fff(0,0,0,0.0);
- {block:ifpostsshadow}box-shadow: 0px 3px 8px rgba(0,0,0,0.0);{block:ifpostsshadow}
- {block:ifpostsRounded}-moz-border-radius:3px; border-radius:3px;{/block:ifpostsRounded}
- {block:ifpostsshadow}margin-bottom:0px; {/block:ifpostsshadow}
- {block:ifnotpostsshadow}margin-bottom: 0px;{/block:ifnotpostsshadow}
- {block:ifpostsshadow}margin-top:0px;{/block:ifpostsshadow}
- {block:ifnotpostsshadow}margin-top:0px;{/block:ifnotpostsshadow}
- {block:ifsolidborderposts}border: 1px solid black;{/block:ifsolidborderposts}
- {block:ifdottedborderposts}border: 1px dotted black;{/block:ifdottedborderposts}
- }
- #entry .perma a{
- color: #000 }
- {block:indexpage}#entry .permalink{
- position:absolute;
- margin-top:0px;
- margin-left:145px;
- width:auto;
- height:11px;
- padding:5px;
- background-color:#ffffff;
- text-transform: uppercase;
- overflow:hidden;
- font-family: {font:text font};
- font-size: 11px;
- line-height:11px;
- text-align:center;
- opacity:0.0;
- -webkit-transition: all 0.3s linear;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;{/block:indexpage}
- }
- {block:indexpage}#entry:hover .permalink{
- margin-top:10px;
- overflow:visible;
- -webkit-transition: all 0.3s linear; opacity: 0.7;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;{/block:indexkpage}
- }
- {block:indexpage}#entry .reblog{
- position:absolute;
- margin-top: 0px;
- margin-left:85px;
- width:auto;
- height:auto;
- text-transform: uppercase;
- background-color:#ffffff;
- padding:5px;
- overflow:hidden;
- font-family: arial;
- font-size: 11px;
- line-height:11px;
- text-align:center;
- opacity:0.0;
- -webkit-transition: all 0.3s linear;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;{/block:indexpage}
- }
- {block:indexpage}#entry:hover .reblog{
- margin-top: 10px;
- overflow:visible;
- -webkit-transition: all 0.3s linear; opacity: 0.7;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;{/block:indexpage}
- }
- #pagination{
- font-size: 10px;}
- #permapage{
- padding-top:2px;
- font-family: century gothic;
- font-size: 11px;
- line-height: 11px;
- text-align: center;
- padding-bottom: 0px;
- z-index:100;}
- #notes{
- {block:permalinkpage}
- background-color: {color:box};
- display:block;
- width:300px;
- list-style:none;
- float: left;
- padding:2px;
- overflow:hidden;
- z-index:1;
- margin-top: 0px;
- text-align: left;{/block:permalinkpage}
- }
- ol.notes img.avatar { display: true; padding:2px 0 0 2px; border:0px;}
- .title{
- font-family: {font:Title};
- font-size: {text:Title font size};
- line-height: 14px;
- color: {color:Title};
- font-weight: normal;
- }
- .blogtitle{
- {block:ifnotshowphoto}padding-bottom: 10px;{/block:ifnotshowphoto}
- {block:ifshowphoto}padding-bottom:5px;{/block:ifshowphoto}
- font-family:georgia;
- text-align:center;
- color: {color:title};
- line-height:18px;
- font-size:18px;
- }
- .video embed, .post div.video object {
- width:300px !important;
- height:auto !important;
- }
- blockquote{
- padding:0px 0px 2px 3px;
- margin:0px 0px 2px 1px;
- border-left: 1px dashed {color:Text};
- }
- a img{border: 0px;}
- ul, ol, li{list-style:none; margin:0px; padding:0px;}
- .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
- .user_7 .label, .user_8 .label, .user_9 .label {color:#555;}
- .notes img{width:10px; position:relative; top:3px;}
- .permalink{
- display: block;
- font-size: 10px;
- text-align: right;
- text-decoration: none;
- }
- a.links {
- font-family: Arial;
- font-size: 10px;
- line-height: 10px;
- text-transform: normal;
- letter-spacing:0px;
- display:block;
- padding: 0px;
- margin-bottom: 0px;
- -moz-border-radius:0px; border-radius:0px;
- }
- a.links:hover {
- font-style: italic;
- text-decoration: underline;
- letter-spacing:10px;
- }
- .pft{font-family: Arial; font-size: 10px; text-align: center;}
- div.permalinkphoto{
- text-align:center;
- background:#7E7E7E;
- letter-spacing:0px;
- padding:4px;
- padding-top:2px;
- margin-top: 2px;
- }
- div.permatext{
- font-size:8px;
- color:#FFF;
- font-style:normal;
- display:block;
- width: 146px;
- margin-left: -157px;
- position: absolute;
- text-align: right;
- }
- ptextcolor {
- font-family: cambria !important;
- font-size: 8px !important;
- text-transform:uppercase;
- color:#FFF;
- }
- .nation{
- margin-top: 1px;
- text-align: center;
- font-family: georgia;
- }
- small{font-size: 90%;}
- </style>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- {block:ifEndlessScroll}
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- /*
- var defaults = {
- containerID: 'moccaUItoTop', // fading element id
- containerHoverClass: 'moccaUIhover', // fading element hover class
- scrollSpeed: 1200,
- easingType: 'linear'
- };
- */
- $().UItoTop({ easingType: 'easeOutQuart' });
- });
- </script>
- {/block:ifEndlessSCroll}
- </head>
- <body>
- <div id="picture">
- <div id="center">
- <div id="side">
- <center>
- {block:ifShowTitle}
- <span style="position: relative; top: 1px z-index:1000;">
- <div class="blogtitle"><a href="/">{Title}</a></div>
- </span>
- {/block:ifShowTitle}
- {block:ifShowPhoto}
- <div style="padding-top:0px; padding-bottom:5px;">
- <div align="center">
- <a href="/">
- <span style="position: relative;">
- <img src="{image:sidebar}" WIDTH=150 style=" opacity:0.98;filter:alpha(opacity=98)" border="0" /></span></div>
- </div>
- </a>
- {/block:ifShowPhoto}
- <center>
- {description}
- <p>
- {block:ifLinkOneTitle}
- {block:ifdescription}<BR>
- <BR>
- <BR>
- <BR>{/block:ifdescription}
- <a href="{text:Link One}" class="link">{text:Link One Title}</a>
- {/block:ifLinkOneTitle}
- {block:ifLinkTwoTitle}
- <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>
- {/block:ifLinkTwoTitle}
- {block:ifLinkThreeTitle}
- <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>
- {/block:ifLinkThreeTitle}
- {block:ifLinkFourTitle}
- <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>
- {/block:ifLinkFourTitle}
- {block:ifLinkFiveTitle}
- <a href="{text:Link Five}" class="link">{text:Link Five Title}</a>
- {/block:ifLinkFiveTitle}
- {block:ifnotlinkonetitle}{block:ifdescription}<BR><BR><BR><BR>{block:ifdescription}{/block:ifnotlinkonetitle}{block:ifasklink}<a href="/ask">message</a> {/block:ifasklink}
- {block:ifarchivelink}<a href="/archive">archive</a> {/block:ifarchivelink}
- <script src='http://static.tumblr.com/ubmlcww/aXpls2t3m/posts.txt
- ' type='text/javascript'></script>
- </center>
- {block:ifnotEndlessScroll}<center>{block:Pagination}
- <BR>
- {block:PreviousPage}<a href="{PreviousPage}"><font size="4"><b>←</b></font></a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}"><font size="4"><b>→</b></font></a>{/block:NextPage}
- {/block:Pagination}{/block:ifnotEndlessScroll}</div>
- </center>
- {block:ifshadowlinks}<style type="text/css">a:hover {
- color:{color:Text};
- text-decoration: none;
- font-style: none;
- text-shadow:0px 0px 5px #02305A;}</style>{/block:ifshadowlinks}
- <div id="pagination">
- <div align="center">
- <div id="posts">
- {block:Posts}
- <div id="entry">
- {block:Photo}
- {block:IndexPage}
- <div id="base">
- <div class="permalink">
- <a href="{permalink}">{NoteCountWithLabel}</a></div>
- <div class="reblog">
- <a href="{ReblogURL}">Reblog</a></div>
- <img src="{PhotoURL-500}" alt="{PhotoAlt}" width=300px / border="0"></div>
- </a>
- {/block:IndexPage}
- {block:PermalinkPage}
- {LinkOpenTag}<center><img src="{PhotoURL-400}" alt="{PhotoAlt}"width=300px/ border="0"></center>
- {/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {Block:ifPosthover}<a href="{ReblogUrl}"><Span class="permalinkdate"></span></a>{/Block:ifPosthover}<a href="{permalink}">
- {Photoset-500}</a>
- {/block:Photoset}
- {block:Text}<div style="padding-left: 4px; padding-right: 4px; "></div>
- {block:indexpage}
- <span class="permalinktext"><a href="{permalink}"></span><div style="padding: 2px;"></div>
- {/block:indexpage}
- {block:Title}
- <div style="padding-left: 4px; padding-right: 4px; padding-bottom: 2px; ">
- <span class="title">{Title}</span></div>
- {/block:Title}
- <div style="padding-left: 4px; padding-right: 4px; ">
- <span class="entrytext">{Body}</span></div>
- <a href="{Permalink}"></a>
- {/block:Text}
- {block:Link}<div style="padding-top:5px; padding-bottom:0px; ">
- <a href="{permalink}">
- <font size="3">
- <a href="{URL}">{Name} </a></font></div>
- {block:Description}{Description}{/block:Description}
- {block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}<div style="padding-top:0px; padding-bottom:3px;"><a href="{Permalink}"></div>
- {/block:Link}
- {block:Quote}<a href="{Permalink}">
- <div style="padding:2px;"></div>
- <span class="title">{Quote}</span>
- {block:Source}
- {Source}
- <div style="padding:2px;"></div>
- {/block:Source}
- </a>
- {/block:Quote}
- {block:Chat}
- <span class="permalinktext"><a href="{permalink}"></span><div style="padding:3px;"></div>
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- </ul>
- {block:ifShowCaptions}
- {block:Caption}{Caption}{/block:Caption}
- {/block:ifShowCaptions}
- <a href="{Permalink}"></a>
- <div style="padding:3px;"></div>
- {/block:Chat}
- {block:Audio}
- <span class="permalinktext">
- <a href="{permalink}">
- </span>
- <div style="width:300px; height:8px;">
- <div style="float:left">
- {AudioPlayerGrey}
- </div>
- <div style="margin-top:8px; float:left; padding-left: 6px; padding-bottom:5px;">
- <small>
- {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}
- </small>
- </div>
- </div>
- {/block:Audio}
- {block:Video}
- {block:IndexPage}
- <div id="base">
- <div class="permalink">
- <a href="{permalink}">{NoteCountWithLabel}</a></div></div>
- <div class="reblog">
- <a href="{ReblogURL}">Reblog</a></div>{/block:IndexPage}
- {Video-250}
- {block:ifShowCaptions}
- {block:Caption}{Caption}{/block:Caption}
- {/block:ifShowCaptions}
- <span class="permalink">
- <div style="padding-top:0px; padding-bottom:3px;">
- <a href="{Permalink}"></a></div>
- </span>
- {/block:Video}
- {block:PermalinkPage}
- <div id="permapage">
- {block:ifshownotecount}{block:NoteCount}{notecountwithlabel}{/block:NoteCount}
- <br>{/block:ifshownotecount}
- {block:ifshowcaptions}{block:RebloggedFrom}
- Reblogged from
- <a href="{ReblogParentURL}">{ReblogParentName}</a>
- <br>
- Posted by
- <a href="{ReblogRootURL}">{ReblogRootName}</a>
- {/block:RebloggedFrom}{/block:ifshowcaptions}
- <div align="left">
- {block:ifshownotes}{block:PostNotes}
- <BR>
- <BR>{PostNotes}
- {/block:PostNotes}{/block:ifshownotes}
- </div>
- </div>
- </center>
- </div>
- {/block:PermalinkPage}
- </div>
- {/block:Posts}
- </div>
- </div>
- </div>
- </div>
- </center>
- </div>
- {block:indexpage}
- {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
- <script src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'></script>
- <script src='http://static.tumblr.com/1s4z8hu/UTBlo4136/jquery.masonry.min.js' type='text/javascript'></script>
- <script type="text/javascript" src="http://static.tumblr.com/jnmer2r/WKhljk73d/jquery.infinitescroll.min.js"></script>
- <script>
- jQuery(window).load(function(){
- var $wall = $('#posts');
- $wall.imagesLoaded(function(){
- $wall.masonry({
- singleMode: true,
- animate: false,
- resizeable: false,
- columnWidth: 303,
- itemSelector: '#entry'
- });
- });
- $wall.infinitescroll({
- navSelector : '#page-nav',
- nextSelector : '#page-nav a',
- itemSelector : '#entry',
- bufferPx : 10000,
- extraScrollPx: 11000,
- loadingImg : '',
- donetext : ''
- },
- function( newElements ){
- $(newElements).hide();
- setTimeout(function(){
- $wall.masonry({ appendedContent: $(newElements) });
- },2000);
- setTimeout(function(){
- $(newElements).fadeIn('slow');
- },2100);
- },1000);
- });
- </script>
- <script>
- $.fn.imagesLoaded = function(callback){
- var elems = this.find('img'),
- len = elems.length,
- _this = this;
- if ( !elems.length ) {
- callback.call( this );}
- elems.bind('load',function(){
- if (--len <= 0){
- callback.call( _this );}
- }).each(function(){
- // cached images don't fire load sometimes, so we reset src.
- if (this.complete || this.complete === undefined){
- var src = this.src;
- // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
- // data uri bypasses webkit log warning (thx doug jones)
- this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
- this.src = src;}
- });
- return this;};
- </script>
- {/block:indexpage}
- <!--
- Theme by h4te
- http://h4te.tumblr.com
- Please don't remove the credit.
- -->
- </body>
- </center></div>
- </div></div></div></div></div></div></div></div></div></div>
- </html>
Add Comment
Please, Sign In to add comment