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