Advertisement
vrisky

catnip

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