iea-themes

theme Scars

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