Advertisement
vrisky

capricious

Jul 24th, 2012
41,980
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.91 KB | None | 0 0
  1. <!-- Capricious 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="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.  
  115. </head>
  116.  
  117.  
  118. <style type="text/css">
  119.  
  120. @font-face {
  121.  
  122. font-family:basket;
  123. src: url('http://static.tumblr.com/ejm8w78/Tvblviabv/super_chargers.ttf');
  124. }
  125.  
  126. 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;}
  127.  
  128. 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;}
  129.  
  130. #fade { /*--Transparent background layer--*/
  131. display: none; /*--hidden by default--*/
  132. background: #fff;
  133. position: fixed; left: 0; top: 0;
  134. width: 100%; height: 100%;
  135. opacity: .10;
  136. z-index: 99999;
  137. }
  138. .popup_block{
  139. display: none; /*--hidden by default--*/
  140. background: #fff;
  141. padding: 10px;
  142. border: 0;
  143. float: left;
  144. font-size: 9px;
  145. position: fixed;
  146. top: 20%; left: 50%;
  147. z-index: 999999;
  148. -webkit-box-shadow: 0px 0px 20px #000;
  149. -moz-box-shadow: 0px 0px 20px #000;
  150. box-shadow: 0px 0px 20px #000;
  151. }
  152. img.btn_close {
  153. float: left;display:block;
  154. margin: -5px -5px 0 0;
  155. }
  156. /*--Making IE6 Understand Fixed Positioning--*/
  157. *html #fade {
  158. position: absolute;
  159. }
  160. *html .popup_block {
  161. position: absolute;
  162. }
  163.  
  164.  
  165.  
  166. 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;}
  167.  
  168.  
  169. body {
  170. font-family:{font:Text};
  171. background-color:{color:background};
  172. background-image:url({image:Background});
  173. background-repeat: repeat;
  174. background-position: top center;
  175. background-attachment: fixed;
  176. text-align:justify;
  177. {block:PermalinkPage}line-height:9px;font-size:9px;
  178. letter-spacing:0px;{/block:PermalinkPage}
  179.  
  180. }
  181.  
  182. .token {
  183. {block:IndexPage}line-height:9px;
  184. font-size:9px;
  185. letter-spacing:0px;{/block:IndexPage}
  186. }
  187.  
  188. .ass {
  189. padding:1px;
  190. }
  191.  
  192.  
  193. .sidebar {
  194. max-width:200px;
  195. background-color:{color:background};
  196. z-index:1;
  197. margin-left:30px;
  198. position:fixed;
  199. text-align:left;
  200. bottom:30px;
  201. }
  202.  
  203. #content {
  204. width:100%; margin-left:auto; margin-right:auto;
  205. position: relative;
  206. }
  207.  
  208.  
  209. #content .posts {
  210. width:860px; {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  211. margin-left:260px; margin-right:auto;margin-top:30px;
  212. position:relative;
  213. }
  214.  
  215. #content .posts img {
  216. {block:IndexPage}max-width: 500px;{/block:IndexPage}
  217. {block:PermalinkPage}max-width: 500px; {/block:PermalinkPage}
  218. }
  219.  
  220.  
  221. #content .entry {
  222. {block:IndexPage}width: 400px;
  223. margin-right:30px;
  224. margin-bottom:30px;
  225. padding:0px;
  226. float:left;
  227. position: relative;
  228. {/block:IndexPage}
  229.  
  230. {block:PermalinkPage}width:500px; margin:auto; {/block:PermalinkPage}
  231. background-color:{color:post background};
  232. }
  233.  
  234. #navigation {
  235. width:0px;
  236. margin:auto;
  237. position:absolute;
  238. }
  239.  
  240.  
  241. a {
  242. color:{color:Links};
  243. text-decoration: none;
  244. }
  245.  
  246. a:hover {
  247. color:{color:Hover};
  248. -webkit-transition-duration: 1s;
  249. text-decoration: none;
  250.  
  251. }
  252.  
  253. .heading {
  254. font-family:{font:Text};
  255. font-size:15px;
  256. text-decoration: none;
  257. letter-spacing:0px;
  258. font-weight:none;line-height:100%;
  259. margin-bottom:0px;text-align:left;
  260. }
  261.  
  262.  
  263. ::-webkit-scrollbar-thumb:vertical {
  264. background-color:{color:Links};
  265. height:auto;-webkit-border-radius:20px;
  266. }
  267.  
  268. ::-webkit-scrollbar-thumb:horizontal {
  269. background-color:{color:Links};
  270. height:6px !important;-webkit-border-radius:20px;
  271. }
  272.  
  273. ::-webkit-scrollbar {
  274. height:6px;
  275. width:6px;
  276. background-color:#FFF;
  277. -webkit-border-radius:20px;
  278. }
  279.  
  280.  
  281.  
  282. .chat ul {
  283. padding:0px 0px 2px 2px;
  284. margin:0px 0px 2px 1px;
  285. }
  286.  
  287.  
  288. .chat li {
  289. list-style-type: none;
  290. padding-left:0px;
  291. margin-right:40px;
  292. }
  293.  
  294. .chat li.odd {
  295. color: {color:Text};
  296. }
  297.  
  298. .chat li.even {
  299. color: {color:Links};
  300. }
  301.  
  302. .label {
  303. font-weight: bold;
  304. font-size:9px;
  305. }
  306.  
  307.  
  308. blockquote {
  309. padding-left:5px;padding-right:5px;
  310. margin-left:5px; margin-right:5px;
  311. border-left: 2px solid {color:Links};
  312. border-right: 2px solid {color:Links};
  313. background-color:{color:blockquote};
  314. }
  315.  
  316.  
  317. .stan {
  318. background-color:{color:Blockquote};
  319. }
  320.  
  321. .kyle {
  322. font-style:italic;
  323. line-height:9px;margin-bottom:0px;
  324. }
  325.  
  326.  
  327. .img {
  328. opacity:1;
  329. filter:alpha(opacity=100);
  330. -webkit-transition-duration:1s;
  331. -webkit-box-shadow:2px 2px 3px 1px #ccc;
  332. -moz-box-shadow:2px 2px 3px 1px #ccc;
  333. box-shadow:2px 2px 3px 1px #ccc;
  334. }
  335.  
  336. .img:hover {
  337. opacity:0.8;
  338. filter:alpha(opacity=80);
  339. }
  340.  
  341.  
  342. .audioplayer {
  343. background-color: #fff;
  344.  
  345. -moz-box-shadow: 3px 3px 4px #ccc;
  346. -webkit-box-shadow: 3px 3px 4px #ccc;
  347. box-shadow: 3px 3px 4px #ccc;
  348. }
  349.  
  350.  
  351. .entry:hover .craig {
  352. {block:indexpage}opacity:0.75;
  353. {/block:indexpage}z-index:1000;padding-right:6px;padding-left:15px;}
  354. .entry:hover .bebe {
  355. {block:indexpage}opacity:0.75;
  356. {/block:indexpage}z-index:1000;padding-right:15px;padding-left:6px;}
  357.  
  358. .entry .permalink {
  359. padding-right:0px;
  360. }
  361.  
  362.  
  363. .bebe {
  364. font-family: helvetica;
  365. font-weight: condensed;
  366. opacity: 0;
  367. -webkit-transition-duration: 1s;left:0px;
  368. width:auto;
  369. height:30px;
  370. background-color: {color:Permalink Background};
  371. position: absolute; margin-top: -30px;
  372. border-top-right-radius:50px;
  373. display:block;}
  374.  
  375. .craig {
  376. font-family: helvetica;
  377. font-weight: condensed;
  378. opacity: 0;
  379. -webkit-transition-duration: 1s;right:0px;
  380. width:auto;
  381. height:30px;
  382. background-color: {color:Permalink Background};
  383. position: absolute; margin-top: -30px;
  384. border-bottom-left-radius:0px;
  385. border-top-left-radius:50px;
  386. display:block;}
  387.  
  388. .permalink {
  389. {block:IndexPage}
  390. float:right;
  391. position: absolute;
  392. margin-left:0px;
  393. margin-bottom:0px;
  394. line-height:30px;
  395. opacity: 0;
  396. z-index: 1000;
  397. background-color:{color:Permalink Background};
  398. text-align:right;
  399. {/block:IndexPage}
  400. }
  401.  
  402.  
  403. .permalink a {
  404. color:{color:Permalink};
  405. }
  406.  
  407. .stoley {
  408. max-width:400px;
  409. }
  410.  
  411. .stoley img {
  412. max-width:450px;
  413. }
  414.  
  415.  
  416. .butters a {
  417. 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:45px;text-transform:uppercase;
  418. }
  419.  
  420. .butters a:hover {
  421. font-color:{color:Hover};
  422. }
  423.  
  424. .kenny {
  425. width:500px;
  426. opacity: 1;
  427. z-index: 10000;
  428. margin-top:0px;
  429. margin-left:0px;
  430. margin-right:auto;
  431. text-align:right;
  432. }
  433.  
  434. u {
  435. color: #8DBA5C;
  436. border-bottom: 1px dashed #888;
  437. }
  438.  
  439. b.STRONG {
  440. letter-spacing:2px;
  441. font-size:9px;
  442. font-weight:bold;
  443. }
  444.  
  445. .tweek a {
  446. font-size:15px;
  447. line-height:100%;
  448. padding:2px;
  449. color:{color:Hover};
  450. -webkit-transition-duration:1s;
  451. }
  452.  
  453. .tweek a: hover {
  454. color:{color:Link};
  455.  
  456. .cartman {
  457. margin-top:0;
  458. margin-left:20px;
  459. margin-right:auto;
  460. margin-bottom:0px;
  461. width:500px;
  462. text-align:left
  463. max-height:300px;
  464. overflow-x:auto;
  465. }
  466.  
  467. .wendy {
  468. font-size:9px;
  469. line-height:9px;
  470. letter-spacing:1px;
  471. text-align:justify;
  472. }
  473.  
  474.  
  475. .video embed, .video object, .video iframe{
  476. {block:IndexPage}
  477. width:400px /**/ !important;{/block:IndexPage}
  478. {block:PermalinkPage}width:500px !important;
  479. {/block:PermalinkPage}
  480. height:auto !important;
  481. }
  482.  
  483.  
  484. #fade { /*--Transparent background layer--*/
  485. display: none; /*--hidden by default--*/
  486. background: #000;
  487. position: fixed; left: 0; top: 0;
  488. width: 100%; height: 100%;
  489. opacity: .80;
  490. z-index: 9999;
  491. }
  492. .popup_block{
  493. display: none; /*--hidden by default--*/
  494. background: #fff;
  495. padding: 20px;
  496. border: 20px solid #ddd;
  497. float: left;
  498. font-size: 9px;
  499. position: fixed;
  500. top: 50%; left: 50%;
  501. z-index: 99999;
  502. /*--CSS3 Box Shadows--*/
  503. -webkit-box-shadow: 0px 0px 20px #000;
  504. -moz-box-shadow: 0px 0px 20px #000;
  505. box-shadow: 0px 0px 20px #000;
  506. /*--CSS3 Rounded Corners--*/
  507. -webkit-border-radius: 10px;
  508. -moz-border-radius: 10px;
  509. border-radius: 10px;
  510. }
  511. img.btn_close {
  512. float: right;
  513. margin: -5px -5px 0 0;display:block;
  514. }
  515. /*--Making IE6 Understand Fixed Positioning--*/
  516. *html #fade {
  517. position: absolute;
  518. }
  519. *html .popup_block {
  520. position: absolute;
  521. }
  522.  
  523.  
  524. .album-art {
  525. float: left;
  526. width: 196px;
  527. height: 196px;
  528. overflow: hidden;
  529. }
  530.  
  531. </style>
  532.  
  533. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  534. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
  535. </script>
  536.  
  537. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  538.  
  539. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  540.  
  541. <script type="text/javascript">
  542.  
  543. $(window).load(function () {
  544. $('.posts').masonry(),
  545. $('.masonryWrap').infinitescroll({
  546. navSelector : "div#navigation",
  547. // selector for the paged navigation (it will be hidden)
  548. nextSelector : "div#navigation a#nextPage",
  549. // selector for the NEXT link (to page 2)
  550. itemSelector : ".entry",
  551. // selector for all items you'll retrieve
  552. bufferPx : 10000,
  553. extraScrollPx: 11000,
  554. loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
  555. loadingText : "<em></em>",
  556. },
  557. // call masonry as a callback.
  558. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  559. );
  560. });
  561. </script>
  562.  
  563.  
  564.  
  565. </head>
  566.  
  567. <body>
  568. <div class="token">
  569. <div id="content">
  570.  
  571. <div class="sidebar">
  572. <div class="butters"><a href="/"><center>{Title}</center></a></div>
  573. <div class="wendy"><center><a href="/ask">TALK</a> x <a href="/archive">HISTORY</a> x <a href="http://modernise.tumblr.com">THEME</a>{block:Pages}{block:HasPages} x <a href="{url}"><span style="text-transform:uppercase;">{Label}</span></a>{/block:HasPages}{/block:Pages}
  574.  
  575. </center><Br><div align="justify">{Description}</div></div>
  576. {block:IndexPage}
  577. <div class="column navigation" id="navigation">
  578. {block:Pagination}
  579. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  580. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  581. </div>
  582. {/block:IndexPage}
  583.  
  584.  
  585.  
  586. </div>
  587. <div class="posts">
  588. {block:Posts}
  589. <div class="entry">
  590.  
  591.  
  592. {block:Text}
  593. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  594. {Body}
  595.  
  596.  
  597. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  598.  
  599. {/block:Text}
  600.  
  601. {block:Photo}
  602.  
  603. <div class="img">
  604. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  605. {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
  606. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="400"{/block:IndexPage}{block:PermalinkPage}width="500"{/block:PermalinkPage}/>
  607. </a>
  608. </div>
  609.  
  610.  
  611. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  612.  
  613.  
  614. {block:PermalinkPage}
  615. {block:Caption}<br>{Caption}{/block:Caption}<br>
  616. {/block:PermalinkPage}
  617. {/block:Photo}
  618.  
  619.  
  620. {block:Photoset}
  621.  
  622.  
  623.  
  624. {block:IndexPage}{Photoset-400}<br><div class="tweek"><a href="http://tmv.proto.jp/reblog.php?post_url={Permalink}"><div class="craig"><img src="http://static.tumblr.com/iddq6cw/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  625.  
  626. {block:PermalinkPage}
  627. {Photoset-500}<br>{block:Caption}{Caption}<br><br>{/block:Caption}
  628. {/block:PermalinkPage}
  629. {/block:Photoset}
  630.  
  631.  
  632. {block:Quote}
  633. <a href="{permalink}"><div class="heading">{Quote}</div></a>
  634. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  635.  
  636.  
  637.  
  638. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  639.  
  640.  
  641. {/block:Quote}
  642.  
  643.  
  644. {block:Link}
  645. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  646. {block:Description} {Description}{/block:Description}
  647.  
  648.  
  649.  
  650. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  651.  
  652. {/block:Link}
  653.  
  654. {block:Video}
  655. <div class="video">{Video-500}
  656. </div>
  657.  
  658.  
  659. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  660.  
  661.  
  662. {/block:Video}
  663.  
  664.  
  665. {block:Chat}
  666. {block:Title}
  667. <div class="heading"><a href="{Permalink}">{Title}</a></div>
  668. {/block:Title}
  669. <div class="chat ul">
  670. {block:Lines}
  671. <li class="{Alt} user_{UserNumber}">
  672. {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
  673. {/block:Lines}</div></li>
  674.  
  675.  
  676.  
  677. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  678.  
  679. {/block:Chat}
  680.  
  681.  
  682.  
  683. {block:Audio}{block:PermalinkPage}
  684. {block:AlbumArt}<div class="album-art"><img src="{AlbumArtURL}" height="196px"></div>{/block:AlbumArt}{/block:PermalinkPage}
  685. <div class="audioplayer">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}
  686. {block:PermalinkPage}
  687. {block:TrackName}<br><br>
  688. <b>{TrackName}</b>
  689. {/block:TrackName} by {block:Artist}
  690. {Artist}
  691. {/block:Artist}<br>{PlayCountWithLabel}{/block:PermalinkPage}
  692.  
  693.  
  694. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  695.  
  696. {/block:Audio}
  697.  
  698.  
  699. {block:Answer}
  700. <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>
  701.  
  702.  
  703. {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/iSDlx9p24/th_sync-64.png" height="30px"></div></a></div><div class="tweek"><a href="{Permalink}"><div class="bebe"><img src="http://static.tumblr.com/iddq6cw/VHalx9p1u/th_paper-clip-64.png" height="30px"></div></a></div>{/block:IndexPage}
  704.  
  705. {/block:Answer}
  706.  
  707.  
  708. </div>
  709. {block:PermalinkPage}
  710. <div class="kenny">
  711.  
  712. {block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} /
  713. {block:Date}{TimeAgo}{/block:Date}
  714. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  715. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  716. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  717. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  718. {/block:PermalinkPage}
  719.  
  720. {/block:Posts}
  721. </div>
  722. </div>
  723.  
  724.  
  725. </div>
  726.  
  727. </div>
  728. </body>
  729.  
  730.  
  731.  
  732. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement