Don't like ads? PRO users don't see any ads ;-)
Guest

Theme 24

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