Advertisement
vrisky

♢♢♢♢♢♢♢♢ eight diamonds

Oct 2nd, 2012
64,269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.76 KB | None | 0 0
  1. <!--
  2.  
  3. ♢♢♢♢♢♢♢♢ Eight Diamonds Theme
  4. Created by Modernise (modernise.us)
  5. Please leave at least ONE credit link. Do not delete this box.
  6.  
  7. Theme is best viewed on Google Chrome, with a resolution of 1280x800.
  8.  
  9. *~*~HOW TO INSTALL~*~*
  10. 1) Copy this entire code.
  11. 2) Open up the customise.
  12. 3) Click on Edit HTML
  13. 4) Delete the code already in there.
  14. 5) Replace it with this code.
  15. 6) Hit Update Preview, and then Save.
  16. 7) Refresh the page, and press Save again.
  17.  
  18. If you are experiencing any problems with this theme, please refer to the FAQ on modernisethemes. (http://themes.modernise.us/faq)
  19. Thank you for choosing Modernise Themes <3!
  20.  
  21. -->
  22.  
  23. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  24. <html xmlns="http://www.w3.org/1999/xhtml">
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  27.  
  28. <meta name="font:Text" content="arial"/>
  29. <meta name="text:Font Size" content="9px"/>
  30. <meta name="color:Text" content="#888"/>
  31. <meta name="color:Background" content="#fff"/>
  32. <meta name="color:Borders" content="#cccccc"/>
  33. <meta name="color:Blockquote" content="#f5f5f5"/>
  34. <meta name="color:Links" content="#7a99a7"/>
  35. <meta name="color:Hover" content="#a7c6d5"/>
  36. <meta name="color:Navbar" content="#ffffff"/>
  37. <meta name="image:NavbarBackground" content=""/>
  38. <meta name="image:Background" content=""/>
  39. <meta name="image:Header" content=""/>
  40. <meta name="if:Image Fade" content="1">
  41. <meta name="if:Rounded Corners" content="0">
  42. <meta name="if:CustomLink1" content="0">
  43. <meta name="if:CustomLink2" content="0">
  44. <meta name="if:CustomLink3" content="0">
  45. <meta name="if:CustomLink4" content="0">
  46. <meta name="if:CustomLink5" content="0">
  47. <meta name="text:Link 1 Title" content="custom link">
  48. <meta name="text:Link 1" content="http://">
  49. <meta name="text:Link 2 Title" content="custom link">
  50. <meta name="text:Link 2" content="http://">
  51. <meta name="text:Link 3 Title" content="custom link">
  52. <meta name="text:Link 3" content="http://">
  53. <meta name="text:Link 4 Title" content="custom link">
  54. <meta name="text:Link 4" content="http://">
  55. <meta name="text:Link 5 Title" content="custom link">
  56. <meta name="text:Link 5" content="http://">
  57. <meta name="text:Ask Link" content="message">
  58. <meta name="if:Animated Post Load" content="0">
  59. <meta name="if:Cross Cursor" content="1">
  60. <meta name="if:Click Photo To Reblog" content="1">
  61. <meta name="if:Infinite Scroll" content="1">
  62. <meta name="if:Title Font" content="1"/>
  63.  
  64. <link rel="shortcut icon" href="{Favicon}">
  65. {block:Description}
  66. <meta name="description" content="{MetaDescription}" />
  67. {/block:Description}
  68.  
  69. <title>{Title}</title>
  70.  
  71. <script type="text/javascript" src="http://static.tumblr.com/iddq6cw/4Gum31dpt/modernise.js">
  72. </script>
  73. <script type="text/javascript"
  74. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  75. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  76.  
  77. <script type="text/javascript" src="scrolltopcontrol.js">
  78. </script>
  79.  
  80. <script type="text/javascript">
  81.  
  82.  
  83. var scrolltotop={
  84. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  85. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  86. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  87. 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"
  88. controlattrs: {offsetx:30, offsety:10}, //offset of control relative to right/ bottom of window corner
  89. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  90.  
  91. state: {isvisible:false, shouldvisible:false},
  92.  
  93. scrollup:function(){
  94. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  95. this.$control.css({opacity:0}) //hide control immediately after clicking it
  96. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  97. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  98. dest=jQuery('#'+dest).offset().top
  99. else
  100. dest=0
  101. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  102. },
  103.  
  104. keepfixed:function(){
  105. var $window=jQuery(window)
  106. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  107. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  108. this.$control.css({left:controlx+'px', top:controly+'px'})
  109. },
  110.  
  111. togglecontrol:function(){
  112. var scrolltop=jQuery(window).scrollTop()
  113. if (!this.cssfixedsupport)
  114. this.keepfixed()
  115. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  116. if (this.state.shouldvisible && !this.state.isvisible){
  117. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  118. this.state.isvisible=true
  119. }
  120. else if (this.state.shouldvisible==false && this.state.isvisible){
  121. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  122. this.state.isvisible=false
  123. }
  124. },
  125.  
  126. init:function(){
  127. jQuery(document).ready(function($){
  128. var mainobj=scrolltotop
  129. var iebrws=document.all
  130. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  131. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  132. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  133. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  134. .attr({title:'Scroll to Top'})
  135. .click(function(){mainobj.scrollup(); return false})
  136. .appendTo('body')
  137. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  138. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  139. mainobj.togglecontrol()
  140. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  141. mainobj.scrollup()
  142. return false
  143. })
  144. $(window).bind('scroll resize', function(e){
  145. mainobj.togglecontrol()
  146. })
  147. })
  148. }
  149. }
  150.  
  151. scrolltotop.init()
  152.  
  153. </script>
  154.  
  155. <style type="text/css">
  156.  
  157. 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;}
  158. {CustomCSS}
  159.  
  160. </style>
  161.  
  162.  
  163. {block:IfInfiniteScroll}
  164. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  165. {/block:IfInfiniteScroll}
  166.  
  167. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  168.  
  169. <script type="text/javascript">
  170. $(window).load(function () {
  171. $('.posts').masonry(),
  172. $('.masonryWrap').infinitescroll({
  173. navSelector : "div#navigation",
  174. // selector for the paged navigation (it will be hidden)
  175. nextSelector : "div#navigation a#nextPage",
  176. // selector for the NEXT link (to page 2)
  177. itemSelector : ".entry, .clear",
  178. // selector for all items you'll retrieve
  179. bufferPx : 10000,
  180. extraScrollPx: 10,
  181. loadingImg : "http://static.tumblr.com/ejm8w78/KZjlxxt0d/ajax-loader.gif",
  182. loadingText : "<em></em>",
  183. },
  184. // call masonry as a callback.
  185. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  186. );
  187. });
  188. </script>
  189.  
  190.  
  191.  
  192. <script type="text/javascript">
  193. $(window).load(function(){
  194. $("p").remove(":contains('(Source:')");
  195. $("p").remove(":contains('(source:')");
  196. $("p").remove(":contains('(via ')");
  197. });
  198. </script>
  199.  
  200.  
  201. {block:indexpage}
  202. <script language="JavaScript">
  203. function function1(){
  204. window.scrollTo(0,5);
  205. }
  206. function function2(){
  207. window.scroll(0,2);
  208. }
  209. </script>
  210.  
  211. {/block:indexpage}
  212.  
  213. </head>
  214.  
  215. <body><div class="bk"></div><div id="content">
  216. <div class="sidebar" style="padding-top:23%;">
  217. <br><br>
  218.  
  219. <div align="center" >
  220. <div style="max-width:200px;margin-left:auto;margin-right:auto;">
  221. {block:IfHeaderImage}<a href="/"><img src="{image:Header}" width="196px"></a><Br><br>{/block:IfHeaderImage}
  222. {block:IfNotHeaderImage}
  223. <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;">
  224. {title}
  225. </div></a>
  226. {/block:IfNotHeaderImage}
  227. </div>
  228.  
  229.  
  230. <span class="cl" >
  231. <a href="/">home</a>
  232. <a href="/ask">{text:Ask Link}</a>
  233. {block:SubmitEnabled}
  234. <a href="/submit">submit</a>{/block:SubmitEnabled}
  235. {block:HasPages}
  236. {block:Pages}
  237. <a href="{URL}">{Label}</a>
  238. {/block:Pages}
  239. {/block:HasPages}
  240. {block:IfCustomLink1}
  241. <a href="{text:Link 1}">{text:Link 1 Title}</a>
  242. {/block:IfCustomLink1}
  243. {block:IfCustomLink2}
  244. <a href="{text:Link 2}">{text:Link 2 Title}</a>
  245. {/block:IfCustomLink2}
  246. {block:IfCustomLink3}
  247. <a href="{text:Link 3}">{text:Link 3 Title}</a>
  248. {/block:IfCustomLink3}
  249. {block:IfCustomLink4}
  250. <a href="{text:Link 4}">{text:Link 4 Title}</a>
  251. {/block:IfCustomLink4}
  252. {block:IfCustomLink5}
  253. <a href="{text:Link 5}">{text:Link 5 Title}</a>
  254. {/block:IfCustomLink5}
  255. <a href="http://modernise.us">theme</a><Br><br></div><div align="justify">
  256. {block:Description}{Description}<Br><Br>{/block:Description}</div>
  257. {block:IndexPage}</span>
  258. <div class="column navigation" id="navigation">
  259. {block:Pagination}
  260. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  261. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  262. </div>
  263. {/block:IndexPage}
  264. </div>
  265.  
  266. <div class="posts">
  267. {block:Posts}
  268. <div class="entry">
  269.  
  270.  
  271. {block:Text}
  272. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  273. <div class="stoley">{Body}</div>
  274.  
  275. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  276. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  277. {/block:IndexPage}
  278.  
  279.  
  280. {block:PermalinkPage}
  281.  
  282.  
  283. <div class="kenny">
  284. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  285.  
  286. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  287. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  288. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  289. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  290. {/block:PermalinkPage}
  291. {/block:Text}
  292.  
  293. {block:Photo}
  294. <div class="img">
  295. {block:IndexPage}{block:IfClickPhotoToReblog}<a href="{ReblogURL}">{/block:IfClickPhotoToReblog}{block:IfNotClickPhotoToReblog}<a href="{Permalink}">{/block:IfNotClickPhotoToReblog}{/block:IndexPage}
  296. {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
  297. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="250px" {/block:IndexPage}{block:PermalinkPage}width="500px"{/block:PermalinkPage}/>
  298. </a>
  299. </div>
  300.  
  301.  
  302. {block:PermalinkPage}
  303. {block:Caption}{Caption}{/block:Caption}<br>
  304. <div class="kenny">
  305. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  306.  
  307. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  308. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  309. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  310. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  311. {/block:PermalinkPage}
  312. {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}
  313. {/block:Photo}
  314.  
  315.  
  316. {block:Photoset}
  317.  
  318. {block:IndexPage}<center>{Photoset-250}</center>{/block:IndexPage}
  319.  
  320. {block:PermalinkPage}<Center>
  321. {Photoset-500}</center><br>{block:Caption}{Caption}<br><br>{/block:Caption}
  322. {/block:PermalinkPage}
  323. {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}
  324. {block:PermalinkPage}
  325.  
  326.  
  327. <div class="kenny">
  328. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  329.  
  330. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  331. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  332. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  333. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  334. {/block:PermalinkPage}
  335. {/block:Photoset}
  336.  
  337.  
  338. {block:Quote}
  339. <div align="left"><i>{Quote}</i></div>
  340. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  341.  
  342. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  343. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  344. {/block:IndexPage}
  345.  
  346. {block:PermalinkPage}
  347.  
  348.  
  349. <div class="kenny">
  350. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  351.  
  352. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  353. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  354. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  355. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  356. {/block:PermalinkPage}
  357. {/block:Quote}
  358.  
  359.  
  360. {block:Link}
  361. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  362. {block:Description} {Description}{/block:Description}
  363.  
  364. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  365. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  366. {/block:IndexPage}
  367.  
  368.  
  369. {block:PermalinkPage}
  370.  
  371.  
  372. <div class="kenny">
  373. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  374.  
  375. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  376. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  377. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  378. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  379. {/block:PermalinkPage}
  380. {/block:Link}
  381.  
  382. {block:Video}
  383. {block:PermalinkPage}<div class="video">{Video-500}
  384. </div>{/block:PermalinkPage}
  385.  
  386. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  387. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  388. {/block:IndexPage}
  389.  
  390.  
  391. {block:PermalinkPage}
  392.  
  393.  
  394. <div class="kenny">
  395. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  396.  
  397. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  398. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  399. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  400. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  401. {/block:PermalinkPage}
  402. {/block:Video}
  403.  
  404.  
  405. {block:Chat}
  406. {block:Title}
  407. <div class="heading"><a href="{Permalink}">{Title}</a></div>
  408. {/block:Title}
  409. <div class="chat ul">
  410. {block:Lines}
  411. <li class="{Alt} user_{UserNumber}">
  412. {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
  413. {/block:Lines}</div></li>
  414.  
  415. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  416. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  417. {/block:IndexPage}
  418.  
  419. {block:PermalinkPage}
  420.  
  421.  
  422. <div class="kenny">
  423. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  424.  
  425. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  426. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  427. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  428. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  429. {/block:PermalinkPage}
  430. {/block:Chat}
  431.  
  432.  
  433.  
  434. {block:Audio}{block:PermalinkPage}{block:AlbumArt}
  435. <img src="{AlbumArtURL}" style="width:500px;">{/block:AlbumArt}{/block:PermalinkPage}{block:IndexPage}
  436. {block:AlbumArt}
  437. <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}
  438. <div class="audioplayer" style="max-width:220px;overflow:hidden;">{AudioPlayerGrey}</div>
  439. {block:Caption}{Caption}{/block:Caption}
  440. {block:PermalinkPage}
  441. <br>{PlayCountWithLabel}{/block:PermalinkPage}
  442.  
  443. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  444. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  445. {/block:IndexPage}
  446.  
  447.  
  448. {block:PermalinkPage}
  449.  
  450.  
  451. <div class="kenny">
  452. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  453.  
  454. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  455. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  456. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  457. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  458. {/block:PermalinkPage}
  459. {/block:Audio}
  460.  
  461.  
  462. {block:Answer}
  463. <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>
  464.  
  465. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  466. <a href="{Permalink}">{12Hour}:{Minutes}&nbsp;{AmPm}&nbsp;&nbsp;{/block:IfShowTimestamp}&bull;&nbsp;&nbsp;{DayOfMonth}&nbsp;{Month}&nbsp;{Year}{block:NoteCount}&nbsp;&nbsp;&bull;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}</a></div></div>
  467. {/block:IndexPage}
  468.  
  469. {block:PermalinkPage}
  470.  
  471.  
  472. <div class="kenny">
  473. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  474.  
  475. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  476. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  477. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  478. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  479. {/block:PermalinkPage}
  480. {/block:Answer}
  481.  
  482.  
  483. </div>
  484. {block:ContentSource}
  485. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  486. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  487. {/block:SourceLogo}
  488. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  489. {/block:ContentSource}
  490. {/block:Posts}
  491. </div>
  492.  
  493.  
  494. {block:IfNotInfiniteScroll}
  495. <div style="padding-bottom:10px;"><Br><br>
  496. <div style="margin-left:1000px;">
  497. {block:Pagination}
  498. {block:PreviousPage}
  499. <a href="{PreviousPage}">-</a>
  500. {/block:PreviousPage}/
  501.  
  502. {block:JumpPagination length="5"}
  503. {block:CurrentPage}
  504. <span>{PageNumber}</span>
  505. {/block:CurrentPage}
  506.  
  507. {block:JumpPage}
  508. <a class="jump_page" href="{URL}">{PageNumber}</a>
  509. {/block:JumpPage}
  510. {/block:JumpPagination}
  511.  
  512. /{block:NextPage}
  513. <a href="{NextPage}">+</a>
  514. {/block:NextPage}
  515. {/block:Pagination}</div>
  516. </div>
  517. {/block:IfNotInfiniteScroll}
  518.  
  519. <div class="clear"></div>
  520. </div>
  521.  
  522. </div>
  523.  
  524. </div>
  525. <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>
  526.  
  527. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/2MFlzww4p/likenew.js"></script>
  528.  
  529. <script type="text/javascript">autoscale(new Array('object', 'embed'));</script>
  530.  
  531. <script type="text/javascript" src="http://static.tumblr.com/iddq6cw/cz1m316ry/arny.js"></script>
  532. <iframe id="likeiframe" style="display:none;"></iframe>
  533. </body>
  534.  
  535.  
  536.  
  537. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement