Advertisement
freakinaye

Theme 20

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