Advertisement
vrisky

toreador

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