MBella

Gallows Tumblr 5 Grid Theme Code

Sep 23rd, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.78 KB | None | 0 0
  1. <!-- Gallows Theme by Modernise (modernise.tumblr.com), please leave at least ONE credit link <3! -->
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7.  
  8. <meta name="font:Text" content="georgia"/>
  9. <meta name="text:Font Size" content="9px"/>
  10. <meta name="color:Text" content="#888"/>
  11. <meta name="color:Background" content="#fff"/>
  12. <meta name="color:Post" content="#fff"/>
  13. <meta name="color:Borders" content="#cccccc"/>
  14. <meta name="color:Blockquote" content="#f5f5f5"/>
  15. <meta name="color:Links" content="#000"/>
  16. <meta name="color:Hover" content="#ccc"/>
  17. <meta name="color:Permalink" content="#fff"/>
  18. <meta name="color:Permalink Background" content="#FFF"/>
  19. <meta name="image:Background" content=""/>
  20. <meta name="image:Header" content=""/>
  21. <meta name="if:Header Image" content="0"/>
  22. <meta name="if:Title Font" content="1"/>
  23.  
  24. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  25.  
  26. <script type="text/javascript" src="scrolltopcontrol.js">
  27. </script>
  28.  
  29. <script type="text/javascript">
  30.  
  31.  
  32. var scrolltotop={
  33. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  34. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  35. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  36. controlHTML: '<img src="http://static.tumblr.com/iddq6cw/72ilx9oh5/top.png" style="filter:alpha(opacity=70); -moz-opacity:0.7; width:50px; height:50px" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  37. controlattrs: {offsetx:20, offsety:20}, //offset of control relative to right/ bottom of window corner
  38. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  39.  
  40. state: {isvisible:false, shouldvisible:false},
  41.  
  42. scrollup:function(){
  43. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  44. this.$control.css({opacity:0}) //hide control immediately after clicking it
  45. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  46. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  47. dest=jQuery('#'+dest).offset().top
  48. else
  49. dest=0
  50. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  51. },
  52.  
  53. keepfixed:function(){
  54. var $window=jQuery(window)
  55. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  56. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  57. this.$control.css({left:controlx+'px', top:controly+'px'})
  58. },
  59.  
  60. togglecontrol:function(){
  61. var scrolltop=jQuery(window).scrollTop()
  62. if (!this.cssfixedsupport)
  63. this.keepfixed()
  64. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  65. if (this.state.shouldvisible && !this.state.isvisible){
  66. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  67. this.state.isvisible=true
  68. }
  69. else if (this.state.shouldvisible==false && this.state.isvisible){
  70. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  71. this.state.isvisible=false
  72. }
  73. },
  74.  
  75. init:function(){
  76. jQuery(document).ready(function($){
  77. var mainobj=scrolltotop
  78. var iebrws=document.all
  79. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  80. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  81. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  82. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  83. .attr({title:'Scroll to Top'})
  84. .click(function(){mainobj.scrollup(); return false})
  85. .appendTo('body')
  86. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  87. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  88. mainobj.togglecontrol()
  89. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  90. mainobj.scrollup()
  91. return false
  92. })
  93. $(window).bind('scroll resize', function(e){
  94. mainobj.togglecontrol()
  95. })
  96. })
  97. }
  98. }
  99.  
  100. scrolltotop.init()
  101.  
  102. </script>
  103.  
  104.  
  105.  
  106. <link rel="shortcut icon" href="{Favicon}">
  107. {block:Description}
  108.  
  109. <meta name="description" content="{MetaDescription}" />
  110. {/block:Description}
  111.  
  112. <title>{Title}</title>
  113.  
  114.  
  115.  
  116.  
  117.  
  118. <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
  119. <script type="text/javascript">
  120. $(document).ready(function () {
  121. $(‘li.drawer div:nth-child(2)’).hide();
  122. $(‘li.drawer h4’).click(function () {
  123. if ($(this).hasClass(‘open’)) {
  124. $(‘li.drawer div:visible:nth-child(2)’).slideUp().prev().removeClass(‘open’);}
  125. else {
  126. $(‘li.drawer div:visible:nth-child(2)’).slideUp().prev().removeClass(‘open’);
  127. $(this).next().slideDown();
  128. $(this).addClass(‘open’);}
  129. });
  130. });
  131. </script>
  132. </head>
  133.  
  134.  
  135. <style type="text/css">
  136.  
  137. @font-face {
  138.  
  139. font-family:basket;
  140. src: url('http://static.tumblr.com/ejm8w78/JDllviajb/marketingscript.ttf');
  141. }
  142.  
  143. 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;}
  144.  
  145. 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;}
  146.  
  147. body {
  148. font-family:{font:Text};
  149. color:{color:Text};letter-spacing:1px;
  150. background-color:{color:background};
  151. background-image:url('{image:Background}');
  152. background-color:{color:Background};
  153. background-repeat: repeat;
  154. background-position: top center;
  155. background-attachment: fixed;
  156. text-align:justify;
  157. cursor:crosshair;
  158.  
  159. }
  160.  
  161. .token {
  162. line-height:9px;
  163. font-size:9px;
  164. letter-spacing:1px;
  165. }
  166.  
  167. .ass {
  168. padding:1px;
  169. }
  170.  
  171.  
  172.  
  173. .sidebar {
  174. max-width:500px;
  175. background-color:{color:Posts};
  176. z-index:1;
  177. margin-left:auto;margin-right:auto;
  178. position:relative;
  179. text-align:center;
  180. margin-top:70px;margin-bottom:80px;
  181. }
  182.  
  183. #content {
  184. width:100%; margin-left:auto; margin-right:auto;
  185. position: relative;cursor:crosshair;
  186. }
  187.  
  188.  
  189. #content .posts {
  190. width:1150px; {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  191. left:auto; right:auto;margin-top:0px;margin-left:auto;margin-right:auto;
  192. position:relative;
  193. }
  194.  
  195. #content .posts img {
  196. {block:IndexPage}max-width: 225px; {/block:IndexPage}
  197. {block:PermalinkPage}max-width: 500px; {/block:PermalinkPage}
  198. }
  199.  
  200.  
  201. #content .entry {
  202. {block:IndexPage}width: 225px; float:left;
  203. position: relative;
  204. {/block:IndexPage}
  205. margin-right:5px;
  206. margin-bottom:5px;
  207. padding:0px;
  208.  
  209. {block:PermalinkPage}width:500px; margin:auto; {/block:PermalinkPage}
  210. background-color:#ffffff;
  211. }
  212.  
  213. #navigation {
  214. width:0px;
  215. margin:auto;
  216. position:absolute;
  217. height:200%;
  218. }
  219.  
  220.  
  221. a {
  222. color:{color:Links};
  223. text-decoration: none;
  224. }
  225.  
  226. a:hover {
  227. color:{color:Hover};
  228. -webkit-transition-duration: 1s;
  229. text-decoration: none;cursor:crosshair;
  230.  
  231. }
  232.  
  233. .heading {
  234. font-family:{font:Text};
  235. font-size:15px;
  236. text-decoration: none;
  237. letter-spacing:0px;
  238. font-weight:none;line-height:100%;
  239. margin-bottom:0px;text-align:left;
  240. }
  241.  
  242.  
  243. ::-webkit-scrollbar-thumb:vertical {
  244.  
  245. background-color:{color:Links};
  246. height:auto;-webkit-border-radius:20px;
  247. }
  248.  
  249. ::-webkit-scrollbar-thumb:horizontal {
  250.  
  251. background-color:{color:Links};
  252. height:6px !important;-webkit-border-radius:20px;
  253. }
  254.  
  255. ::-webkit-scrollbar {
  256. height:6px;
  257. width:6px;
  258. background-color:{color:Background};
  259. -webkit-border-radius:20px;
  260. }
  261.  
  262. .chat ul {
  263. padding:0px 0px 0px 0px;
  264. margin:0px 0px 0px 0px;
  265. }
  266.  
  267.  
  268. .chat li {
  269. list-style-type: none;
  270. padding-left:0px;
  271. margin-right:0px;
  272. }
  273.  
  274. .chat li.odd {
  275. color: {color:Text};
  276. }
  277.  
  278. .chat li.even {
  279. color: {color:Links};
  280. }
  281.  
  282. .label {
  283. font-weight: bold;
  284. font-size:9px;
  285. }
  286.  
  287.  
  288. blockquote {
  289. padding-left:5px;padding-top:3px;
  290. padding-right:5px;padding-bottom:3px;
  291. margin-left:5px; margin-right:5px;
  292. border-left: 2px solid {color:Borders};
  293. border-right: 2px solid {color:Borders};
  294. background-color:{color:blockquote};
  295. }
  296.  
  297.  
  298. .stan {
  299. background-color:{color:Blockquote};
  300. }
  301.  
  302. .kyle {
  303. font-style:italic;
  304. line-height:9px;margin-bottom:0px;
  305. }
  306.  
  307.  
  308. .img {
  309. opacity:1;
  310. filter:alpha(opacity=100);
  311. -webkit-transition-duration:1s;
  312. }
  313.  
  314. .img:hover {
  315. opacity:0.8;
  316. filter:alpha(opacity=80);
  317. }
  318.  
  319.  
  320. .audioplayer {
  321. background-color: #fff;
  322. -moz-box-shadow: 3px 3px 4px #ccc;
  323. -webkit-box-shadow: 3px 3px 4px #ccc;
  324. box-shadow: 3px 3px 4px #ccc;
  325. }
  326.  
  327.  
  328. .entry .permalink {
  329. padding-top:0px;
  330. }
  331.  
  332.  
  333.  
  334. .craig {
  335. font-family: helvetica;
  336. font-weight: condensed;
  337. color:black;
  338. font-size:7px;
  339. opacity: 0;
  340. -webkit-transition-duration: 1s;top:0px;
  341. width:225px;
  342. height:8px;padding-bottom:5px;
  343. background-color: #fff;
  344. position: absolute; margin-top:-5px;text-align:center;text-transform:Uppercase;font-family:trebuchet ms;letter-spacing:1px;
  345. display:block;}
  346.  
  347.  
  348. .entry:hover .craig {
  349. {block:indexpage}opacity:0.95;
  350. {/block:indexpage}z-index:999999;margin-top:3px;}
  351.  
  352.  
  353. .permalink {
  354. {block:IndexPage}
  355. float:right;
  356. position: absolute;
  357. margin-top:0px;
  358. opacity: 0;
  359. z-index: 1000;
  360. background-color:{color:Permalink Background};
  361. text-align:right;
  362. {/block:IndexPage}
  363. }
  364.  
  365.  
  366. .stoley {
  367. max-width:225px;
  368. overflow-x:auto;
  369. }
  370.  
  371. .stoley img {
  372. max-width:225px;
  373. }
  374.  
  375.  
  376. .butters a {
  377. margin-top:20px;font-size:50px;color:{color:Hover};-webkit-transition-duration:1s;font-family:{block:IfTitleFont}basket{/block:IfTitleFont}{block:IfNotTitleFont}georgia{/block:IfNotTitleFont};letter-spacing:-1px;line-height:90%;font-style:italic;max-width:800px;
  378. }
  379.  
  380. .butters a:hover {
  381. color:{color:Links};
  382. }
  383.  
  384. .kenny {
  385. width:500px;
  386. opacity: 1;
  387. z-index: 10000;
  388. margin-top:0px;
  389. margin-left:0px;
  390. margin-right:auto;
  391. text-align:right;font-family:trebuchet ms; font-size:7px;letter-spacing:1px;text-transform:uppercase;
  392. }
  393.  
  394. u {
  395. color: #8DBA5C;
  396. border-bottom: 1px dashed #888;
  397. }
  398.  
  399. b.STRONG {
  400. letter-spacing:2px;
  401. font-size:9px;
  402. font-weight:bold;
  403. }
  404.  
  405. .tweek a {
  406. font-size:15px;
  407. line-height:100%;
  408. padding:2px;
  409. color:{color:Hover};
  410. -webkit-transition-duration:1s;z-index:999999;
  411. }
  412.  
  413. .tweek a: hover {
  414. color:{color:Link};
  415. }
  416. .cartman {
  417. margin-top:0;
  418. margin-left:0px;
  419. margin-right:auto;
  420. margin-bottom:0px;
  421. width:500px;
  422. text-align:left;
  423. background-color:#fff;
  424. max-height:150px;
  425. overflow-x:scroll;
  426. }
  427.  
  428. .wendy {
  429. font-size:9px;
  430. line-height:9px;
  431. letter-spacing:1px;
  432. text-align:center;width:500px;margin-left:auto;margin-right:auto;}
  433. }
  434.  
  435.  
  436. .video embed, .video object, .video iframe{
  437. {block:IndexPage}
  438. width:225px /**/ !important;{/block:IndexPage}
  439. {block:PermalinkPage}width:500px !important;
  440. {/block:PermalinkPage}
  441. height:auto !important;
  442. }
  443.  
  444.  
  445. .album-art {
  446. float: left;
  447. width: 100px;
  448. height: 100px;
  449. overflow: hidden;
  450. }
  451.  
  452. #meow{
  453. color:{color:Links};
  454. }
  455.  
  456. #meow a {
  457. display:relative;
  458. max-width:500px;
  459. text-align:center;color:{color:Links};
  460. }
  461.  
  462. #meow .cat {
  463. margin-top:-10px;
  464. filter: alpha(opacity = 0);
  465. opacity:0;
  466. -webkit-transition: all 1s ease-out;
  467. -moz-transition: all 1s ease-out;transition: all 1s ease-out;
  468. text-align:center;text-transform:lowercase;
  469. }
  470.  
  471. #meow:hover .cat {
  472. margin-top:5px;
  473. -webkit-transition: all 1s ease-out;
  474. -moz-transition: all 1s ease-out;transition: all 1s ease-out;
  475. filter: alpha(opacity = 80);
  476. filter: alpha(opacity = 100);
  477. opacity:100;
  478. }
  479.  
  480. </style>
  481.  
  482. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  483. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
  484. </script>
  485.  
  486. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  487.  
  488. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  489.  
  490. <script type="text/javascript">
  491.  
  492. $(window).load(function () {
  493. $('.posts').masonry(),
  494. $('.masonryWrap').infinitescroll({
  495. navSelector : "div#navigation",
  496. // selector for the paged navigation (it will be hidden)
  497. nextSelector : "div#navigation a#nextPage",
  498. // selector for the NEXT link (to page 2)
  499. itemSelector : ".entry",
  500. // selector for all items you'll retrieve
  501. bufferPx : 10000,
  502. extraScrollPx: 10,
  503. loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
  504. loadingText : "<em></em>",
  505. },
  506. // call masonry as a callback.
  507. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  508. );
  509. });
  510. </script>
  511.  
  512.  
  513.  
  514. </head>
  515.  
  516. <body>
  517.  
  518. <div class="token">
  519.  
  520. <div id="content">
  521.  
  522. <div class="sidebar">
  523.  
  524. <div class="butters">
  525. <a href="/"><center>
  526. {block:IfHeaderImage}<img src="{image:Header}" width="250">{/block:IfHeaderImage}{block:IfNotHeaderImage}{Title}{/block:IfNotHeaderImage}
  527. </center></a>
  528. </div>
  529. <div class="wendy">{Description}<br><br>
  530.  
  531. <div style="font-family:trebuchet ms;font-size:9px;">
  532. <div id="meow">
  533. NAVIGATE
  534. <div class="cat">
  535. <a href="/ask"><span>message&nbsp;&nbsp;</span></a>
  536. <a href="/archive"><span>history&nbsp;&nbsp;</span></a>{block:HasPages}{block:Pages}
  537. <a href="{URL}"><span>{Label}&nbsp;&nbsp;</span></a>{/block:Pages}{/block:HasPages}
  538.  
  539. <a href="http://modernise.tumblr.com"><span>theme</span></a></div>
  540. </div>
  541. </div>
  542.  
  543. </div>
  544. {block:IndexPage}
  545. <div class="column navigation" id="navigation">
  546. {block:Pagination}
  547. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  548. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  549. </div>
  550. {/block:IndexPage}
  551.  
  552.  
  553.  
  554. </div>
  555. <div class="posts">
  556. {block:Posts}
  557. <div class="entry">
  558.  
  559.  
  560. {block:Text}
  561. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  562. {Body}
  563.  
  564. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  565.  
  566. {/block:Text}
  567.  
  568. {block:Photo}
  569.  
  570. <div class="img">
  571. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  572. {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
  573. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="225"{/block:IndexPage}{block:PermalinkPage}width="500"{/block:PermalinkPage}/>
  574. </a>
  575. </div>
  576.  
  577. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  578.  
  579. {block:PermalinkPage}
  580. {block:Caption}{Caption}{/block:Caption}<br>
  581. {/block:PermalinkPage}
  582.  
  583.  
  584.  
  585.  
  586. {block:PermalinkPage}
  587.  
  588.  
  589. <div class="kenny">
  590. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  591.  
  592. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  593. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  594. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  595. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  596. {/block:PermalinkPage}
  597.  
  598. {/block:Photo}
  599.  
  600.  
  601. {block:Photoset}
  602.  
  603.  
  604. {block:IndexPage}{block:Photos}<a href="{permalink}"><img src="{PhotoURL-500}" width="225" /></a>
  605. {/block:Photos}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  606.  
  607. {block:PermalinkPage}
  608. {Photoset-500}<br>{block:Caption}{Caption}<br><br>{/block:Caption}
  609. {/block:PermalinkPage}
  610. {/block:Photoset}
  611.  
  612.  
  613. {block:Quote}
  614. <a href="{permalink}"><div class="heading"><i>{Quote}</i></div></a>
  615. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  616.  
  617. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  618. {/block:Quote}
  619.  
  620.  
  621. {block:Link}
  622. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  623. {block:Description} {Description}{/block:Description}
  624.  
  625. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  626. {/block:Link}
  627.  
  628. {block:Video}
  629. {block:PermalinkPage}<div class="video">{Video-500}
  630. </div>{/block:PermalinkPage}
  631.  
  632. {block:IndexPage}<div class="video" width="225">{Video-250}
  633. </div><div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  634. {/block:Video}
  635.  
  636.  
  637. {block:Chat}
  638. {block:Title}
  639. <div class="heading"><a href="{Permalink}">{Title}</a></div>
  640. {/block:Title}
  641. <div class="chat ul">
  642. {block:Lines}
  643. <li class="{Alt} user_{UserNumber}">
  644. {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
  645. {/block:Lines}</div></li>
  646.  
  647. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  648. {/block:Chat}
  649.  
  650.  
  651.  
  652. {block:Audio}{block:PermalinkPage}
  653. {block:AlbumArt}<div class="album-art"><img src="{AlbumArtURL}" height="100px"></div>{/block:AlbumArt}{/block:PermalinkPage}
  654. <div class="audioplayer">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}
  655. {block:PermalinkPage}
  656. {block:TrackName}<br><br>
  657. <b>{TrackName}</b>
  658. {/block:TrackName} by {block:Artist}
  659. {Artist}
  660. {/block:Artist}<br>{PlayCountWithLabel}{/block:PermalinkPage}
  661.  
  662. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  663. {/block:Audio}
  664.  
  665.  
  666. {block:Answer}
  667. <div style="text-align:left;padding-left:5px;padding-right:5px;border-left: 2px solid {color:Links};border-right: 2px solid {color:Links};background-color:{color:blockquote};"><div class="stan">{Asker}: {Question}</div></div><div style="text-align:left;"><div class="kyle">{Answer}</div></div>
  668.  
  669. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  670. {/block:Answer}
  671.  
  672.  
  673. </div>
  674.  
  675. {/block:Posts}
  676. </div></div>
  677.  
  678.  
  679. </div>
  680.  
  681. </div><div style="display:block;bottom:5px;left:5px;font-size:9px;font-family:georgia;position:fixed;background-color:#000;padding:3px;border-radius:10px;z-index:55554235555;">theme by <a href="http://modernise.tumblr.com"><span style="color:#fff;">modernise</span></a></div>
  682. </body>
  683.  
  684.  
  685. </html>
Add Comment
Please, Sign In to add comment