Advertisement
vrisky

arachnids

Jul 24th, 2012
39,540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.33 KB | None | 0 0
  1. <!-- Arachnids 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="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.  
  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://static.tumblr.com/iddq6cw/72ilx9oh5/top.png" 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"
  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}</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://static.tumblr.com/ejm8w78/luUlvia92/glasket500.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:500px;
  224. background-color:{color:background};
  225. z-index:1;
  226. margin:auto;
  227. position:relative;
  228. text-align:center;
  229. margin-bottom:20px;
  230. margin-top:20px;
  231. }
  232.  
  233. #content {
  234. width:100%; margin-left:auto; margin-right:auto;
  235. position: relative;
  236. }
  237.  
  238.  
  239. #content .posts {
  240. width:1020px; {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  241. margin-left:auto; margin-right:auto;margin-top:10px;
  242. position:relative;
  243. }
  244.  
  245. #content .posts img {
  246. {block:IndexPage}max-width: 250; {/block:IndexPage}
  247. {block:PermalinkPage}max-width: 500px; {/block:PermalinkPage}
  248. }
  249.  
  250.  
  251. #content .entry {
  252. {block:IndexPage}width: 250px;
  253. margin-right:5px;
  254. margin-bottom:5px;
  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. opacity:0.8;
  359. filter:alpha(opacity=80);
  360. -webkit-transition-duration:1s;
  361. -webkit-box-shadow:2px 2px 3px 1px #ccc;
  362. -moz-box-shadow:2px 2px 3px 1px #ccc;
  363. box-shadow:2px 2px 3px 1px #ccc;
  364. }
  365.  
  366. .img:hover {
  367. opacity:1;
  368. filter:alpha(opacity=100);
  369. }
  370.  
  371.  
  372. .audioplayer {
  373. background-color: #fff;
  374.  
  375. -moz-box-shadow: 3px 3px 4px #ccc;
  376. -webkit-box-shadow: 3px 3px 4px #ccc;
  377. box-shadow: 3px 3px 4px #ccc;
  378. }
  379.  
  380.  
  381. .entry:hover .craig {
  382. {block:indexpage}opacity:0.75;
  383. {/block:indexpage}z-index:1000;padding-right:50px;}
  384.  
  385. .entry .permalink {
  386. padding-right:0px;
  387. }
  388.  
  389.  
  390.  
  391. .craig {
  392. font-size: 13px;
  393. font-family: helvetica;
  394. font-weight: condensed;
  395. opacity: 0;
  396. padding-left:6px;
  397. -webkit-transition-duration: 1s;right:0px;
  398. width:auto;
  399. background-color: {color:Permalink Background};
  400. position: absolute; margin-top: -18px;
  401. border-bottom-left-radius:20px;
  402. border-top-left-radius:20px;
  403. display:block;}
  404.  
  405. .permalink {
  406. {block:IndexPage}
  407. float:right;
  408. position: absolute;
  409. margin-left:0px;
  410. margin-bottom:0px;
  411. opacity: 0;
  412. z-index: 1000;
  413. background-color:{color:Permalink Background};
  414. text-align:right;
  415. {/block:IndexPage}
  416. }
  417.  
  418.  
  419. .stoley {
  420. max-width:250px;
  421. }
  422.  
  423. .stoley img {
  424. max-width:250px;
  425. }
  426.  
  427.  
  428. .butters a {
  429. margin-top:20px;font-size:55px;font-color:{color:Links};-webkit-transition-duration:1s;font-family:basket;line-height:60px;
  430. }
  431.  
  432. .butters a:hover {
  433. font-color:{color:Hover};
  434. }
  435.  
  436. .kenny {
  437. width:500px;
  438. opacity: 1;
  439. z-index: 10000;
  440. margin-top:0px;
  441. margin-left:0px;
  442. margin-right:auto;
  443. text-align:right;
  444. }
  445.  
  446. u {
  447. color: #8DBA5C;
  448. border-bottom: 1px dashed #888;
  449. }
  450.  
  451. b.STRONG {
  452. letter-spacing:2px;
  453. font-size:9px;
  454. font-weight:bold;
  455. }
  456.  
  457. .tweek a {
  458. font-size:15px;
  459. line-height:100%;
  460. padding:2px;
  461. color:{color:Hover};
  462. -webkit-transition-duration:1s;
  463. }
  464.  
  465. .tweek a: hover {
  466. color:{color:Link};
  467.  
  468. .cartman {
  469. margin-top:0;
  470. margin-left:20px;
  471. margin-right:auto;
  472. margin-bottom:0px;
  473. width:500px;
  474. text-align:left
  475. max-height:300px;
  476. overflow-x:auto;
  477. }
  478.  
  479. .wendy {
  480. font-size:9px;
  481. line-height:9px;
  482. letter-spacing:1px;
  483. }
  484.  
  485. .wendy a{
  486. padding:0px;
  487. }
  488.  
  489. .wendy a:hover {
  490. padding-left:5px;
  491. }
  492.  
  493.  
  494.  
  495. .video embed, .video object, .video iframe{
  496. {block:IndexPage}
  497. width:250px /**/ !important;{/block:IndexPage}
  498. {block:PermalinkPage}width:500px !important;
  499. {/block:PermalinkPage}
  500. height:auto !important;
  501. }
  502.  
  503.  
  504. #fade { /*--Transparent background layer--*/
  505. display: none; /*--hidden by default--*/
  506. background: #000;
  507. position: fixed; left: 0; top: 0;
  508. width: 100%; height: 100%;
  509. opacity: .80;
  510. z-index: 9999;
  511. }
  512. .popup_block{
  513. display: none; /*--hidden by default--*/
  514. background: #fff;
  515. padding: 20px;
  516. border: 20px solid #ddd;
  517. float: left;
  518. font-size: 9px;
  519. position: fixed;
  520. top: 50%; left: 50%;
  521. z-index: 99999;
  522. /*--CSS3 Box Shadows--*/
  523. -webkit-box-shadow: 0px 0px 20px #000;
  524. -moz-box-shadow: 0px 0px 20px #000;
  525. box-shadow: 0px 0px 20px #000;
  526. /*--CSS3 Rounded Corners--*/
  527. -webkit-border-radius: 10px;
  528. -moz-border-radius: 10px;
  529. border-radius: 10px;
  530. }
  531. img.btn_close {
  532. float: right;
  533. margin: -5px -5px 0 0;display:block;
  534. }
  535. /*--Making IE6 Understand Fixed Positioning--*/
  536. *html #fade {
  537. position: absolute;
  538. }
  539. *html .popup_block {
  540. position: absolute;
  541. }
  542.  
  543.  
  544. .album-art {
  545. float: left;
  546. width: 196px;
  547. height: 196px;
  548. overflow: hidden;
  549. }
  550.  
  551. </style>
  552.  
  553. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  554. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
  555. </script>
  556.  
  557. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  558.  
  559. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  560.  
  561. <script type="text/javascript">
  562.  
  563. $(window).load(function () {
  564. $('.posts').masonry(),
  565. $('.masonryWrap').infinitescroll({
  566. navSelector : "div#navigation",
  567. // selector for the paged navigation (it will be hidden)
  568. nextSelector : "div#navigation a#nextPage",
  569. // selector for the NEXT link (to page 2)
  570. itemSelector : ".entry",
  571. // selector for all items you'll retrieve
  572. bufferPx : 10000,
  573. extraScrollPx: 11000,
  574. loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
  575. loadingText : "<em></em>",
  576. },
  577. // call masonry as a callback.
  578. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  579. );
  580. });
  581. </script>
  582.  
  583.  
  584.  
  585. </head>
  586.  
  587. <body>
  588. <div class="token">
  589. <div id="content">
  590.  
  591.  
  592. <div class="butters"><a href="/"><center>{Title}</center></a></div>
  593. <div class="sidebar"><div class="wendy">{description}</div><br><br><a href="#?w=300" rel="03" class="poplight">links</a>
  594.  
  595.  
  596. {block:IndexPage}
  597. <div class="column navigation" id="navigation">
  598. {block:Pagination}
  599. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  600. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  601. </div>
  602. {/block:IndexPage}
  603.  
  604.  
  605.  
  606. </div>
  607. <div class="posts">
  608. {block:Posts}
  609. <div class="entry">
  610.  
  611.  
  612. {block:Text}
  613. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  614. {Body}
  615.  
  616.  
  617. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  618.  
  619. {/block:Text}
  620.  
  621. {block:Photo}
  622.  
  623. <div class="img">
  624. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  625. {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
  626. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="250"{/block:IndexPage}{block:PermalinkPage}width="500"{/block:PermalinkPage}/>
  627. </a>
  628. </div>
  629.  
  630. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  631.  
  632.  
  633. {block:PermalinkPage}
  634. {block:Caption}<br>{Caption}{/block:Caption}<br>
  635. {/block:PermalinkPage}
  636. {/block:Photo}
  637.  
  638.  
  639. {block:Photoset}
  640.  
  641.  
  642.  
  643. {block:IndexPage}{Photoset-250}<br><div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  644.  
  645. {block:PermalinkPage}
  646. {Photoset-500}<br>{block:Caption}{Caption}<br><br>{/block:Caption}
  647. {/block:PermalinkPage}
  648. {/block:Photoset}
  649.  
  650.  
  651. {block:Quote}
  652. <a href="{permalink}"><div class="heading">{Quote}</div></a>
  653. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  654.  
  655. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  656. {/block:Quote}
  657.  
  658.  
  659. {block:Link}
  660. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  661. {block:Description} {Description}{/block:Description}
  662.  
  663. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  664. {/block:Link}
  665.  
  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. <div id="03" class="popup_block">
  736. <div align="center"><a href="/ask">Message</a> ⋅ <A href="/archive">Archive</a> ⋅ <a href="/submit">Submit</a> ⋅ <A href="http://modernise.tumblr.com">Theme</a>{block:HasPages}{block:Pages} ⋅ <a href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages}
  737. </div></div>
  738.  
  739.  
  740. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement