Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- █▀▀▄ █▀▀█ █░░█ █░░█ ▀▀█▀▀ █░░█ █▀▀ █▀▄▀█ █▀▀ █▀▀
- █▀▀▄ █▄▄▀ █░░█ █▀▀█ ░░█░░ █▀▀█ █▀▀ █░▀░█ █▀▀ ▀▀█
- ▀▀▀░ ▀░▀▀ ░▀▀▀ ▀░░▀ ░░▀░░ ▀░░▀ ▀▀▀ ▀░░░▀ ▀▀▀ ▀▀▀
- -->
- <html lang="en">
- <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:90,
- tip_fade_speed:600,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- {block:ifpixiecursor}
- <script type="text/javascript">
- // <![CDATA[
- var colour="#fff"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=60;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-13 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var tiny=new Array();
- var star=new Array();
- var starv=new Array();
- var starx=new Array();
- var stary=new Array();
- var tinyx=new Array();
- var tinyy=new Array();
- var tinyv=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, rats, rlef, rdow;
- for (var i=0; i<sparkles; i++) {
- var rats=createDiv(3, 3);
- rats.style.visibility="hidden";
- rats.style.zIndex="999";
- document.body.appendChild(tiny[i]=rats);
- starv[i]=0;
- tinyv[i]=0;
- var rats=createDiv(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- rats.style.zIndex="999";
- var rlef=createDiv(1, 5);
- var rdow=createDiv(5, 1);
- rats.appendChild(rlef);
- rats.appendChild(rdow);
- rlef.style.top="2px";
- rlef.style.left="0px";
- rdow.style.top="0px";
- rdow.style.left="2px";
- document.body.appendChild(star[i]=rats);
- }
- set_width();
- sparkle();
- }}
- function sparkle() {
- var c;
- if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- ox=x;
- oy=y;
- for (c=0; c<sparkles; c++) if (!starv[c]) {
- star[c].style.left=(starx[c]=x)+"px";
- star[c].style.top=(stary[c]=y+1)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
- star[c].style.visibility="visible";
- starv[c]=50;
- break;
- }
- }
- for (c=0; c<sparkles; c++) {
- if (starv[c]) update_star(c);
- if (tinyv[c]) update_tiny(c);
- }
- setTimeout("sparkle()", 40);
- }
- function update_star(i) {
- if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
- if (starv[i]) {
- stary[i]+=1+Math.random()*3;
- starx[i]+=(i%5-2)/5;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- star[i].style.left=starx[i]+"px";
- }
- else {
- star[i].style.visibility="hidden";
- starv[i]=0;
- return;
- }
- }
- else {
- tinyv[i]=50;
- tiny[i].style.top=(tinyy[i]=stary[i])+"px";
- tiny[i].style.left=(tinyx[i]=starx[i])+"px";
- tiny[i].style.width="2px";
- tiny[i].style.height="2px";
- tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
- star[i].style.visibility="hidden";
- tiny[i].style.visibility="visible"
- }
- }
- function update_tiny(i) {
- if (--tinyv[i]==25) {
- tiny[i].style.width="1px";
- tiny[i].style.height="1px";
- }
- if (tinyv[i]) {
- tinyy[i]+=1+Math.random()*3;
- tinyx[i]+=(i%5-2)/5;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- tiny[i].style.left=tinyx[i]+"px";
- }
- else {
- tiny[i].style.visibility="hidden";
- tinyv[i]=0;
- return;
- }
- }
- else tiny[i].style.visibility="hidden";
- }
- document.onmousemove=mouse;
- function mouse(e) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)=='number' && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height+"px";
- div.style.width=width+"px";
- div.style.overflow="hidden";
- return (div);
- }
- function newColour() {
- var c=new Array();
- c[0]=255;
- c[1]=Math.floor(Math.random()*256);
- c[2]=Math.floor(Math.random()*(256-c[1]/2));
- c.sort(function(){return (0.5 - Math.random());});
- return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
- }
- // ]]>
- </script>
- {/block:ifpixiecursor}
- <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"></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 type="text/javascript">
- <!--
- // Disable Right Click Script
- function IE(e)
- {
- if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
- {
- return false;
- }
- }
- function NS(e)
- {
- if (document.layers || (document.getElementById && !document.all))
- {
- if (e.which == "2" || e.which == "3")
- {
- return false;
- }
- }
- }
- document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
- //-->
- </script>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <link href="http://static.tumblr.com/eih4pta/Flam72cb8/animate-custom__1_.css";; rel="stylesheet">
- <!--DEFAULT VARIABLES-->
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#000"/>
- <meta name="color:link" content="#777"/>
- <meta name="color:text" content="#fff"/>
- <meta name="color:title" content="#333"/>
- <meta name="color:sidebar text" content="#fff"/>
- <meta name="color:hover" content="#fff"/>
- <meta name="image:sidebar" content="1"/>
- <meta name="image:background" content="1"/>
- <meta name="if:banner" content="1"/>
- <meta name="if:updatestab" content="1"/>
- <meta name="if:pixiecursor" content="1"/>
- <meta name="if:3column" content="0"/>
- <meta name="if:2column" content="0"/>
- <meta name="if:1column" content="0"/>
- <meta name="text:link one" content="/"/>
- <meta name="text:link one title" content="link"/>
- <meta name="text:link two" content="/"/>
- <meta name="text:link two title" content="link"/>
- <meta name="text:link three" content="/"/>
- <meta name="text:link three title" content="link"/>
- <meta name="text:link four" content="/"/>
- <meta name="text:link four title" content="link"/>
- <meta name="text:link five" content="/"/>
- <meta name="text:link five title" content="link"/>
- <meta name="text:link six" content="/"/>
- <meta name="text:link six title" content="link"/>
- <style type="text/css">
- .popup_block{
- display:none;
- background:#fff;
- padding:20px;
- border:1px solid #000; /* if you want a solid white pop-up, delete this */
- float:left;
- position:fixed;
- top:50%;left:50%;
- border-radius:5px;
- z-index: 99999;
- color:black;
- -webkit-animation: flipInY 2s;
- -moz-animation: flipInY 2s;
- -ms-animation: flipInY: 2s;
- }
- *html #fade {position: absolute;}
- *html .popup_block {position: absolute;}
- #fade {
- display:none;
- position:fixed;
- left:0px;
- top:0px;
- width:100%;
- height:100%;
- color:black;
- z-index:9999;
- opacity:0.5; /* change to opacity:1; */
- }
- blockquote img{ width:180px; }
- #s-m-t-tooltip {
- max-width:500px;
- padding:3px;
- border-radius:0px;
- margin:20px 0px 0px 20px;
- background: white;
- box-shadow:3px 3px white;
- border:3px double black;
- letter-spacing: 1px;
- color: black;
- font-size:10px;
- font-family:calibri;
- -webkit-animation: shake 3s;
- -moz-animation: shake 3s;
- -ms-animation: shake 3s;
- z-index:999999999999999999999999999999999999;
- }
- iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.05;-webkit-transition: all 0.8s ease-out;-moz-
- transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
- iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
- p {
- margin:0px;
- margin-top:0px;
- }
- body {
- padding: 0px;
- margin: 0px;
- color:{color:text};
- font-family: calibri;
- line-height:15px;
- font-size:11px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- }
- a:link, a:active, a:visited{
- text-decoration: none;
- -webkit-transition: color 0.3s ease-out;
- -moz-transition: color 0.3s ease-out;
- transition: color 0.3s ease-out;
- color:{color:link};
- }
- a:hover {
- text-decoration: none;
- font-style:;
- color: {color:Hover};
- }
- div#center{
- margin:auto;
- position:relative;
- width:1000px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- /*CUSTOMIZE ENTRY SETTINGS HERE*/
- .entry {
- float:left;
- display: block;
- margin:15px;
- overflow:hidden;
- width:196px;
- padding:2px;
- border:1px solid #fff;
- margin-left:30px;
- margin-top:30px;
- {block:if3column}
- width:210px;
- {/block:if3column}
- {block:if2column}
- width:240px;
- {/block:if2column}
- {block:if1column}
- width:280px;
- {/block:if1column}
- {block:PermalinkPage}
- width:450px;
- text-align:left;
- line-height:15px;
- {/block:PermalinkPage}
- background-image:URL();
- -webkit-transition: 1s ease-in-out;
- -moz-transition: 1s ease-in-out;
- -o-transition: 1s ease-in-out;
- }
- .entry:hover{
- {block:Indexpage}
- -webkit-transform: scale(1.2);
- -moz-transform: scale(1.2);
- -o-transform: scale(1.2) ;
- -ms-transform: scale(1.2);
- transform: scale(1.2) ;
- -webkit-transition: 1s ease-in-out;
- -moz-transition: 1s ease-in-out;
- -o-transition: 1s ease-in-out;
- z-index: 9999999999999999999;
- {/block:Indexpage}
- }
- /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
- .entry .perma{
- width:19px;
- height:20px;
- margin-left:5px;
- position: absolute;
- line-height: 26px;
- overflow:hidden;
- text-align:center;
- top:5px;
- background:black;
- word-spacing:2px;
- border-radius:100%;
- padding:4px;
- letter-spacing:1px;
- opacity: 0.0;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- .entry:hover .perma{
- overflow:visible;
- opacity:1;
- }
- .entry .perma2{
- width:19px;
- height:20px;
- margin-left:35px;
- position: absolute;
- line-height: 26px;
- overflow:hidden;
- text-align:center;
- top:5px;
- background:black;
- word-spacing:2px;
- border-radius:100%;
- padding:4px;
- letter-spacing:1px;
- opacity: 0.0;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- .entry:hover .perma2{
- overflow:visible;
- opacity:1;
- }
- .entry .perma3{
- width:auto;
- height:15px;
- margin-left:65px;
- position: absolute;
- line-height: 16px;
- overflow:hidden;
- text-align:center;
- top:7px;
- color:#fff;
- background:black;
- word-spacing:2px;
- border-radius:4px;
- padding:4px;
- letter-spacing:1px;
- opacity: 0.0;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- .perma3 a{
- color:#fff;
- }
- .entry:hover .perma3{
- overflow:visible;
- opacity:1;
- }
- #ocehans1{
- border-radius:100%;
- padding:2px;
- height:20px;
- background:white;
- font-family:arial;
- font-size:10px;
- line-height: 12px;
- position:fixed;
- text-align:center;
- padding:7px;
- border:1px solid #f7f7f7;
- position:fixed;
- margin-top:10px;
- margin-left:8px;
- width:20px;
- overflow:hidden;
- z-index:98;
- -webkit-transition:opacity 0.7s ease-in; opacity:1.0;
- -webkit-transition:all 0.7s ease-in;
- -moz-transition:all 0.7s ease-in;
- transition:all 0.7s ease-in;
- }
- div#ocehans1:hover {
- height:220px;
- width:130px;
- border-radius:0%;
- -webkit-transition:opacity 0.7s ease-in; opacity:1.0;
- -webkit-transition:all 0.7s ease-in;
- -moz-transition:all 0.7s ease-in;
- transition:all 0.7s ease-in;
- }
- askk{
- font-size:24px;
- font-family: 'Sacramento', cursive;
- color:white;
- line-height:22px;
- }
- /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
- #posts {
- width:1100px;
- margin-top:-10px;
- {block:ifbanner}
- margin-top:50px;
- {/block:ifbanner}
- z-index:99;
- margin-left:-10px;
- {block:if3column}
- width:800px;
- margin-left:100px;
- {/block:if3column}
- {block:if2column}
- width:700px;
- margin-left:180px;
- {/block:if2column}
- {block:if1column}
- width:400px;
- margin-left:320px;
- {/block:if1column}
- right:auto;
- background:transparent;
- margin-right:auto;
- position:relative;
- overflow-y: hidden;
- }
- /*CUSTOMIZE SIDEBAR HERE*/
- #sidebar{
- position:relative !important;
- width:415px;
- background:transparent;
- height:auto;
- margin-top:80px;
- font-family:consolas;
- margin-left:295px;
- text-align:center;
- color:{color:sidebar text};
- font-size:11px;
- }
- #sidebar a{
- padding:5px;
- margin-left:1px; margin-right:1px;
- color:#000;
- border:3px double black;
- background:white;}
- *, body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), auto;}
- #blogtitle{
- font-family:georgia;
- font-size:25px;
- color:{color:sidebar text};
- opacity:1;
- margin-top:-20px;
- z-index:99;
- line-height:30px;
- text-align:center;
- text-transform:none;
- font-style:italic;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- #ireverent2 {
- position:fixed;
- z-index:999;
- padding:13px;
- position:fixed;
- font-size:11px;
- text-align:left;
- line-height:12px;
- position:fixed;
- margin-left:8px;
- margin-top:17px;
- color:#999999;
- width:40px;
- border-radius:100%;
- border:1px solid #fff;
- height:40px;
- text-transform:none;
- overflow:hidden;
- transition: all 0.6s ease-out;
- -o-transition-transition: all 0.6s ease-out;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- }
- #ireverent2:hover{
- width:194px;
- height:180px;
- border-bottom-right-radius:10px;
- border-bottom-left-radius:0px;
- border-top-left-radius:0px;
- border-top-right-radius:0px;
- border:1px solid #eee;
- overflow-y:scroll;
- margin-left:-9px;
- margin-top:-5px;
- transition: all 0.6s ease-out;
- -o-transition-transition: all 0.6s ease-out;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- }
- #ireverent2 img{
- margin-top:-5px;
- }
- ::-webkit-scrollbar {width: 5px; height: 6px; background: transparent;}
- ::-webkit-scrollbar-thumb {background-color:#fff; border-bottom: 1px solid #fff; border-top: 1px solid #fff; border-left: 1px solid
- #fff; border-radius:10px; }
- @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
- /*CUSTOMIZE TITLE OF ENTRIES HERE*/
- .title{
- line-height: 22px;
- color:{color:Title};
- font-weight: normal;
- font-size:17px;
- font-family:consolas;
- }
- /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
- .permalink{
- text-transform: normal;
- display: block;
- text-align: right;
- text-decoration: none;
- }
- /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
- #infscr-loading{
- bottom: -70px;
- position: absolute;
- left: 50%;
- margin-left:-8px;
- width:16px;
- height:11px;
- overflow:hidden;
- margin-bottom: 50px;
- }
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 10px;
- border-left: 1px dotted #555555;
- }
- blockquote p, ul{
- margin:0px;
- padding:0px;
- }
- 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:{color:text};}
- .notes img{width:10px; position:relative; top:3px;}
- <--ses-->
- small{font-size: 90%;}
- {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 $wall = $('#posts');
- $wall.imagesLoaded(function(){
- $wall.masonry({
- itemSelector: '.entry, .entry_photo',
- isAnimated : false
- });
- });
- $wall.infinitescroll({
- navSelector : '#pagination',
- nextSelector : '#pagination 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');} );
- });
- }); $('#posts').show(500);
- });
- </script>
- {/block:IndexPage}
- <title>{title}</title>
- <link rel="shortcut icon" href="{Favicon}" />
- <meta name="viewport" content="width=820" />
- <script type="text/javascript" src="http://static.tumblr.com/uwz0y16/MQ5nihvz5/docu.txt"></script>
- </head>
- <body>
- {block:ifupdatestab}
- <div id="ireverent2">
- <center><img src="http://static.tumblr.com/807e12b17192e1ac86e3d3d03ca55463/epudhw8/kufn8ncg1/tumblr_static_3y46rfacureow44k4wgggsgwk.gif" style="opacity: 1; margin-left:-5px; width:50px;"> </center>
- <br>
- <div style=" color:#fff;padding: 3px;font-size: 12px;"><b>TITLE 1</b></div><p>
- HEY WRITE WHATEVER YOU WANT
- <div style="color:#fff; padding: 3px;font-size: 12px;"><b>TITLE 2</b></div><p>
- WRITE WHATEVA YOU WANT
- </p>
- <div style="color:#fff;padding: 3px;font-size: 12px;"><b>TITLE 3</b></div><p>
- OCEHANS MADE THIS BUT I SLIGHTLY EDITED THIS.
- </div>
- </div>
- {/block:ifupdatestab}
- <BODY onselectstart="return false;" ondragstart="return false;">
- <div class="wrapper">
- <div class="header">
- </div>
- <div id="cage">
- <div id="center">
- <!--STUFF THAT GOES INTO THE SIDEBAR-->
- <div id="sidebar">
- <center>
- {block:ifbanner}<img src="{image:sidebar}" width=100%>{/block:ifbanner}
- {block:ifnotbanner}<div id="blogtitle">{title}</div>{/block:ifnotbanner}
- <div style="width:520px; margin-left:-75px">{description}</div><br>
- <div style="margin-left:-45px;">
- <a href="/" title="refresh">refresh</a> <img src="http://media.tumblr.com/tumblr_m0pp84IcgX1r90o3y.png" style="top:4px"> <a href="#?w=250" title="ask me anything" rel="box1" class="poplight">message</a>
- <img src="http://media.tumblr.com/tumblr_m0pp84IcgX1r90o3y.png" style="top:4px">
- <a href="#?w=250" title="submit me anything" rel="box2" class="poplight">submit</a><img src="http://media.tumblr.com/tumblr_m0pp84IcgX1r90o3y.png" style="top:4px">
- <a href="#?w=250" title="more links" rel="box3" class="poplight">more links</a><img src="http://media.tumblr.com/tumblr_m0pp84IcgX1r90o3y.png" style="top:4px">
- <a href="/archive" title="past posts">archive</a></div>
- </center>
- </div>
- <!------------------------------------->
- <div class="left">
- <div id="posts">
- {block:Posts}
- <div class="entry">
- {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a
- href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
- {/block:Text}
- {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
- class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
- {block:Answer}
- <div style="margin:3px; margin-top:-5px; min-height:30px; padding:3px; ">
- <img src="{AskerPortraitURL-30}" width="30" align="left"
- style="margin-right:4px; margin-top:2px; margin-left:2px; border:1px solid #ddd; padding:3px; background:#fff; border-radius:100%; box-shadow:0px 2px 6px rgba(0, 0, 0, 0.06); -moz-box-shadow:0px 2px 6px rgba(0, 0, 0, 0.06); -webkit-box-shadow:0px 2px 6px rgba(0, 0, 0, 0.06)">
- <askk>{Asker}</askk>: {Question}</div>
- <div style="font-family:calibri; font-size:10px">{Answer}</div>
- <div class="tt"><a
- href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a> <big>☮</big> Posted {Month} {DayofMonth}, {year}</span></div>
- {/block:Answer}
- {block:Photo}
- {block:IndexPage}
- <center>
- <div class="perma">
- {LikeButton color="white" size="14"} </div>
- <div class="perma2">
- <div style="float:center; margin-left:3px; margin-top:1px">{ReblogButton color="white" size="13"}</div> </div>
- <div class="perma3">
- <a href="{Permalink}">{Notecount}</a></div>
- <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
- {LinkCloseTag}
- {/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}
- <center>
- <div class="perma">
- {LikeButton color="white" size="16"} </div>
- <div class="perma2">
- {ReblogButton color="white" size="15"} </div>
- {Photoset}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Photoset-500}</center>
- {/block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
- href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/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}
- <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
- {/block:Chat}
- {block:Audio}
- <div style="width:200px; height:30px;">
- {AudioPlayerBlack}
- </div>
- {block:IndexPage}<span class="permalink">
- <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
- </span>{/block:IndexPage}
- {/block:Audio}
- {block:Video}
- {block:IndexPage}
- <center>
- <div class="perma">
- <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
- {Video-250}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Video-400}</center>
- {/block:PermalinkPage}
- {block:Video}
- {block:PostNotes}<div align="middle">{caption}</div>
- <center>
- {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
- {block:HasTags}
- tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
- {block:RebloggedFrom}
- reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
- posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
- {/block:RebloggedFrom}
- </center></span>
- <br>
- <div id="postnotes">{PostNotes}</div><br>
- <center>{block:ContentSource}
- <br><a href="{SourceURL}">
- {lang:Source}:
- {block:SourceLogo}
- <img src="{BlackLogoURL}" width="{LogoWidth}"
- height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}
- {SourceLink}
- {/block:NoSourceLogo}
- </a>
- {/block:ContentSource}</center>
- {/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}
- </body>
- <div id="box1" class="popup_block">
- <div style="font-family: georgia;text-align:center; font-size:18px;font-style:italic; letter-spacing: 1px; color: #000;">Ask</div><br>
- · ask me anything<br>
- <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
- </div></div>
- <div id="box2" class="popup_block">
- <div style="font-family: georgia;text-align:center; font-size:18px;font-style:italic; letter-spacing: 1px; color: #000;">Submit</div><br>
- <Center><p><iframe id="submit_form" src="http://www.tumblr.com/submit_form/{Name}.tumblr.com" frameborder="0" height="400" scrolling="no" width="100%"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('submit_form').allowTransparency=true;</script><![endif]--></p>
- </center></div>
- <div id="box3" class="popup_block">
- <div style="font-family: georgia;text-align:center; font-size:18px;font-style:italic; letter-spacing: 1px; color: #000;">More Links</div><br>
- <div style="font-size:14px;color:#000; font-family:consolas; text-align:center; line-height:16px;">
- <a href="{text:link one}">{text:link one title}</a> · <a href="{text:link two}">{text:link two title}</a><br>
- <a href="{text:link three}">{text:link three title}</a> · <a href="{text:link four}">{text:link four title}</a> <br>
- <a href="{text:link five}">{text:link five title}</a> · <a href="{text:link six}">{text:link six title}</a>
- </div></div></div>
- <div style="position:fixed; padding:5px; bottom:6px; right:6px; border:1px solid #fff; border-radius:100%; width:16px; height:16px;"><a href="http://mufflinq.tumblr.com" title="theme by aj"><img src="http://media.tumblr.com/tumblr_m0pp7tctqe1r90o3y.png" style="left:-5px; top:-4px; "></a></div>
- </html>
Add Comment
Please, Sign In to add comment