Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- ♢♢♢♢♢♢♢♢ Eight Diamonds Theme
- Created by Modernise (modernise.us)
- Please leave at least ONE credit link. Do not delete this box.
- Theme is best viewed on Google Chrome, with a resolution of 1280x800.
- *~*~HOW TO INSTALL~*~*
- 1) Copy this entire code.
- 2) Open up the customise.
- 3) Click on Edit HTML
- 4) Delete the code already in there.
- 5) Replace it with this code.
- 6) Hit Update Preview, and then Save.
- 7) Refresh the page, and press Save again.
- If you are experiencing any problems with this theme, please refer to the FAQ on modernisethemes. (http://themes.modernise.us/faq)
- Thank you for choosing Modernise Themes <3!
- -->
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="font:Text" content="arial"/>
- <meta name="text:Font Size" content="9px"/>
- <meta name="color:Text" content="#888"/>
- <meta name="color:Background" content="#fff"/>
- <meta name="color:Borders" content="#cccccc"/>
- <meta name="color:Blockquote" content="#f5f5f5"/>
- <meta name="color:Links" content="#7a99a7"/>
- <meta name="color:Hover" content="#a7c6d5"/>
- <meta name="color:Navbar" content="#ffffff"/>
- <meta name="image:NavbarBackground" content=""/>
- <meta name="image:Background" content=""/>
- <meta name="image:Header" content=""/>
- <meta name="if:Image Fade" content="1">
- <meta name="if:Rounded Corners" content="0">
- <meta name="if:CustomLink1" content="0">
- <meta name="if:CustomLink2" content="0">
- <meta name="if:CustomLink3" content="0">
- <meta name="if:CustomLink4" content="0">
- <meta name="if:CustomLink5" content="0">
- <meta name="text:Link 1 Title" content="custom link">
- <meta name="text:Link 1" content="http://">
- <meta name="text:Link 2 Title" content="custom link">
- <meta name="text:Link 2" content="http://">
- <meta name="text:Link 3 Title" content="custom link">
- <meta name="text:Link 3" content="http://">
- <meta name="text:Link 4 Title" content="custom link">
- <meta name="text:Link 4" content="http://">
- <meta name="text:Link 5 Title" content="custom link">
- <meta name="text:Link 5" content="http://">
- <meta name="text:Ask Link" content="message">
- <meta name="if:Animated Post Load" content="0">
- <meta name="if:Cross Cursor" content="1">
- <meta name="if:Click Photo To Reblog" content="1">
- <meta name="if:Infinite Scroll" content="1">
- <meta name="if:Title Font" content="1"/>
- <link rel="shortcut icon" href="{Favicon}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <title>{Title}</title>
- <script type="text/javascript" src="http://static.tumblr.com/iddq6cw/4Gum31dpt/modernise.js">
- </script>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
- <script type="text/javascript" src="scrolltopcontrol.js">
- </script>
- <script type="text/javascript">
- var scrolltotop={
- //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
- //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
- setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
- controlHTML: '<Div style="font-size:13px;color:{color:Links};opacity:.9;">top</div>', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
- controlattrs: {offsetx:30, offsety:10}, //offset of control relative to right/ bottom of window corner
- anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
- state: {isvisible:false, shouldvisible:false},
- scrollup:function(){
- if (!this.cssfixedsupport) //if control is positioned using JavaScript
- this.$control.css({opacity:0}) //hide control immediately after clicking it
- var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
- if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
- dest=jQuery('#'+dest).offset().top
- else
- dest=0
- this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
- },
- keepfixed:function(){
- var $window=jQuery(window)
- var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
- var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
- this.$control.css({left:controlx+'px', top:controly+'px'})
- },
- togglecontrol:function(){
- var scrolltop=jQuery(window).scrollTop()
- if (!this.cssfixedsupport)
- this.keepfixed()
- this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
- if (this.state.shouldvisible && !this.state.isvisible){
- this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
- this.state.isvisible=true
- }
- else if (this.state.shouldvisible==false && this.state.isvisible){
- this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
- this.state.isvisible=false
- }
- },
- init:function(){
- jQuery(document).ready(function($){
- var mainobj=scrolltotop
- var iebrws=document.all
- mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
- mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
- mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
- .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
- .attr({title:'Scroll to Top'})
- .click(function(){mainobj.scrollup(); return false})
- .appendTo('body')
- if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
- mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
- mainobj.togglecontrol()
- $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
- mainobj.scrollup()
- return false
- })
- $(window).bind('scroll resize', function(e){
- mainobj.togglecontrol()
- })
- })
- }
- }
- scrolltotop.init()
- </script>
- <style type="text/css">
- html { height:100%;}@font-face {font-family:basket;src: url('http://static.tumblr.com/ejm8w78/cuUm91oth/folks-light.ttf');}body { font-family:{font:Text}; font-size:{text:Font Size}; color:{color:Text}; letter-spacing:0px; background-color:{color:background}; background-image:url('{image:Background}'); background-repeat: repeat; background-position: top center; background-attachment: fixed; {block:IndexPage}text-align:justify;{/block:IndexPage} {block:PermalinkPage}text-align:justify;{/block:PermalinkPage} line-height:100%; height:100%; {block:IfCrossCursor}cursor: crosshair, auto;{/block:IfCrossCursor} {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}}a { color:{color:Links}; -webkit-transition-duration:1s;text-decoration:none; {block:IfCrossCursor}cursor:crosshair;{/block:IfCrossCursor} {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}}a:hover { color:{color:Hover}; text-decoration: none; {block:IfCrossCursor}cursor: crosshair, auto;{/block:IfCrossCursor} {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}}u { border-bottom: 1px dashed #888;}b, strong{letter-spacing: 1px; color: #b1b1b1; text-transform: none;text-shadow: 1px 1px 2px #e1dad4;text-decoration: none;font-weight: normal;}iframe#tumblr_controls { right:3px !important; position: fixed !important; -webkit-transition: opacity 0.7s linear; opacity: 0.5; -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: 1; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}::-webkit-scrollbar-thumb:vertical { background-color:{color:Links}; height:10px;width:10px; -webkit-border-radius:4px;border:2px {color:Background} solid;}::-webkit-scrollbar-thumb:horizontal { background-color:{color:Links}; height:10px !important;border:2px {color:Background} solid; -webkit-border-radius:4px;}::-webkit-scrollbar { height:10px; width:10px; background-color:{color:Background}; -webkit-border-radius:4px;}::-webkit-scrollbar-corner { background-color:{color:Background};}::-webkit-resizer { background-color:{color:Background};}#content { width:100%; margin-left:auto; margin-right:auto; position: relative; {block:IfCrossCursor}cursor:crosshair;{/block:IfCrossCursor} {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}}ul {margin-left:-25px;}.sidebar {position:Fixed;margin-top:-10px; {block:IndexPage}margin-left: 531px;{/block:IndexPage} {block:PermalinkPage}margin-left: 275px;{/block:PermalinkPage}margin-right:auto;left:auto;right:auto; width: 196px;;z-index:234234234; background-color: {color:Navbar}; {block:IfNavbarBackgroundImage}background-image:url('{image:NavbarBackground}');{/block:IfNavbarBackgroundImage} opacity:1;display:block;height:110%; {block:IfCrossCursor}cursor:crosshair;{/block:IfCrossCursor} {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}}.navigation { font-size:{block:IfTitleFont}45px{/block:IfTitleFont} {block:IfNotTitleFont}30px{/block:IfNotTitleFont}; color:{color:Links}; letter-spacing:-2px; -webkit-transition-duration:1.5s; font-family:{block:IfTitleFont}basket{/block:IfTitleFont} {block:IfNotTitleFont}{font:text}{/block:IfNotTitleFont}; text-transform:lowercase; text-align:center;line-height:{block:IfTitleFont}45px{/block:IfTitleFont} {block:IfNotTitleFont}30px{/block:IfNotTitleFont};}#content .posts { {block:IndexPage}width:1000px;margin-left:75px;margin-right:auto;{/block:IndexPage} {block:PermalinkPage}width:500px;margin-left:475px;margin-right:auto;{/block:PermalinkPage} margin-right:auto;margin-top:-4px; position:relative; background-color:transparent;}#content .posts img { {block:IndexPage} max-width: 250px; margin-top:-2px; {/block:IndexPage} {block:PermalinkPage} max-width: 500px; {/block:PermalinkPage} {block:IfRoundedCorners} -webkit-border-radius:4px; {/block:IfRoundedCorners}}#content .entry { {block:IndexPage} width:250px; float:left; position: relative; margin-left:200px; padding:2px;margin-bottom:-3px; {/block:IndexPage} z-index:1; {block:PermalinkPage} width:500px; {/block:PermalinkPage} {block:IfAnimatedPostLoad} -webkit-transition-duration:2s; {/block:IfAnimatedPostLoad}} .heading { font-family:{font:Text}; font-size:15px; text-decoration: none; letter-spacing:0px; font-weight:none; line-height:100%; margin-bottom:0px; {block:IndexPage}text-align:justify;{/block:IndexPage} {block:PermalinkPage}text-align:justify;{/block:PermalinkPage}}.chat ul { padding:0px; margin:0px 0px 0px 0px;}.chat li { list-style-type: none; padding:3px; margin-right:0px;}.chat li.odd { color:{color:Text}; background-color: {color:Background};}.chat li.even { color: {color:Text}; background-color: {color:Blockquote};}.emp{ }.label {font-size: {text:Font Size}; letter-spacing: 1px;font-family: {font:Text};text-shadow: 1px 1px 2px #e1dad4;text-decoration: none;font-weight: normal;color:{color:links}}blockquote { padding-left:5px; padding-top:3px;padding-right:5px; padding-bottom:3px;margin-left:0px;margin-right:0px; border-left: 2px solid {color:Borders}; background-color:{color:Blockquote};}.stan { background-color:{color:Blockquote};}.kyle { font-style:italic; line-height:100%; margin-bottom:0px;}{block:IfImageFade}.img { {block:IndexPage} opacity:0.8; filter:alpha(opacity=80); {/block:IndexPage} -webkit-transition-duration:0.4s;}.img:hover { opacity:1; filter:alpha(opacity=100);}{/block:IfImageFade}.stoley img { {block:IndexPage} max-width:150px; overflow-y:auto; {/block:IndexPage}}.kenny { width:500px; opacity: 1; z-index: 10000; margin-top:10px; margin-bottom:10px; text-align:right; font-family:helvetica; font-size:8px; letter-spacing:1px; text-transform:uppercase;}.cartman { margin-top:0; margin-left:0px; margin-right:auto; margin-bottom:0px; width:500px; text-align:left; background-color:{color:Post};}.wendy { text-align:center; width:500px; margin-left:auto; margin-right:auto;}.video embed, .video object, .video iframe { {block:IndexPage} width:250px !important; {/block:IndexPage} {block:PermalinkPage}width:500px !important; {/block:PermalinkPage} height:auto !important;}.audioplayer { background-color:#e4e4e4; overflow-y:hidden; {block:IndexPage} width:250px {/block:IndexPage} {block:PermalinkPage}width:500px !important; {/block:PermalinkPage}}.entry .permalink { padding-top:0px;}.tweek { font-size:15px; line-height:100%; padding:2px; color:#fff; z-index:9;}.entry:hover .craig { opacity:0.85; z-index:9;}#craig { color:#fff; font-size:10px; opacity: 0; margin-top:7px;padding-right:5px; margin-left:3px; width:auto; height:15px; float:left;display:block; text-align:center; font-family:arial; letter-spacing:1px; -webkit-transition-duration:1s; -webkit-transition:1s;text-shadow: black 0.1em 0.1em 0.2em; } #craig a { color:#fff; text-decoration:none; -webkit-transition-duration:1s; -webkit-transition:1s; } #craig:hover { -webkit-transition-duration:1s; -webkit-transition:1s; z-index:1; } .tweek:hover{ -webkit-transition-duration:1s; -webkit-transition:1s; z-index:1; } .entry:hover #craig { opacity:0.9; z-index:9; -webkit-transition-duration:1s; -webkit-transition:1s; } #craig:hover .img { opacity:1; }.permalink { float:right; position: absolute; margin-top:0px; opacity: 0; z-index: 1; text-align:right; }.vriska { opacity: 0; -webkit-transition-duration:0.7s;}.entry:hover .vriska { opacity:1;padding-top:0px;}.clear {display: none;}ol.notes { padding: 0px; margin: 25px 0px; list-style-type: none; border-bottom: solid 1px #ccc;}ol.notes li.note { border-top: solid 1px #ccc; padding: 6px;}.clear {display: none;}ol.notes { padding: 0px; margin: 25px 0px; list-style-type: none; border-bottom: solid 1px #ccc;}ol.notes li.note { border-top: solid 1px #ccc; padding: 6px;}.mj { width: 15px; height: 15px; display: block; position: relative; opacity: 0; z-index: 1; -webkit-transition-duration:1s; -webkit-transition:1s; } .mj a { width: 15px; height: 15px; margin-top:-16px;padding-right:1px; margin-left:5px; padding-top:0px; float:left; background-image: url("http://static.tumblr.com/iddq6cw/vorm8lsww/like.png"); background-repeat:no-repeat; background-position: 0px 0px; z-index: 1; -webkit-transition:1s; -webkit-transition-duration:1s; } .mj:hover { opacity: 1; -webkit-transition-duration:1s; } .entry:hover .mj{ opacity: 0.8; webkit-transition-duration:1s; } .wutang { display:block; background-color:#ccc; padding:2px; margin-right:5px; max-width:25px; height:15px;}.cl a { text-transform:none;}.cl a:hover { text-transform:uppercase; text-shadow: #888 1px 1px 1px 1px;}.dz a { color:#888;}
- {CustomCSS}
- </style>
- {block:IfInfiniteScroll}
- <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
- {/block:IfInfiniteScroll}
- <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
- <script type="text/javascript">
- $(window).load(function () {
- $('.posts').masonry(),
- $('.masonryWrap').infinitescroll({
- navSelector : "div#navigation",
- // selector for the paged navigation (it will be hidden)
- nextSelector : "div#navigation a#nextPage",
- // selector for the NEXT link (to page 2)
- itemSelector : ".entry, .clear",
- // selector for all items you'll retrieve
- bufferPx : 10000,
- extraScrollPx: 10,
- loadingImg : "http://static.tumblr.com/ejm8w78/KZjlxxt0d/ajax-loader.gif",
- loadingText : "<em></em>",
- },
- // call masonry as a callback.
- function() { $('.posts').masonry({ appendedContent: $(this) }); }
- );
- });
- </script>
- <script type="text/javascript">
- $(window).load(function(){
- $("p").remove(":contains('(Source:')");
- $("p").remove(":contains('(source:')");
- $("p").remove(":contains('(via ')");
- });
- </script>
- {block:indexpage}
- <script language="JavaScript">
- function function1(){
- window.scrollTo(0,5);
- }
- function function2(){
- window.scroll(0,2);
- }
- </script>
- {/block:indexpage}
- </head>
- <body><div class="bk"></div><div id="content">
- <div class="sidebar" style="padding-top:23%;">
- <br><br>
- <div align="center" >
- <div style="max-width:200px;margin-left:auto;margin-right:auto;">
- {block:IfHeaderImage}<a href="/"><img src="{image:Header}" width="196px"></a><Br><br>{/block:IfHeaderImage}
- {block:IfNotHeaderImage}
- <div class="dz" style="line-height:150%;font-style:none;font-size:24px;font-family:{block:IfTitleFont}basket{/block:IfTitleFont}{block:IfNotTitleFont}{font:text}{/block:IfNotTitleFont};text-decoration:none;color:#888;"><a href="/" style="color:#888;">
- {title}
- </div></a>
- {/block:IfNotHeaderImage}
- </div>
- <span class="cl" >
- <a href="/">home</a>
- <a href="/ask">{text:Ask Link}</a>
- {block:SubmitEnabled}
- <a href="/submit">submit</a>{/block:SubmitEnabled}
- {block:HasPages}
- {block:Pages}
- <a href="{URL}">{Label}</a>
- {/block:Pages}
- {/block:HasPages}
- {block:IfCustomLink1}
- <a href="{text:Link 1}">{text:Link 1 Title}</a>
- {/block:IfCustomLink1}
- {block:IfCustomLink2}
- <a href="{text:Link 2}">{text:Link 2 Title}</a>
- {/block:IfCustomLink2}
- {block:IfCustomLink3}
- <a href="{text:Link 3}">{text:Link 3 Title}</a>
- {/block:IfCustomLink3}
- {block:IfCustomLink4}
- <a href="{text:Link 4}">{text:Link 4 Title}</a>
- {/block:IfCustomLink4}
- {block:IfCustomLink5}
- <a href="{text:Link 5}">{text:Link 5 Title}</a>
- {/block:IfCustomLink5}
- <a href="http://modernise.us">theme</a><Br><br></div><div align="justify">
- {block:Description}{Description}<Br><Br>{/block:Description}</div>
- {block:IndexPage}</span>
- <div class="column navigation" id="navigation">
- {block:Pagination}
- {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
- </div>
- {/block:IndexPage}
- </div>
- <div class="posts">
- {block:Posts}
- <div class="entry">
- {block:Text}
- {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
- <div class="stoley">{Body}</div>
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Text}
- {block:Photo}
- <div class="img">
- {block:IndexPage}{block:IfClickPhotoToReblog}<a href="{ReblogURL}">{/block:IfClickPhotoToReblog}{block:IfNotClickPhotoToReblog}<a href="{Permalink}">{/block:IfNotClickPhotoToReblog}{/block:IndexPage}
- {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
- <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="250px" {/block:IndexPage}{block:PermalinkPage}width="500px"{/block:PermalinkPage}/>
- </a>
- </div>
- {block:PermalinkPage}
- {block:Caption}{Caption}{/block:Caption}<br>
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {block:IndexPage} <div class="tweek" style="display:Block;"> <div style="margin-left:30px;margin-top:-28px;"><div id="craig"><a href="{Permalink}"><div style="opacity:1;">{NoteCount}</div></a></div> <div id="craig"><a href="{ReblogURL}">reblog</a></div></div> <span class="mj"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" id="likeimage{PostID}" style="opacity:1;"/></a></span> </div> {/block:IndexPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}<center>{Photoset-250}</center>{/block:IndexPage}
- {block:PermalinkPage}<Center>
- {Photoset-500}</center><br>{block:Caption}{Caption}<br><br>{/block:Caption}
- {/block:PermalinkPage}
- {block:IndexPage} <div class="tweek" style="display:Block;"> <div style="margin-left:30px;margin-top:-28px;"><div id="craig"><a href="{Permalink}"><div style="opacity:1;">{NoteCount}</div></a></div> <div id="craig"><a href="{ReblogURL}">reblog</a></div></div> <span class="mj"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" id="likeimage{PostID}" style="opacity:1;"/></a></span> </div> {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}
- <div align="left"><i>{Quote}</i></div>
- {block:Source} <div align="right">― {Source}</div>{/block:Source}
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Quote}
- {block:Link}
- <div class="heading"><a href="{URL}"{Target}>→ {Name}</a></div>
- {block:Description} {Description}{/block:Description}
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Link}
- {block:Video}
- {block:PermalinkPage}<div class="video">{Video-500}
- </div>{/block:PermalinkPage}
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Video}
- {block:Chat}
- {block:Title}
- <div class="heading"><a href="{Permalink}">{Title}</a></div>
- {/block:Title}
- <div class="chat ul">
- {block:Lines}
- <li class="{Alt} user_{UserNumber}">
- {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
- {/block:Lines}</div></li>
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Chat}
- {block:Audio}{block:PermalinkPage}{block:AlbumArt}
- <img src="{AlbumArtURL}" style="width:500px;">{/block:AlbumArt}{/block:PermalinkPage}{block:IndexPage}
- {block:AlbumArt}
- <img src="{AlbumArtURL}" style="width:25px;height:25px;float:left;padding-right:3px;padding-bottom:3px;padding-top:3px;background-color:{color:background};">{/block:AlbumArt}{/block:IndexPage}
- <div class="audioplayer" style="max-width:220px;overflow:hidden;">{AudioPlayerGrey}</div>
- {block:Caption}{Caption}{/block:Caption}
- {block:PermalinkPage}
- <br>{PlayCountWithLabel}{/block:PermalinkPage}
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Audio}
- {block:Answer}
- <div style="text-align:left;padding-left:5px;padding-right:5px;border-left: 2px solid {color:Borders};border-right: 2px solid {color:Borders};background-color:{color:blockquote};"><div class="stan">{Asker}: {Question}</div></div><div style="text-align:left;"><div class="kyle">{Answer}</div></div>
- {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
- <a href="{Permalink}">{12Hour}:{Minutes} {AmPm} {/block:IfShowTimestamp}• {DayOfMonth} {Month} {Year}{block:NoteCount} • {NoteCountWithLabel}{/block:NoteCount}</a></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div class="kenny">
- {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
- {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
- {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
- {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
- {/block:PermalinkPage}
- {/block:Answer}
- </div>
- {block:ContentSource}
- <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
- width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- {/block:Posts}
- </div>
- {block:IfNotInfiniteScroll}
- <div style="padding-bottom:10px;"><Br><br>
- <div style="margin-left:1000px;">
- {block:Pagination}
- {block:PreviousPage}
- <a href="{PreviousPage}">-</a>
- {/block:PreviousPage}/
- {block:JumpPagination length="5"}
- {block:CurrentPage}
- <span>{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- /{block:NextPage}
- <a href="{NextPage}">+</a>
- {/block:NextPage}
- {/block:Pagination}</div>
- </div>
- {/block:IfNotInfiniteScroll}
- <div class="clear"></div>
- </div>
- </div>
- </div>
- <div style="display:block;bottom:5px;right:5px;font-size:12px;font-family:courier new;position:fixed;background-color:#ffffff;padding:3px;border-radius:4px;z-index:5;opacity:0.75;"><a href="http://modernise.us/">♏</a></div>
- <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/2MFlzww4p/likenew.js"></script>
- <script type="text/javascript">autoscale(new Array('object', 'embed'));</script>
- <script type="text/javascript" src="http://static.tumblr.com/iddq6cw/cz1m316ry/arny.js"></script>
- <iframe id="likeiframe" style="display:none;"></iframe>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement