Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- theme by biebinator title credit goes to irreversibly
- -->
- <head>
- <script type="text/javascript">
- // <![CDATA[
- // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
- var fgcolour="{color:Title color}"; // foreground colour
- var hlcolour="{color:Title color 2}"; // highlight colour
- var bgcolour="{color:Title color 3}"; // background colour
- var glcolour="{color:Title color 4}"; // colour of glow around letters
- var speed=80; // speed colours change, 1 second = 1000
- var delay=50; // how long to wait between wipes
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var w_txt, w_txl;
- var w_flp=bgcolour;
- var w_sty=Math.floor(Math.random()*8);
- var w_cnt=-1;
- var wipes=new Array();
- var wrand=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, wiper, wipei;
- wiper=document.getElementById("wipe");
- w_txt=wiper.firstChild.nodeValue;
- w_txl=w_txt.length;
- while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
- for (i=0; i<w_txl; i++) {
- wipei=document.createElement("span");
- wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
- wipes[i]=wipei.style;
- wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=fgcolour;
- wiper.appendChild(wipei);
- }
- if (alink) {
- wiper.style.cursor="pointer";
- wiper.onclick=function() { top.location.href=alink; }
- }
- for (i=0; i<w_txl; i++) wrand[i]=i;
- wiper=setInterval("randwipe()", speed);
- }}
- function c(i, shade) {
- if (shade==bgcolour) wipes[i].textShadow="none";
- else wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=shade;
- }
- function randwipe() {
- var w_old;
- if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
- else {
- w_cnt=-1;
- w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- w_old=w_sty;
- while (w_old==w_sty) w_sty=Math.floor(Math.random()*9);
- }
- }
- function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
- function wipe0() { // full curtains
- var half=Math.floor(w_txl/2);
- if (w_cnt<w_txl) {
- c(w_cnt, (w_cnt<half)?hlcolour:w_flp);
- c(w_txl-w_cnt-1, (w_cnt<half)?hlcolour:w_flp);
- }
- }
- function wipe1() { // random
- var i, rand, temp;
- if (w_cnt==0) {
- for (i=0; i<w_txl; i++) {
- rand=Math.floor(Math.random()*w_txl);
- temp=wrand[i];
- wrand[i]=wrand[rand];
- wrand[rand]=temp;
- }
- }
- if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
- }
- function wipe2() { // forwards
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- }
- function wipe3() { // backwards
- if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
- }
- function wipe4() { // searchlight
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
- if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
- if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- }
- function wipe5() { // fade
- var i;
- if (w_cnt<w_txl+3) {
- var start=(w_flp==fgcolour)?bgcolour:fgcolour;
- var temp="#";
- for (i=1; i<6; i+=2) {
- var hex1=parseInt(start.substring(i,i+2),16);
- var hex2=parseInt(w_flp.substring(i,i+2),16);
- temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
- }
- for (i=0; i<w_txl; i++) c(i, temp);
- }
- }
- function wipe6() { // flash
- var i;
- if (w_cnt<6*Math.floor(w_txl/6)+3) {
- if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
- else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
- else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
- }
- }
- function wipe7() { // checkerboard
- var qtr=Math.floor(w_txl/4);
- if (w_cnt<qtr) {
- c(w_cnt, hlcolour);
- c(w_cnt+2*qtr, hlcolour);
- }
- else if (w_cnt<2*qtr) {
- c(w_cnt-qtr, w_flp);
- c(w_cnt+qtr, w_flp);
- }
- else if (w_cnt<3*qtr) {
- c(w_cnt-qtr, hlcolour);
- c(w_cnt+qtr, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt-2*qtr, w_flp);
- c(w_cnt, w_flp);
- }
- }
- function wipe8() { // half curtains
- var half=Math.floor(w_txl/2);
- if (w_cnt<half) {
- c(w_cnt, hlcolour);
- c(w_txl-w_cnt-1, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt-half, w_flp);
- c(w_txl+half-w_cnt-1, w_flp);
- }
- }
- // ]]>
- </script>
- <link href="http://static.tumblr.com/z0cd8ty/aJjm6uyej/meffects.css" rel="stylesheet">
- <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('<a href="#" class="close"><img src="http://i257.photobucket.com/albums/hh224/cheranypixels/Food/Cheese/084.gif" class="btn_close" title="Close" alt="Close" /></a>');
- 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>
- <title>{Title}</title>
- <link href='http://fonts.googleapis.com/css?family=Didact+Gothic' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Miniver|Give+You+Glory|Short+Stack|Loved+by+the+King|Coming+Soon|Raleway:100|Handlee|Indie+Flower' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <meta name="color:background" content="#aaa"/>
- <meta name="color:text" content="#130C11"/>
- <meta name="color:title" content="#130C11"/>
- <meta name="color:title color" content="#000000"/>
- <meta name="color:title color 2" content="#ffffff"/>
- <meta name="color:title color 3" content="#aaa"/>
- <meta name="color:title color 4" content="#dadada"/>
- <meta name="color:hover" content="#130C11"/>
- <meta name="color:link" content="#000000"/>
- <meta name="color:shadow" content="#dadada"/>
- <meta name="color:box links" content="#dadada"/>
- <meta name="color:side1" content="#f7e600"/>
- <meta name="color:side2" content=" #aaa"/>
- <meta name="image:Background" content=""/>
- <meta name="image:sidebar" content=""/>
- <meta name="if:faded images" content="0"/>
- <meta name="text:Link One Title" content= >
- <meta name="text:Link One" content="" />
- <meta name="text:Link Two Title" content= >
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Three Title" content= >
- <meta name="text:Link Three" content="" />
- <meta name="text:Link Four Title" content= >
- <meta name="text:Link Four" content="" />
- <meta name="text:Link Five Title" content= >
- <meta name="text:Link Five" content="" />
- <style type="text/css">
- {block:iffadedimages}img{
- -webkit-transition: opacity 0.8s linear;
- opacity: 0.60;
- }
- img:hover{
- -webkit-transition: opacity 0.8s linear;
- opacity: 1;
- }{/block:iffadedimages}
- img{-webkit-filter: grayscale(0);-webkit-transition: opacity 0.3s linear; opacity:1.0;}img:hover{ -webkit-filter: grayscale(1);-webkit-transition: opacity 0.3s linear; opacity: 1;}
- iframe#tumblr_controls {right:3px !important; position: fixed !important;}
- body, a, a:hover {cursor: url(http://i56.tinypic.com/2589ppu.png), progress;}
- a {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
- body, a, a:hover {cursor: url(), progress;}
- ::-webkit-scrollbar {width: 8px; height: 4px; background: white; }
- ::-webkit-scrollbar-thumb { background-color:{color:box links}; -webkit-border-radius: 0ex; border: 1px solid #dadada; width: 3px;}
- #tumblr_controls{
- position:fixed !important;
- }
- .wrapper{
- margin: 0px auto;
- width: 802px;
- }
- .header{
- float: left;
- width: 100%;
- }
- .left{
- float: left;
- margin-right: 20px;
- width: 802px;
- }
- .right{
- float: right;
- width: 200px;
- background-color: {color:Background};
- }
- body {
- margin:0px;
- text-decoration: none;
- background-color: {color:background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- color: {color:Text};
- font-family: didact gothic;
- text-transform: uppercase;
- font-size: 9px;
- }
- div#content{
- padding: 4px;
- }
- a:link, a:active, a:visited{
- color: {color:Link};
- text-decoration: none;
- -webkit-transition: color 0.2s ease-out;
- -moz-transition: color 0.2s ease-out;
- }
- a:hover{
- color:{color:Hover};
- text-decoration: underline;
- -webkit-transition: color 0.2s ease-out;
- -moz-transition: color 0.2s ease-out;
- text-shadow: {color:shadow} 5px 2px 2px;
- }
- .entry {
- float:left;
- padding: 0px;
- margin: 0px;
- font-color: #000000;
- {block:IndexPage}
- width: 400px;
- {/block:IndexPage}
- {block:PermalinkPage}
- width:500px;
- padding: 5px;
- border: 1ps solid #000;
- {/block:PermalinkPage}
- background-color: transparent;
- opacity: 1.0;
- }
- .permalink{
- display: block;
- padding: 0px;
- margin: 4px 8px 0px 8px;
- text-transform: uppercase;
- font-family: didact gothic;
- font-size: 11px;
- color: #313131;
- line-height: 18px;
- text-align: right;
- text-decoration: none;
- -webkit-transition: color 0.5s ease-out;
- -moz-transition: color 0.5s ease-out;
- border-top: 1px solid #dcdcdc;
- }
- @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
- div#sidebar{
- position:fixed !important;
- width: 260px;
- height:300px;
- margin-top: 120px;
- margin-left:0px;
- padding: 4px;
- line-height:11px;
- letter-spacing:0px;
- margin-bottom: 6px;
- font-size: 8px;
- opacity: 1.0;
- }
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
- #ssidebarimage{margin-left: 120px; margin-top: 67px; width: 100px; float: left; background-color: {color:sidebar}; padding: 5px; position: fixed; height: 158px;}
- .sdbarimg {padding: 3px; background-color: {color:background}; border: 1px solid #dadada; height: 158px;}
- .sdbarimg img{max-width: 100px; height: auto; display: inline; margin-bottom: 1px;}
- #posts {
- width: 550px;
- margin-left:300px;
- background-color: {color:background};
- background-image:url({image:Background});
- {block:PermalinkPage}
- {/block:PermalinkPage}
- float:left;
- }
- #infscr-loading{
- bottom: -70px;
- position: absolute;
- left: 50%;
- margin-left:-8px;
- width:16px;
- height:11px;
- overflow:hidden;
- margin-bottom: 50px;
- }
- @font-face { font-family: "impsum"; src: url('http://static.tumblr.com/u37ad6e/OCIm7s3av/existence-unicaselight.otf'); }
- @font-face { font-family: "lorem"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
- @font-face {
- font-family: "caviardreams";
- src: url('http://static.tumblr.com/alux5te/8BFltyod3/caviardreams.ttf');
- }
- div#description{
- margin-top:-80px;
- margin-left: 0px;
- padding: 4px 3px 4px 2px;
- width: 150px;
- height: auto;
- background-color: {color:background};
- background-image:url({image:Background});
- position: fixed;
- text-align: left;
- }
- .title{
- font-family: didact gothic;
- font-size: 18px;
- line-height:14px;
- color: {color:Title};
- font-weight: normal;
- }
- @font-face { font-family: "bebas neue"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
- @font-face { font-family: "learningcurve"; src: url('http://static.tumblr.com/rmj06l2/paAlm4ymo/learningcurve.ttf'); }
- #blogtitle{
- font-family: impsum;
- font-size: 55px;
- line-height:70px;
- width: 390px;
- margin-top: -390px;
- color: {color:title};
- font-weight: normal;
- text-transform: lowercase;
- margin-left: -65px;
- }
- #sidepicture .side3{
- position:absolute;
- opacity:0;
- font-size: 8px;
- line-height:19px;
- text-align: center;
- width:130px;
- height:300px;
- background-color: {color:Side2};
- margin-top:-436px;
- margin-left:-110px;
- -webkit-transition: .6s; -moz-transition: .6s; -o-transition: .6s; -ms-transition: .6s;
- transition: .6s;
- }
- #sidepicture:hover .side3{
- opacity:.75;
- margin-left:130px;
- margin-top:-314px;
- -webkit-transition: .6s; -moz-transition: .6s; -o-transition: .6s; -ms-transition: .6s;
- transition: .6s;
- }
- #title2 {
- font-family: didact gothic;
- font-size: 20px;
- line-height:8px;
- color: #fff;
- letter-spacing: 0;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- text-shadow: #000 1px 2px 2px;
- }
- #sidepicture .side5{
- position:absolute;
- opacity:0;
- font-size: 9px;
- line-height:19px;
- text-align: center;
- width: 130px;
- height:300px;
- background-color: {color:side1};
- margin-top:-400px;
- margin-left:200px;
- -webkit-transition: .6s; -moz-transition: .6s; -o-transition: .6s; -ms-transition: .6s;
- transition: .6s;
- }
- #sidepicture:hover .side5{
- opacity:.75;
- margin-top:-314px;
- margin-left:0px;
- -webkit-transition: .6s; -moz-transition: .6s; -o-transition: .6s; -ms-transition: .6s;
- transition: .6s;
- }
- .links{
- width:115px;
- display:inline-block;
- height:40px;
- background : {color:box links};
- font-size: 18px;
- line-height:40px;
- margin-top: 2px;
- margin:3px;
- color: #000;
- font-family: didact gothic;
- text-align: center;
- text-transform:;
- padding : 1px;
- padding-bottom : 0px;
- BORDER: 1PX SOLID #AAA;
- border-top-right-radius:0px;
- border-bottom-right-radius:0px;
- border-top-left-radius:0px;
- border-bottom-left-radius:0px;
- -webkit-transition-duration: .5s;
- -webkit-transform: rotate(0deg);
- box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.42);
- }
- .links:hover{
- -webkit-animation: pulse 0.5s;
- -moz-animation: pulse 0.5s;
- -ms-animation: pulse 0.5s;
- background:#fff;
- -webkit-transition-duration: .5s;
- box-shadow: 40px 10px 20px rgba(50, 50, 50, 0.42);
- }
- .firstletter {
- font-family:londrina shadow;
- text-transform: lowercase;
- font-size:33px;
- margin-top: 10px;
- margin-left: 0px;
- line-height: 20px;
- width:180px;
- color: #000;
- text-align: center;
- text-shadow: #000 2px 1px 2px;
- }
- div#fag{
- width:100px;
- margin-top: 10px;
- background-color: TRANSPARENT;
- margin-left: 2px;
- }
- .perma {
- opacity: 0.0;
- filter: alpha(opacity = 1);
- z-index:9999991;
- display: inline-block;
- position: absolute;
- left: 5px;
- height: 20px;
- top: 5px;
- margin-left: 40px;
- }
- .entry:hover .perma {
- margin-left: 0px;
- opacity: 1;
- filter: alpha(opacity = 100); -webkit-transition: all 0.7s ease-out;
- -moz-transition: all 0.7s ease-out;
- transition: all 0.7s ease-out;
- }
- .likep {
- width: 21px;
- height: 20px;
- overflow: hidden;
- z-index: 9999999;
- display: inline-block;
- }
- .rep {
- width: 24px;
- height: 20px;
- overflow: hidden;
- z-index: 9999999;
- display: inline-block;
- }
- .likep a:hover {
- background-position: 0px 0px;
- }
- .likep a {
- background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
- background-position: 0px 0px;
- display: block;
- z-index: 9999999;
- }
- .likep img {
- width: 21px;
- height: 20px;
- }
- .rep img{
- width: 24px;
- height: 20px;
- line-height: 30px;
- display: inline;
- }
- .not {
- position: absolute;
- right: 5px;
- top: 5px;
- display: inline-block;
- background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png");
- height: 20px;
- font-size: 11px;
- line-height: 20px;
- color: #fff;
- padding-left: 4px;
- padding-right: 4px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- margin-right: 40px;
- opacity: 0.0;
- filter: alpha(opacity = 1);
- }
- #background{ repeat;}
- .not a {
- color: #fff;
- font-weight: bold;
- font-family: arial;
- }
- .entry:hover .not, .entry:hover .rep, .entry:hover .likep {
- opacity: 1;
- filter: alpha(opacity = 80);
- margin-right: 0; -webkit-transition: all 0.7s ease-out;
- -moz-transition: all 0.7s ease-out;
- transition: all 0.7s ease-out;
- }
- .not:hover , .rep:hover, .likep:hover {
- opacity: 1!important;
- filter: alpha(opacity = 100)!important;
- }
- .t {
- text-align: right;
- opacity: 1;
- filter: alpha(opacity = 100);
- }
- p.t {
- margin: -5px 0px 0px 0px;
- font-size: 10px;
- line-height: 11px;
- }
- .entry:hover .t {
- opacity: 1;
- filter: alpha(opacity = 100);
- }
- <link href='http://fonts.googleapis.com/css?family=Londrina+Shadow' rel='stylesheet' type='text/css'>
- .firstletter:first-letter {
- color: {color: first letter of title};
- text-transform: uppercase;
- font-size:43px;
- }
- @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
- @font-face {
- font-family: "dawning";
- src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');
- }
- @font-face{
- font-family: 'pixel';
- font-style: normal;
- font-weight: normal;
- src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff');}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
- @font-face { font-family: "black swan"; src: url('http://static.tumblr.com/v1tggoh/R5qlzevb9/a_s_black_swan.ttf');}
- @font-face{
- font-family: 'pixel';
- font-style: normal;
- font-weight: normal;
- src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff');}
- @font-face {font-family:"handy00";src:url('http://static.tumblr.com/vtqel59/gijlrtxyw/handy00.ttf');}
- @font-face { font-family: "stars"; src: url('http://static.tumblr.com/hcfbjje/sfRlpm8t0/starsfromoureyes.ttf'); }
- @font-face { font-family: "arsenale white"; src: url('http://static.tumblr.com/5fd89aw/H0ilkmgoh/arsenale_white.ttf'); }
- @font-face {
- font-family: "caviardreams";
- src: url('http://static.tumblr.com/alux5te/8BFltyod3/caviardreams.ttf');
- }
- @font-face {font-family: "Meow";src: url( http://static.tumblr.com/kauezwz/YlIlz8nop/theonlyexception.ttf) format("truetype");}
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 10px;
- border-left: 1px dotted #555555;
- }
- {CustomCSS}
- </style>
- {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 $content = $('#posts');
- $content.masonry({itemSelector: '.entry'}),
- $content.infinitescroll({
- navSelector : 'div#pagination',
- nextSelector : 'div#pagination a#nextPage',
- itemSelector : '.entry',
- loading: {
- finishedMsg: '',
- img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
- },
- bufferPx : 600,
- extraScrollPx: 700,
- debug : false,
- },
- // call masonry as a callback.
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- // ensure that images load before adding to masonry layout
- $newElems.imagesLoaded(function(){
- $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
- });
- });
- });
- </script>
- {/block:IndexPage}
- <title>{title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- <div class="wrapper">
- <div id="sidebar">
- <div id="sidepicture"><img src="{image:sidebar}" width=260px height=300px>
- <div class="side1"></div> .
- <div class="side5"><br><div id="title2">INFORMATION</div><br>{description}</br>
- </div>
- <div class="side3"></a><br><div id="title2">LINKS</div><div id="fag">
- <div class="links"><a href="{text:Link One}" class="links1">{text:Link One Title}</a></div>
- <div class="links"><a href="{text:Link Two}" class="links1">{text:Link Two Title}</a></div>
- <div class="links"><a href="{text:Link Three}" class="links1">{text:Link Three Title}</a></div>
- <div class="links"><a href="{text:Link Four}" class="links1">{text:Link four Title}</a></div>
- <div class="links"><a href="{text:Link five}" class="links1">{text:Link five Title}</a></div>
- </div></div>
- <center><br>
- <div id="blogtitle"><center><a href="/"><span id="wipe">{Title}
- </span></div>
- </div>
- </div>
- <div id="content">
- <div class="left">
- <div id="posts">
- {block:Posts}
- <div class="entry">
- {block:IndexPage}
- {/block:IndexPage}
- {block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
- <div class="permadbdbgd">
- <span class="permavffv"><a href="{permalink}">
- <span class="permaffvfv"><a href="{permalink}">{timeago} // {NoteCountWithLabel}</a></div>
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- <div class="permalink">
- <a href="{permalink}">
- <a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
- </a></a></span></div>
- {block:Link}
- {block:Photo}
- <div class="perma">
- <div class="likep">
- <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a>
- </div>
- <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="24"/></a>
- </div>
- </div>
- {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{ReblogURL}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a></div>{LinkCloseTag}{/block:IndexPage}
- {block:PermalinkPage}{LinkOpenTag}<a href="{ReblogURL}">
- <img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500"/></a>{LinkCloseTag}{/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}
- <center>
- {Photoset-400}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Photoset-500}</center>
- <div class="perma">
- <span class="permalink"><a href="{permalink}">
- <span class="permalink"><a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
- </a></a></span></div>
- {/block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}
- {Quote}</span>
- {block:Source}<strong>{Source}</strong>{/block:Source}
- <div class="permafvvffvfd">
- <span class="permalinkvfv"><a href="{permalink}">
- <span class="permalinkvfvfvvf"><a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
- </a></a></span></div>
- {/block:Quote}
- {block:Chat}
- {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><div class="permavvfdx">
- <span class="permalinkfvvff"><a href="{permalink}">
- <span class="permalinkfvff"><a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
- </a></a></span></div>
- {/block:Chat}
- {block:Audio}
- <center><div style="width:250px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
- {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
- <div class="permadffv">
- <span class="permalink"><a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
- </a></a></span></div>
- {/block:Audio}
- {block:Answer}
- <br><div style=" border: 1px solid #dadada; border: radius: 5px; margin: 3px; min-height:30px; padding: 3px; background-color: #fff; box-shadow: 0px 0px 1px 2px #dadada; font-family: pixel; font-size: 8px;">
- <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px; box-shadow: 0px 0px 0px 2px {color:first letter} border-radius: 30px;"/>
- {Asker}: {Question}<br></div>
- <br>
- {answer}
- {/block:Answer}
- {block:Video}
- {block:IndexPage}
- <center>
- {Video-400}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Video-500}</center>
- {/block:PermalinkPage}
- <div class="perma vvvc">
- <span class="permalink"><a href="{permalink}">
- <span class="permalink"><a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
- </a></a></span></div>
- {block:Video}
- {block:PermalinkPage}
- <center>
- {block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
- {/block:PermalinkPage}
- {block:PostNotes}{PostNotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </div>
- </div>
- {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>
- {/block:Pagination}
- {/block:IndexPage}
- </div>
- </body>
- </html>
- <div style="position:fixed; bottom:15px; left:10px;">
- <a href="http://biebinator.tumblr.com/">credit</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement