Advertisement
ramisaaaaa

Untitled

Jul 30th, 2014
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.32 KB | None | 0 0
  1. <!--
  2. theme by cyrusnigga originally by modernise.
  3. -->
  4.  
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9.  
  10. <meta name="font:Text" content="arial"/>
  11. <meta name="text:Font Size" content="9px"/>
  12. <meta name="color:Text" content="#9a9a9a"/>
  13. <meta name="color:Background" content="#fff"/>
  14. <meta name="color:Blockquote" content="#f5f5f5"/>
  15. <meta name="color:Links" content="#656666"/>
  16. <meta name="color:Hover" content="#bcbebe"/>
  17. <meta name="image:sidebar" content=""/>
  18. <meta name="text:link one" content="/" />
  19. <meta name="text:link one title" content="home" />
  20. <meta name="text:link two" content="/ask" />
  21. <meta name="text:link two title" content="message" />
  22. <meta name="text:link three" content="" />
  23. <meta name="text:link three title" content="link" />
  24. <meta name="text:link four" content="" />
  25. <meta name="text:link four title" content="link" />
  26. <meta name="text:link five" content="link" />
  27. <meta name="text:link five title" content="navigation" />
  28. <meta name="text:link six" content="" />
  29. <meta name="text:link six title" content="" />
  30. <meta name="if:click Photo To Reblog" content="1">
  31.  
  32.  
  33. <link rel="shortcut icon" href="{Favicon}">
  34. {block:Description}
  35. <meta name="description" content="{MetaDescription}" />
  36. {/block:Description}
  37.  
  38. <title>{Title}</title>
  39.  
  40. <script type="text/javascript" src="http://static.tumblr.com/iddq6cw/4Gum31dpt/modernise.js">
  41. </script>
  42. <script type="text/javascript"
  43. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  44. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  45.  
  46. <script type="text/javascript" src="scrolltopcontrol.js">
  47. </script>
  48.  
  49. <script type="text/javascript">
  50.  
  51.  
  52. var scrolltotop={
  53. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  54. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  55. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  56. 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"
  57. controlattrs: {offsetx:30, offsety:10}, //offset of control relative to right/ bottom of window corner
  58. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  59.  
  60. state: {isvisible:false, shouldvisible:false},
  61.  
  62. scrollup:function(){
  63. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  64. this.$control.css({opacity:0}) //hide control immediately after clicking it
  65. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  66. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  67. dest=jQuery('#'+dest).offset().top
  68. else
  69. dest=0
  70. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  71. },
  72.  
  73. keepfixed:function(){
  74. var $window=jQuery(window)
  75. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  76. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  77. this.$control.css({left:controlx+'px', top:controly+'px'})
  78. },
  79.  
  80. togglecontrol:function(){
  81. var scrolltop=jQuery(window).scrollTop()
  82. if (!this.cssfixedsupport)
  83. this.keepfixed()
  84. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  85. if (this.state.shouldvisible && !this.state.isvisible){
  86. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  87. this.state.isvisible=true
  88. }
  89. else if (this.state.shouldvisible==false && this.state.isvisible){
  90. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  91. this.state.isvisible=false
  92. }
  93. },
  94.  
  95. init:function(){
  96. jQuery(document).ready(function($){
  97. var mainobj=scrolltotop
  98. var iebrws=document.all
  99. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  100. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  101. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  102. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  103. .attr({title:'Scroll to Top'})
  104. .click(function(){mainobj.scrollup(); return false})
  105. .appendTo('body')
  106. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  107. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  108. mainobj.togglecontrol()
  109. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  110. mainobj.scrollup()
  111. return false
  112. })
  113. $(window).bind('scroll resize', function(e){
  114. mainobj.togglecontrol()
  115. })
  116. })
  117. }
  118. }
  119.  
  120. scrolltotop.init()
  121.  
  122. </script>
  123.  
  124. <style type="text/css">
  125.  
  126. 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: 1.0; -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:0px;width:10px; -webkit-border-radius:4px;border:2px {color:Background} solid;}::-webkit-scrollbar-thumb:horizontal { background-color:{color:Links}; height:0px !important;border:2px {color:Background} solid; -webkit-border-radius:4px;}::-webkit-scrollbar { height:0px; 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;}
  127.  
  128.  
  129.  
  130.  
  131. .sidebar {position:Fixed;margin-top:-140px; {block:IndexPage}margin-left: 260px;{/block:IndexPage} {block:PermalinkPage}margin-left: 295px;{/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}}
  132.  
  133.  
  134.  
  135. .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};}
  136.  
  137.  
  138. #content .posts { {block:IndexPage}width:380px;margin-left:480px;margin-right:auto;{/block:IndexPage} {block:PermalinkPage}width:1200px;margin-left:520px;margin-right:auto;{/block:PermalinkPage} margin-right:auto;margin-top:-4px; position:relative; background-color:transparent;}
  139.  
  140.  
  141. #content
  142.  
  143.  
  144. .posts img { {block:IndexPage} max-width: 370px; margin-top:-2px; {/block:IndexPage} {block:PermalinkPage} max-width: 500px; {/block:PermalinkPage} {block:IfRoundedCorners} -webkit-border-radius:4px; {/block:IfRoundedCorners}}
  145.  
  146. #content
  147.  
  148.  
  149. .entry { {block:IndexPage} overflow:hidden;width:370px; float:left; position: relative; margin-left:0px; padding:2px;margin-bottom:-3px; {/block:IndexPage} z-index:1; {block:PermalinkPage} width:500px; {/block:PermalinkPage} {block:IfAnimatedPostLoad} -webkit-transition-duration:2s; {/block:IfAnimatedPostLoad}}
  150.  
  151.  
  152.  
  153. .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}}
  154.  
  155.  
  156. .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;}
  157.  
  158.  
  159. .why{opacity:1.0}
  160. .why a{padding:2px;padding-bottom:0px;padding-top:0px;}
  161.  
  162.  
  163. {CustomCSS}
  164.  
  165. </style>
  166.  
  167. <script type="text/javascript" src="http://static.tumblr.com/xek1qzw/TKgn8tjki/jquerymsnryv2.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. <a href="/"><img src="{image:sidebar}" width="196px"></a><Br><br>
  222. </div>
  223.  
  224. <div class="why">
  225. <span class="cl" >
  226. {block:HasPages}
  227. {block:Pages}
  228. <a href="{URL}">{Label}</a>
  229. {/block:Pages}
  230. {/block:HasPages}
  231. {block:IfLinkonetitle}<a href="{text:link one}">{text:link one title}</a> {/block:IfLinkonetitle}
  232. {block:IfLinktwotitle} <a href="{text:link two}">{text:link two title}</a> {/block:IfLinktwotitle}
  233. {block:IfLinkthreetitle}<a href="{text:link three}">{text:link three title}</a>{/block:IfLinkthreetitle}
  234. {block:IfLinkfourtitle}<a href="{text:link four}">{text:link four title}</a>{/block:IfLinkfourtitle}
  235. {block:IfLinkfivetitle}<a href="{text:link five}">{text:link five title}</a>{/block:IfLinkfivetitle}
  236.  
  237. {block:IfLinksixtitle}<a href="{text:link six}">{text:link six title}</a> {/block:IfLinksixtitle}
  238. <Br><br></div><div align="justify">
  239. {block:Description}<center>{Description}</center><Br><Br>{/block:Description}</div></div>
  240. {block:IndexPage}</span>
  241. <div class="column navigation" id="navigation">
  242. {block:Pagination}
  243. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  244. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  245. </div>
  246. {/block:IndexPage}
  247. </div>
  248.  
  249. <div class="posts">
  250. {block:Posts}
  251. <div class="entry">
  252.  
  253.  
  254. {block:Text}
  255. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  256. <div class="stoley">{Body}</div>
  257.  
  258. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  259. <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>
  260. {/block:IndexPage}
  261.  
  262.  
  263. {block:PermalinkPage}
  264.  
  265.  
  266. <div class="kenny">
  267. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  268.  
  269. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  270. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  271. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  272. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  273. {/block:PermalinkPage}
  274. {/block:Text}
  275.  
  276. {block:Photo}
  277. <div class="img">
  278. {block:IndexPage}{block:IfClickPhotoToReblog}<a href="{ReblogURL}">{/block:IfClickPhotoToReblog}{block:IfNotClickPhotoToReblog}<a href="{Permalink}">{/block:IfNotClickPhotoToReblog}{/block:IndexPage}
  279. {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
  280. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="370px" {/block:IndexPage}{block:PermalinkPage}width="500px"{/block:PermalinkPage}/>
  281. </a>
  282. </div>
  283.  
  284.  
  285. {block:PermalinkPage}
  286. {block:Caption}{Caption}{/block:Caption}<br>
  287. <div class="kenny">
  288. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  289.  
  290. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  291. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  292. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  293. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  294. {/block:PermalinkPage}
  295. {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}
  296. {/block:Photo}
  297.  
  298.  
  299. {block:Photoset}
  300.  
  301. {block:IndexPage}<center>{Photoset-250}</center>{/block:IndexPage}
  302.  
  303. {block:PermalinkPage}<Center>
  304. {Photoset-500}</center><br>{block:Caption}{Caption}<br><br>{/block:Caption}
  305. {/block:PermalinkPage}
  306. {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}
  307. {block:PermalinkPage}
  308.  
  309.  
  310. <div class="kenny">
  311. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  312.  
  313. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  314. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  315. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  316. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  317. {/block:PermalinkPage}
  318. {/block:Photoset}
  319.  
  320.  
  321. {block:Quote}
  322. <div align="left"><i>{Quote}</i></div>
  323. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  324.  
  325. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  326. <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>
  327. {/block:IndexPage}
  328.  
  329. {block:PermalinkPage}
  330.  
  331.  
  332. <div class="kenny">
  333. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  334.  
  335. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  336. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  337. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  338. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  339. {/block:PermalinkPage}
  340. {/block:Quote}
  341.  
  342.  
  343. {block:Link}
  344. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  345. {block:Description} {Description}{/block:Description}
  346.  
  347. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  348. <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>
  349. {/block:IndexPage}
  350.  
  351.  
  352. {block:PermalinkPage}
  353.  
  354.  
  355. <div class="kenny">
  356. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  357.  
  358. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  359. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  360. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  361. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  362. {/block:PermalinkPage}
  363. {/block:Link}
  364.  
  365. {block:Video}
  366. {block:PermalinkPage}<div class="video">{Video-500}
  367. </div>{/block:PermalinkPage}
  368.  
  369. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  370. <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>
  371. {/block:IndexPage}
  372.  
  373.  
  374. {block:PermalinkPage}
  375.  
  376.  
  377. <div class="kenny">
  378. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  379.  
  380. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  381. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  382. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  383. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  384. {/block:PermalinkPage}
  385. {/block:Video}
  386.  
  387.  
  388. {block:Chat}
  389. {block:Title}
  390. <div class="heading"><a href="{Permalink}">{Title}</a></div>
  391. {/block:Title}
  392. <div class="chat ul">
  393. {block:Lines}
  394. <li class="{Alt} user_{UserNumber}">
  395. {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
  396. {/block:Lines}</div></li>
  397.  
  398. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  399. <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>
  400. {/block:IndexPage}
  401.  
  402. {block:PermalinkPage}
  403.  
  404.  
  405. <div class="kenny">
  406. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  407.  
  408. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  409. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  410. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  411. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  412. {/block:PermalinkPage}
  413. {/block:Chat}
  414.  
  415.  
  416.  
  417. {block:Audio}{block:PermalinkPage}{block:AlbumArt}
  418. <img src="{AlbumArtURL}" style="width:500px;">{/block:AlbumArt}{/block:PermalinkPage}{block:IndexPage}
  419. {block:AlbumArt}
  420. <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}
  421. <div class="audioplayer" style="max-width:220px;overflow:hidden;">{AudioPlayerGrey}</div>
  422. {block:Caption}{Caption}{/block:Caption}
  423. {block:PermalinkPage}
  424. <br>{PlayCountWithLabel}{/block:PermalinkPage}
  425.  
  426. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  427. <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>
  428. {/block:IndexPage}
  429.  
  430.  
  431. {block:PermalinkPage}
  432.  
  433.  
  434. <div class="kenny">
  435. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  436.  
  437. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  438. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  439. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  440. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  441. {/block:PermalinkPage}
  442. {/block:Audio}
  443.  
  444.  
  445. {block:Answer}
  446. <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>
  447.  
  448. {block:IndexPage}<div class="vriska"><div style="font-size:8px;text-align:center;text-decoration:underline;">
  449. <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>
  450. {/block:IndexPage}
  451.  
  452. {block:PermalinkPage}
  453.  
  454.  
  455. <div class="kenny">
  456. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  457.  
  458. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  459. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  460. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  461. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  462. {/block:PermalinkPage}
  463. {/block:Answer}
  464.  
  465.  
  466. </div>
  467. {block:ContentSource}
  468. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  469. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  470. {/block:SourceLogo}
  471. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  472. {/block:ContentSource}
  473. {/block:Posts}
  474. </div>
  475.  
  476. <div class="clear"></div>
  477. </div>
  478.  
  479. </div>
  480.  
  481. </div>
  482.  
  483.  
  484. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/2MFlzww4p/likenew.js"></script>
  485.  
  486. <script type="text/javascript">autoscale(new Array('object', 'embed'));</script>
  487.  
  488. <script type="text/javascript" src="http://static.tumblr.com/iddq6cw/cz1m316ry/arny.js"></script>
  489. <iframe id="likeiframe" style="display:none;"></iframe>
  490. </body>
  491.  
  492.  
  493.  
  494. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement