Advertisement
freakinaye

theme 16

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