Advertisement
freakinaye

theme 18

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