Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <!----
- striife theme 4
- by http://exx0.tumblr.com
- ----->
- <style> body, a, a:hover { cursor:url('http://www.dolliehost.com/dolliecrave/cursors/cursors-all/finger01.gif'), auto }</style>
- <head>
- <script type="text/javascript">
- function tb8_makeArray(n){
- this.length = n;
- return this.length;
- }
- tb8_messages = new tb8_makeArray(3);
- tb8_messages[0] = "Welcome to my world.";
- tb8_messages[1] = "Welcome to my world.";
- tb8_messages[2] = "Welcome to my world.";
- tb8_rptType = 'infinite';
- tb8_rptNbr = 5;
- tb8_speed = 100;
- tb8_delay = 2000;
- var tb8_counter=1;
- var tb8_currMsg=0;
- var tb8_tekst ="";
- var tb8_i=0;
- var tb8_TID = null;
- function tb8_pisi(){
- tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
- document.title = tb8_tekst;
- tb8_sp=tb8_speed;
- tb8_i++;
- if (tb8_i==tb8_messages[tb8_currMsg].length){
- tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
- }
- if (tb8_currMsg == tb8_messages.length){
- if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
- clearTimeout(tb8_TID);
- return;
- }
- tb8_counter++;
- tb8_currMsg = 0;
- }
- tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
- }
- tb8_pisi()
- </script>
- <noframes></noframes><noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script type='text/javascript'>
- //<![CDATA[
- var rate = 20;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- { if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB;
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- <link href='http://fonts.googleapis.com/css?family=Meddon' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Kotta+One|Bad+Script|Oleo+Script|Bilbo|Waiting+for+the+Sunrise|Just+Me+Again+Down+Here|Shadows+Into+Light+Two|Architects+Daughter|Annie+Use+Your+Telescope|Handlee|Loved+by+the+King|Kaushan+Script|Devonshire' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah|Share' rel='stylesheet' type='text/css'>
- <title>{title}</title>
- <link rel="icon" href="{Favicon}"/>
- <link href='http://fonts.googleapis.com/css?family=Delius+Unicase' rel='stylesheet' type='text/css'>
- <meta name="color:Background" content="#e6e6e6"/>
- <meta name="color:Post Box" content="#F5F5F5"/>
- <meta name="color:Title" content="#292929"/>
- <meta name="color:Text" content="#363636"/>
- <meta name="color:Link" content="#5c5c5c"/>
- <meta name="color:Hover" content="#FFF"/>
- <meta name="color:scrollbar" content="#999"/>
- <meta name="image:Background" content=""/>
- <meta name="image:Sidebar" content=""/>
- <meta name="image:Banner" content="">
- <meta name="text:Font Size" content="10" />
- <meta name="text:Line Height" content="10" />
- <meta name="if:Show Blogtitle" content="0"/>
- <meta name="if:Post Shadows" content="0" />
- <meta name="if:Banner" content="0"/>
- <meta name="if:Top Banner" content="0" />
- <meta name="if:Reblog On Hover" content="0" />
- <meta name="if:Show sidebar image" content="1"/>
- <meta name="if:Sidebar Left" content="0">
- <meta name="if:Photo Hover 1" content="0" />
- <meta name="if:Black and White" content "0" />
- <meta name="if:Sepia" content="0" />
- <meta name="if:Blur" content="0" />
- <meta name="if:Reverse Black and White" content "0" />
- <meta name="if:Reverse Sepia" content="0" />
- <meta name="if:Reverse Blur" content="0" />
- <meta name="if:Invert" content="0" />
- <meta name="if:Hue Rotate" content="0" />
- <meta name="if:Faded Images" content="0" />
- <meta name="if:360 Spin" content="0" />
- <meta name="if:360 Spin 1" content="0" />
- <meta name="if:Sidebar Image Shadow" content="1"/>
- <meta name="if:Title 1" content="1" />
- <meta name="if:Title 2" content="0" />
- <meta name="if:Title 3" content="0" />
- <meta name="if:Title 4" content="0" />
- <meta name="if:One Column" content="0" />
- <meta name="if:Two Columns Smaller" content="1" />
- <meta name="if:Two Columns Bigger" content="0" />
- <meta name="if:Three Columns" content="0" />
- <meta name="if:Four Columns" 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="" />
- <meta name="text:link Six" content="" />
- <meta name="text:link Six Title" content="" />
- <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://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" 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>
- <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- $('li.drawer div:nth-child(2)').hide();
- $('li.drawer h4').click(function () {
- if ($(this).hasClass('open')) {
- $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');}
- else {
- $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');
- $(this).next().slideDown();
- $(this).addClass('open');}
- });
- });
- </script>
- <style type="text/css">
- .links_list { margin:0px; padding:0px; width:100%;}
- .links_head { padding-top:5px; padding-bottom:5px; cursor:pointer; position:relative; margin:1px; text-align:center;}
- .links_body { padding:10px; text-align:left; display:none;}
- </style>
- <style type="text/css">
- #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: #fff;
- padding: 20px;
- border:0px solid #ddd;
- float: left;
- font-size: 1.2em;
- position: fixed;
- top: 50%; left: 50%;
- z-index: 99999;
- /*--CSS3 Box Shadows--*/
- -webkit-box-shadow: 0px 0px 20px #000;
- -moz-box-shadow: 0px 0px 20px #000;
- box-shadow: 0px 0px 20px #000;
- }
- img.btn_close {
- float: right;
- margin: -5px -5px 0 0;
- }
- /*--Making IE6 Understand Fixed Positioning--*/
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- iframe#tumblr_controls {top: 1px !important;margin: 0 0 0 0;right:4px !important;position:fixed !important; position:absolute;z-index:9999999999;}
- body{
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- font-size: {text:font size}px;
- font-family:Trebuchet MS;
- line-height:{text:line height}px;
- color:{color:Text};
- }
- {block:ifSmallscrollbar}
- ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:auto;}
- ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar};height:10px !important;}
- ::-webkit-scrollbar {height:7px; width:7px; background-color: {color:background}; background-image:url({image:Background});}
- {/block:ifSmallscrollbar}
- a:link, a:active, a:visited{
- color: {color:Link};
- text-decoration: none;
- -webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;-o-transition: all 0.6s ease-out;transition: all 0.6s ease-out;
- }
- a:hover{
- color:{color:Hover};
- text-decoration: none;
- -webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
- }
- .sidelink{font-style:italic;
- font-family: Trebuchet MS;
- font-color: {color:Text};
- text-align: left;
- padding-left:5px;
- font-size:9px; display:block;
- margin:-5px;width:auto;
- -webkit-transition: all 1.5s linear; -moz-transition: all 1.5s linear; transition: all 1.5s linear;}
- .sidelink:hover{background-color:rgba(0,0,0,0);
- style: italic;
- color:{color:Hover};
- padding-left:5px;
- margin:-5px;width:auto;
- -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
- .sidelink a:hover{color: {color:Link};
- -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
- #post{{block:iftwocolumns}width:400px;{/block:iftwocolumns}{block:ifthreecolumns}width:400px;{/block:ifthreecolumns}{block:iffourcolumns}width:300px;{/block:iffourcolumns}{block:ifonecolumn}width:500px;{/block:ifonecolumn} height:auto;}
- {block:PermalinkPage}float: left; right: 500; margin-right:153px; width: 500px;{/block:PermalinkPage}
- {block:ifRoundedEdges}
- -moz-border-radius: 3px;
- border-radius: 3px;
- {/block:ifRoundedEdges}
- }
- #sidee{
- text-align:center;
- padding-top:3px;
- padding-bottom:3px;
- position:fixed !important;
- width:00px;
- height:207px;
- {block:ifshowbox}
- background-color:transparent;
- text-align:center;
- {/block:ifshowbox}
- {block:PermalinkPage}
- text-align:left;
- margin-left:-140px;
- width:0px;
- height:207px;
- {/block:PermalinkPage}
- {block:ifRoundedEdges}
- text-align:left;
- -moz-border-radius: 3px;
- border-radius: 3px;
- {/block:ifRoundedEdges}
- }
- .perma{
- background-color:rgba(0,0,0,0.6);
- font-size:10px;
- width:auto;
- height:auto;
- padding:0px 0px 0px 0px;
- -moz-border-radius:0px; border-radius:0px;}
- #entry .otherpostsnotes{
- opacity:0;
- width:auto;
- height:12px;
- font-family:trebuchet ms;
- font-size: 10px;
- text-align:right;
- overflow:hidden;
- -webkit-transition: all .5s linear; -moz-transition: all .5s linear; transition: all 0.5s linear;}
- #entry:hover .otherpostsnotes{
- opacity:1;
- color:{color:Permalink};
- height:12px;
- margin-right:10px;
- overflow:hidden;
- -webkit-transition: all .3s linear; -moz-transition: all .3s linear; transition: all 0.3s linear; }
- {block:ifnottopbanner}
- {block:ifnottwocolumnssmaller}
- {block:ifnottwocolumnsbigger}
- {block:ifnotonecolumn}
- #musictab1 {font-family:trebuchet ms;text-shadow: 0 1px 0 #F1f1f1;height:20px;padding: 0 0 8px 0;background:#f1f1f1;text-align:center;margin-left:47.5%;margin-top:0px;border-bottom-left-radius: 5px;-moz-border-radius-bottomleft: 5px;-webkit-border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;-webkit-border-bottom-right-radius: 5px;width: 50px;position:fixed;z-index:999999999999;}
- {/block:ifnotonecolumn}
- {/block:ifnottwocolumnsbigger}
- {/block:ifnottwocolumnssmaller}
- {/block:ifnottopbanner}
- {block:ifnottopbanner}
- {block:ifnotfourcolumns}
- {block:ifnotthreecolumns}
- #side{
- {block:IfPostShadows}-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0);
- -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0);
- box-shadow: 0px 0px 12px rgba(0, 0, 0,0);{/block:IfPostShadows}
- z-index:999999999999999;
- position:absolute !important;
- position:fixed !important;
- top:200px;
- {block:ifonecolumn}
- margin-left: 500px;
- {block:ifsidebarleft}
- left:-400px;
- {/block:ifsidebarleft}
- {/block:ifonecolumn}
- {block:iftwocolumnssmaller}
- margin-left:790px;
- {block:ifsidebarleft}
- margin-left:-400px;
- {/block:ifsidebarleft}
- {/block:iftwocolumnssmaller}
- {block:iftwocolumnsbigger}
- margin-left:920px;
- {block:ifsidebarleft}
- margin-left:-330px;
- {/block:ifsidebarleft}
- {/block:iftwocolumnsbigger}
- width:200px;
- background-color: transparent;
- text-align:left;
- {block:permalinkpage}
- margin-left:505px;
- {block:ifsidebarleft}
- margin-left:-400px;
- {/block:ifsidebarleft}
- {/block:permalinkpage}
- }{/block:ifnotthreecolumns}{/block:ifnotfourcolumns}{/block:ifnottopbanner}
- #content{
- margin:auto;
- top:10px;
- padding-top:15px;
- padding-left:110px;
- position:absolute;
- {block:indexpage}
- {block:iftwocolumnssmaller}
- width:730px;
- {block:ifsidebarleft}
- margin-left:350px;
- {/block:ifsidebarleft}
- {block:iftopbanner}
- margin-top:-20px;
- margin-left:200px;
- {/block:iftopbanner}
- top:20px;
- left:40px;
- {/block:iftwocolumnssmaller}
- {block:iftwocolumnsbigger}
- width:900px;
- {block:ifsidebarleft}
- margin-left:250px;
- {/block:ifsidebarleft}
- {block:iftopbanner}
- margin-top:-20px;
- margin-left:135px;
- {/block:iftopbanner}
- {/block:iftwocolumnsbigger}
- {block:ifthreecolumns}
- width:1140px;
- {block:iftopbanner}
- margin-top:-40px;
- {/block:iftopbanner}
- top:30px;
- left:30px;
- {/block:ifthreecolumns}
- {block:iffourcolumns}
- width:1140px;
- {block:iftopbanner}
- margin-top:-40px;
- {/block:iftopbanner}
- left:25px;
- top:30px;
- {/block:iffourcolumns}
- {block:ifonecolumn}
- {block:iftopbanner}
- margin-top:-20px;
- margin-left:30px;
- {/block:iftopbanner}
- width:405px;
- left:370px;
- {block:ifsidebarleft}
- left:450px;
- {/block:ifsidebarleft}
- {/block:ifonecolumn}
- {/block:indexpage}
- {block:permalinkpage}
- width:680px;
- left:205px;
- top:20px;
- {/block:iftopbanner}
- {block:ifsidebarleft}
- left:400px;
- {/block:ifsidebarleft}
- {/block:permalinkpage}
- overflow:auto;
- overflow-y:auto;
- }
- #posts{
- float:left;
- {block:indexpage}
- {block:iftwocolumnssmaller}
- width:832px;
- {/block:iftwocolumnssmaller}
- {block:iftwocolumnsbigger}
- width:1005px;
- {/block:iftwocolumnsbigger}
- {block:ifthreecolumns}
- width:1242px;
- {/block:ifthreecolumns}
- {block:iffourcolumns}
- width:1240px;
- {/block:iffourcolumns}
- {block:ifonecolumn}
- width:100px;
- {/block:ifonecolumn}
- {/block:indexpage}
- {block:permalinkpage}
- width:550px;
- {/block:permalinkpage}
- margin-left:-105px;
- }
- #entry:hover #reblog1{
- {block:IndexPage}
- z-index:999999;
- opacity:1;-webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;transition: all 0.6s ease-out;
- {/block:IndexPage}
- z-index:999999;
- }
- #reblog1{
- width:250px;
- margin-left: 50px;
- margin-top: 15%;
- opacity:0;
- float:left;
- z-index:999999;
- position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
- #entry:hover #reblog2{
- {block:IndexPage}
- opacity:1;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
- {/block:IndexPage}
- }
- #reblog2{
- z-index:99999999999;
- width:22px;
- float:right;
- margin-left:10px;
- margin-top:8px;
- position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
- #permalink1 {
- position: absolute;
- margin-top: 11px;
- margin-left: 50px;
- opacity: 0;
- z-index:999999;
- -webkit-transition: all .3s ease;
- -moz-transition: all .3s ease;
- -o-transition: all .3s ease;
- transition: all .3s ease;
- }
- #entry:hover #permalink1 {
- width:11px;
- margin-top: 11px;
- margin-left: 57px;
- opacity: 1;
- z-index:999999;
- }
- .countreblog {
- color: #FFFFFF;
- letter-spacing:1px;
- font-family:10px arial;
- font-size:;
- line-height:14px;
- margin: 2px;
- background-image:url(http://static.tumblr.com/8jq17g7/CH8lofvyp/dark-transparent.png);
- background-repeat:repeat;
- border:1px solid rgba(0,0,0,0.1);
- padding:3px 5px;
- -webkit-border-radius:2px;
- moz-border-radius:2px;
- -o-border-radius:2px;
- border-radius:2px;
- z-index:999999;
- }
- .countreblog a { color: #fff; }
- #entry:hover #reblog{
- {block:IndexPage}
- z-index:999999;
- opacity:1;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
- {/block:IndexPage}
- }
- #reblog{
- width:24px;
- float:right;
- opacity:.8;
- z-index:999999;
- margin-left:5px;
- margin-top:11px;
- position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
- #entry:hover #reblog{
- {block:IndexPage}
- z-index:999999;
- opacity:1;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
- {/block:IndexPage}
- }
- #reblog{
- width:24px;
- float:right;
- opacity:.8;
- z-index:999999;
- margin-left:5px;
- margin-top:11px;
- position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
- #permalink2 {
- position: absolute;
- margin-top: 12px;
- margin-left: 50px;
- opacity: 0;
- -webkit-transition: all .3s ease;
- -moz-transition: all .3s ease;
- -o-transition: all .3s ease;
- transition: all .3s ease;
- z-index:999999;
- }
- #entry:hover #permalink2 {
- width:11px;
- margin-top: 12px;
- right: 15px;
- opacity: 1;
- z-index:999999;
- }
- #entry #likep {
- width: 21px;
- height: 20px;
- overflow: hidden;
- z-index: 9999999;
- display: inline-block;
- margin-top:-4px;
- margin-right:10px;
- z-index:999999;
- }
- #entry #likep a:hover {
- background-position: 0px 0px;
- }
- #entry #likep a {
- background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
- background-position: 0px 0px;
- display: block;
- z-index: 9999999;
- }
- #entry #likep img {
- width: 21px;
- height: 20px;
- z-index:999999;
- }
- #entry{
- z-index:9; float: left;{block:iftwocolumnssmaller}width:400px;{/block:iftwocolumnssmaller}{block:iftwocolumnsbigger}width:500px;{/block:iftwocolumnsbigger}{block:ifthreecolumns}width:400px;{/block:ifthreecolumns}{block:iffourcolumns}width:300px;{/block:iffourcolumns}{block:ifonecolumn}width:500px;{/block:ifonecolumn}height: 281px; /* M1nistry */ padding: 4px;
- {block:ifpostshadows}
- -moz-box-shadow: 0 0 10px #000; -webkit-box-shadow: 0 0 10px #000;
- box-shadow: 0 0 10px #000000;{/block:ifpostshadows}
- {block:PermalinkPage}
- width: 500px;
- {/block:PermalinkPage}
- right:500px;
- line-height:{text:line height}px;
- background-color:{color:Post Box};
- padding:0px;
- padding-bottom: 1px;
- margin-right:2px;
- overflow:hidden;
- margin-bottom:0px;
- {block:ifpostshadows}
- padding:2px;
- margin-right:5px;
- overflow:hidden;
- margin-bottom:5px;{/block:ifpostshadows}}
- #perma1{
- text-align:right;
- margin-top:-5px;
- }
- #permapage{
- font-family: Trebuchet MS;
- font-size: 9px;
- text-align: left;
- padding-bottom:10px;
- margin-bottom: 8px;
- z-index:9999;}
- #notes{
- {block:permalinkpage}
- display:block;
- width:700px;
- left:-50px;
- float: left;
- padding:10px;
- overflow:visible;
- z-index:9999999;
- margin-top: 10px;
- outline:1px solid rgba(0, 0, 0, .1);
- border:2px solid rgba(0, 0, 0, .05);
- text-align: left;{/block:permalinkpage}
- }
- iframe#tumblr_controls{position:fixed !important;
- }
- .title{
- font-family: Trebuchet MS;
- font-size: 12px;
- line-height: 12px;
- color: {color:Title};
- font-weight: normal;
- letter-spacing: 0px;
- -webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;-o-transition: all 0.6s ease-out;transition: all 0.6s ease-out;
- }
- .answer_portrait {width:25px;height:25px;}
- .answer_portrait img{width:25px;height:25px;display: block;}
- .padd {margin-left:5px;}
- .answer {margin-left:-35px;border-top:1px solid rgba(0,0,0,0.1);padding-top:-10px;margin-top:10px;}
- .blogtitle {
- {block:iftitle1}
- font-family: 'kaushan script';
- {/block:iftitle1}
- {block:iftitle2}
- font-family: 'bad script';
- {/block:iftitle2}
- {block:iftitle3}
- font-family: 'shadows into light two';
- {/block:iftitle3}
- {block:iftitle4}
- font-family: 'gloria hallelujah';
- {/block:iftitle4}
- margin-top:0px;
- font-weight:40;
- font-style:none;
- color:{color:Title};
- font-size:50px;
- {block:ifShowsidebarimage}font-size:50px;{/block:ifShowsidebarimage}
- line-height:10px;
- -webkit-transition: 0.5s ease-in;
- -webkit-text-stroke: 15px transparent;
- line-height:5px;
- text-align:left;
- text-decoration:none;
- letter-spacing:-3px;
- text-transform:normal;
- margin-bottom:10px;
- text-align:center;
- width:{text:Width}px;
- margin-top:20px;
- background-color:transparent;}
- .cred {
- background:{color:Post Box};
- color: {color:Text};
- z-index: 555;
- padding: 8px;
- -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
- -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
- box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
- }
- .cred a{
- background: {color:Post Box};
- color: {color:Link};
- z-index: 555;
- }
- #topbanner{
- margin-top:30px;
- margin-left:31%;
- width:300px;
- {block:ifonecolumn}
- margin-left:-20px;
- {/block:ifonecolumn}
- {block:iftwocolumnssmaller}
- margin-left:150px;
- {/block:iftwocolumnssmaller}
- {block:iftwocolumnsbigger}
- margin-left:250px;
- {/block:iftwocolumnsbigger}
- {block:permalinkpage}
- {block:ifnotonecolumn}
- margin-left:-20px;
- {/block:ifnotonecolumn}
- {/block:permalinkpage}
- }
- .title:hover{
- color:{color:Hover};
- -webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
- }
- .permalinktext{
- font-family: Trebuchet MS;
- padding: 5px;
- position: absolute;
- text-align: left;
- width: 200px;
- -moz-transition: 0.3s ease-out;
- -webkit-transition: 0.3s ease-out;
- transition: 0.3s ease-out;
- opacity:0;
- }
- .permalinktext a{color:{color:links};
- }
- .entry:hover .permalinktext {
- -moz-transition: 0.3s ease-out;
- -webkit-transition: 0.3s ease-out;
- transition: 0.3s ease-out;
- width:200px;
- text-decoration:line-through;
- height:auto;
- display: block;
- opacity: 1;
- }
- {block:ifblackandwhite}
- {block:indexpage}
- #entry img{
- -webkit-filter: grayscale(0);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: grayscale(0.7);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifblackandwhite}
- {block:ifreverseblackandwhite}
- {block:indexpage}
- #entry img{
- -webkit-filter: grayscale(0.7);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: grayscale(0);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifreverseblackandwhite}
- {block:ifsepia}
- {block:indexpage}
- #entry img{
- -webkit-filter: sepia(0);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: sepia(0.7);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifsepia}
- {block:ifreversesepia}
- {block:indexpage}
- #entry img{
- -webkit-filter: sepia(0.7);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: sepia(0);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifreversesepia}
- {block:ifblur}
- {block:indexpage}
- #entry img{
- -webkit-filter: blur(0);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: blur(1.5px);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifblur}
- {block:ifreverseblur}
- {block:indexpage}
- #entry img{
- -webkit-filter: blur(1px);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: blur(0px);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifreverseblur}
- {block:iffadedimages}
- {block:indexpage}
- #entry img{
- -webkit-filter: opacity(1);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: opacity(0.7);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:iffadedimages}
- {block:ifreversefadedimages}
- {block:indexpage}
- #entry img{
- -webkit-filter: opacity(0.7);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: opacity(1);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifreversefadedimages}
- {block:ifhuerotate}
- {block:indexpage}
- #entry img{
- -webkit-filter: hue-rotate(0deg);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: hue-rotate(360deg);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifhuerotate}
- {block:ifinvert}
- {block:indexpage}
- #entry img{
- -webkit-filter: invert(0);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-filter: invert(1);
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- {/block:indexpage}
- {/block:ifinvert}
- {block:if360spin}
- {block:indexpage}
- #entry img{
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;
- }
- #entry img:hover{
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;
- -webkit-transform: rotate(360deg);
- -moz-transform: rotate(360deg);
- }
- {/block:indexpage}
- {/block:if360spin}
- {block:if360spin1}
- {block:indexpage}
- #entry img{
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;}
- #entry img:hover{
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;
- -webkit-transform: rotateY(360deg);;
- -moz-transform: rotateY(360deg);;
- {/block:indexpage}
- {/block:if360spin1}
- blockquote{
- padding:0px 0px 2px 3px;
- margin:0px 0px 2px 1px;
- }
- 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:{color:Title};
- }
- a.links {
- font-family: Arial;
- font-size: 10px;
- line-height: 9px;
- 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;
- }
- ul#drawers {width: 100px; list-style: none; margin: 0 auto; padding: 0px; border-top: 0px; color: #000;}
- ul#drawers a {text-decoration: none; color: #000;}
- ul#drawers li h4 {margin: 0; padding: 0px; text-transform: Camelcase; font-size: 10px; text-align: center; background-color: #363835; background: rgba(255, 255, 255, 0.0); -webkit-transition: background-color 0.2s ease-out; -moz-transition: background-color 0.2s ease-out;
- transition: background-color 0.2s ease-out;}
- h4.small {display: table-cell; width: 100px; margin: 0px; height: 100%;}
- li.drawer h4.open {background-color: ; border-top: 0px;}
- li.drawer div {padding: 0px; margin: 0px; line-height: 10px; background-color: #363835; background: rgba(255, 255, 255, 0.0);}
- li.drawer div li {list-style-type: disc;}
- li.drawer div ul {-webkit-padding-start: 12px;}
- </style>
- <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
- {block:ifBackToTopButton}<script type="text/javascript">
- $(document).ready(function() {
- $('a[href=#top]').click(function(){
- $('html, body').animate({scrollTop:0}, 'slow');
- return false;
- });
- });
- </script>{/block:ifBackToTopButton}
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=720" />
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-26724983-1']);
- _gaq.push(['_trackPageview']);
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
- </script>
- </head>
- <body>
- <script src="path/to/js/jquery.js"></script>
- <script type="text/javascript">
- $(function() {
- $(window).scroll(function() {
- if($(this).scrollTop() != 0) {
- $('#sidebar').fadeIn();
- } else {
- $('#sidebar').fadeOut();
- }
- });
- $('#sidebar').click(function() {
- $('body,html').animate({scrollTop:0},800);
- });
- });
- </script>
- {block:ifnottopbanner}
- {block:ifnotonecolumn}
- {block:ifnottwocolumnssmaller}
- {block:ifnottwocolumnsbigger}
- <div id="musictab1"><br><a href="#?w=500" rel="04" class="poplight">Info</a></div>
- {/block:ifnottwocolumnsbigger}
- {/block:ifnottwocolumnssmaller}
- {/block:ifnotonecolumn}
- {/block:ifnottopbanner}
- <div id="content">
- <div id="sidee">
- {block:ifnottopbanner}
- {block:ifnotthreecolumns}
- {block:ifnotfourcolumns}
- <div id="side">
- {block:ifbanner}
- <a href="/"><img src="{image:banner}" width="200px"></a>{/block:ifbanner}
- {block:ifshowblogtitle}
- <div class="blogtitle"><a href="/">{title}</a></div><br><br>{/block:ifshowblogtitle}
- {block:ifshowsidebarimage}
- <a href="/"><img src="{image:sidebar}" width="200px"></a>{/block:ifshowsidebarimage}<br><br>
- <center>{description}<Br><br>
- <a href="{text:link one}">{text:link one title}</a>
- <a href="{text:link two}">{text:link two title}</a>
- <a href="{text:link three}">{text:link three title}</a>
- <a href="{text:link four}">{text:link four title}</a>
- <a href="{text:link five}">{text:link five title}</a>
- <a href="{text:link six}">{text:link six title}</a></center>
- {/block:ifnotfourcolumns}
- {/block:ifnotthreecolumns}
- {/block:ifnottopbanner}
- {block:iftopbanner}
- <div id="topbanner">
- <center>
- {block:ifbanner}
- <a href="/"><img src="{image:banner}" width="300px"></a>{/block:ifbanner}
- {block:ifshowblogtitle}
- <div class="blogtitle"><a href="/">{title}</a></div>{/block:ifshowblogtitle}<Br><Br>
- {description}<Br><br>
- <a href="{text:link one}">{text:link one title}</a>
- <a href="{text:link two}">{text:link two title}</a>
- <a href="{text:link three}">{text:link three title}</a>
- <a href="{text:link four}">{text:link four title}</a>
- <a href="{text:link five}">{text:link five title}</a>
- <a href="{text:link six}">{text:link six title}</a></div><Br>{/block:iftopbanner}
- </center>
- <div style="padding-top:0px; padding-bottom:0px;">
- <div align="center">
- <span style="position: relative;">
- </span></div>
- </div>
- <div style="padding:0px;">
- <center>
- {block:HasPages}{block:Pages}<a href="{URL}" class="nav">{Label}</A>{/block:Pages}{/block:HasPages}
- </center>
- <div id="pages">
- <div align="center">
- {block:ifNotInfiniteScroll}{block:PreviousPage}<a class="jump_page" href="{PreviousPage}">«</a>{/block:PreviousPage}
- {block:JumpPagination length="5"}
- {block:CurrentPage}<span class="current_page"><i>{PageNumber}</i></span>{/block:CurrentPage}
- {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
- {/block:JumpPagination}
- {block:NextPage}<a class="jump_page" href="{NextPage}">»</a>{/block:NextPage}{/block:ifNotInfiniteScroll}
- </div></div>
- </div></div>
- {block:ifBackToTopButton}<div class="top">
- <a href="#top">Top</a></div>{/block:ifBackToTopButton}
- <div align="left">
- <div id="posts">
- {block:Posts}
- <div id="entry">
- {block:Photo}
- {block:IndexPage}
- {block:ifreblogonhover}
- <div id="reblog2"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/wwdkx8w/cH6lsbsa3/reblogbutton.png" width="22px"/></a></div>
- {/block:ifreblogonhover}
- {block:ifphotohover1}
- <div id="reblog"><span class="countreblog"><a href="{reblogurl}" target="_blank">Reblog</a></span></div>
- <div id="permalink1">
- <span class="countreblog"><a href="{Permalink}">{NoteCount}</a></span></div>
- <div id="permalink2">
- <div id="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>
- {/block:ifphotohover1}
- {/block:IndexPage}
- {block:IndexPage}{LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" style="height: 300px; padding-bottom: 1px;" {block:iftwocolumnssmaller}width=400px;{/block:iftwocolumnssmaller}{block:iftwocolumnsbigger}width=500px;{/block:iftwocolumnsbigger}{block:ifthreecolumns}width=400px;{/block:ifthreecolumns}{block:iffourcolumns}width=300px;{/block:iffourcolumns}{block:ifonecolumn}width=500px;{/block:ifonecolumn}/></a>{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/>{/block:PermalinkPage}{/block:Photo}
- {block:Photoset}
- {block:indexpage}{block:ifonecolumn}{photoset-500}{/block:indexpage}{/block:ifonecolumn}
- {block:iftwocolumnssmaller}{block:indexpage}{photoset-400}{/block:indexpage}{/block:iftwocolumnssmaller}
- {block:iftwocolumnsbigger}{block:indexpage}{photoset-500}{/block:indexpage}{/block:iftwocolumnsbigger}
- {block:ifthreecolumns}{block:indexpage}{photoset-400}{/block:indexpage}{/block:ifthreecolumns}
- <center>{block:iffourcolumns}{block:indexpage}{photoset-250}{/block:indexpage}{/block:iffourcolumns}</center>
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- {block:permalinkpage}{photoset-500}{/block:permalinkpage}
- {/block:Photoset}
- {block:Text}
- {block:Title}
- <a href="{permalink}"><span class="title">{Title}</span></a>
- {/block:Title}
- <span class="entrytext" style="line-height:12px;">{Body}</span>
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- {block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}
- {block:BlogDescription}<span class="entrytext" style="line-height:12px;">{Description}</span>{/block:BlogDescription}</a>
- {block:Caption}<a href="{URL}">{Caption}</a>{/block:Caption}<div style="padding-top:0px; padding-bottom:3px;"></a></div>
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- {/block:Link}
- {block:Quote}
- <span class="title" style="line-height:16px; font-style: italic;">"{Quote}"</span><br><br>
- <div style="text-align: left; padding-right:0px;"><a href="{Permalink}">{block:Source}
- -{Source}
- {/block:Source}</a>{block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- </div>
- {/block:Quote}
- {block:Chat}
- <a href="{permalink}">{block:Title}<span class="title">{Title}</span>{/block:Title}</a>
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label" style="line-height:12px;">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- </ul>
- {block:Caption}{Caption}{/block:Caption}
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}{/block:IndexPage}
- </div>
- {/block:Chat}
- {block:Audio}
- <div class="player">{AudioPlayerBlack}</div>
- {block:Caption}{Caption}{/block:Caption}
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- {/block:Audio}
- {block:Answer}
- <table width="100%" border="0px" cellpadding="0" cellspacing="0">
- <tbody style="border-spacing: 0px;">
- <td width="30px" style="vertical-align: top; width: 30px; padding: 0px;">
- <span class="answer_portrait"><img class="answer_portrait" src="{AskerPortraitURL-30}"/></span></td><td>
- <div class="padd" width="100%" style="margin-left:;">
- {Asker} asked:<br>
- {Question}<br><div class="answer"><div class="text"><em>{Answer}</em></div></div><br>
- </div></td></tr></tbody></table>
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- {/block:Answer}
- {block:Video}
- {block:indexpage}{block:ifonecolumn}{video-500}{/block:indexpage}{/block:ifonecolumn}
- {block:iftwocolumnssmaller}{block:indexpage}{video-400}{/block:indexpage}{/block:iftwocolumnssmaller}
- {block:iftwocolumnsbigger}{block:indexpage}{video-500}{/block:indexpage}{/block:iftwocolumnsbigger}
- {block:ifthreecolumns}{block:indexpage}{video-400}{/block:indexpage}{/block:ifthreecolumns}
- <center>{block:iffourcolumns}{block:indexpage}{video-250}{/block:indexpage}{/block:iffourcolumns}</center>
- {block:IndexPage}<div class="otherpostsnotes">
- <a href="{Permalink}">{notecountwithlabel}</a>
- {/block:Date}</div>{/block:IndexPage}
- {block:permalinkpage}{video-500}{/block:permalinkpage}
- {/block:Video}
- {block:PermalinkPage}
- {block:Date}<div id="post" >
- <div class="permalink">
- {block:Caption}{Caption}<div style="height:1px;background-color:black;opacity:0.1;width:100%;margin-top:5px;margin-bottom:10px;"></div>{/block:Caption}
- {block:NoteCount}<font color="{color:link}">{NoteCountWithLabel}</font><br>{/block:NoteCount}
- Posted on <font color="{color:link}">{DayOfWeek}, {DayOfMonth} {Month}</font><br>
- {block:RebloggedFrom}
- Via: <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
- Posted by: <a href="{ReblogRootURL}">{ReblogRootName}</a><br>
- {/block:RebloggedFrom}
- {block:Source}Source: {Source}<br>{/block:Source}
- <div style="height:1px;background-color:black;opacity:0.1;width:100%;margin-top:8px;margin-bottom:10px;"></div>
- </div></div>{/block:Date}
- <br><br>
- <div align="left">
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- </div>
- </div>
- {/block:PermalinkPage}
- </div>
- {/block:Posts}
- </div>
- </div>
- </div>
- </center>
- </div>
- </div>
- {block:indexpage}
- {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/bswe8t6/UFVlryaq2/jquerymsnryv2.js"></script>
- <script type="text/javascript">
- $(window).load(function(){
- var $wall = $('#posts');
- $wall.imagesLoaded(function(){
- $wall.masonry({
- itemSelector: '#entry, #entry_photo',
- isAnimated : false
- });
- });
- $wall.infinitescroll({
- navSelector : '#page-nav',
- nextSelector : '#page-nav a',
- itemSelector : '#entry, #entry_photo',
- bufferPx : 2000,
- debug : false,
- errorCallback: function() {
- $('#infscr-loading').fadeOut('normal');
- }},
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- $newElems.imagesLoaded(function(){
- $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
- });
- }); $('#content').show(500);
- });
- </script>
- {/block:indexpage}
- <div style="position:fixed;bottom:0px;right:4px;">
- <a href="http://exx0.tumblr.com">(C)</a></div>
- <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/UYAm6i0bc/like.js"></script>
- </body>
- {block:ifnotonecolumn}
- {block:ifnottwocolumnssmaller}
- {block:ifnottwocolumnsbigger}
- <div id="04" class="popup_block"><Center><div class="blogtitle"><a href="/">{title}</a></div><br><br>
- {description}<br><br>
- <a href="{text:link one}">{text:link one title}</a>
- <a href="{text:link two}">{text:link two title}</a>
- <a href="{text:link three}">{text:link three title}</a>
- <a href="{text:link four}">{text:link four title}</a>
- <a href="{text:link five}">{text:link five title}</a>
- <a href="{text:link six}">{text:link six title}</a>
- </center></div></div></div></div></div></div></div></div></div></div></div>
- {/block:ifnottwocolumnsbigger}
- {/block:ifnottwocolumnssmaller}
- {/block:ifonecolumn}
- </html>
Advertisement
Add Comment
Please, Sign In to add comment