Advertisement
vrisky

carcino

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