Advertisement
Aken

walkman

Jun 11th, 2019 (edited)
837
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!-----
  4.  
  5. walkman theme - @aken
  6. do what u want o__O
  7.  
  8. ----->
  9.  
  10.  
  11. <head>
  12.  
  13. {block:iffloaties}
  14. <script type="text/javascript">
  15. // <![CDATA[
  16. var colour="{color:floaties}"; // what colour are the blobs
  17. var speed=66; // speed of animation, lower is faster
  18. var blobs=10; // how many blobs are in the jar
  19. var charc="{text:float symbol}"; // a blob - can be changed to charc='hello' or charc='*' for a different effect
  20.  
  21. /***************************\
  22. * Blobs in a Jar Effect *
  23. *(c)2012-13 mf2fm web-design*
  24. * http://www.mf2fm.com/rv *
  25. * DON'T EDIT BELOW THIS BOX *
  26. \***************************/
  27.  
  28. var div;
  29. var xpos=new Array();
  30. var ypos=new Array();
  31. var zpos=new Array();
  32. var dx=new Array();
  33. var dy=new Array();
  34. var dz=new Array();
  35. var blob=new Array();
  36. var swide=800;
  37. var shigh=600;
  38. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  39.  
  40. function addLoadEvent(funky) {
  41. var oldonload=window.onload;
  42. if (typeof(oldonload)!='function') window.onload=funky;
  43. else window.onload=function() {
  44. if (oldonload) oldonload();
  45. funky();
  46. }
  47. }
  48.  
  49. addLoadEvent(fill_the_jar);
  50.  
  51. function fill_the_jar() {
  52. var i, dvs;
  53. div=document.createElement('div');
  54. dvs=div.style;
  55. dvs.position='fixed';
  56. dvs.left='0px';
  57. dvs.top='0px';
  58. dvs.width='1px';
  59. dvs.height='1px';
  60. document.body.appendChild(div);
  61. set_width();
  62. for (i=0; i<blobs; i++) {
  63. add_blob(i);
  64. jamjar(i);
  65. }
  66. }
  67.  
  68. function add_blob(ref) {
  69. var dv, sy;
  70. dv=document.createElement('div');
  71. sy=dv.style;
  72. sy.position='absolute';
  73. sy.textAlign='center';
  74. if (ie_version && ie_version<10) {
  75. sy.fontSize="10px";
  76. sy.width="100px";
  77. sy.height="100px";
  78. sy.paddingTop="40px";
  79. sy.color=colour;
  80. dv.appendChild(document.createTextNode(charc));
  81. }
  82. else if (ie_version) {
  83. sy.fontSize="1px";
  84. sy.width="0px";
  85. sy.height="0px";
  86. }
  87. else {
  88. dv.appendChild(document.createTextNode(charc));
  89. sy.color='rgba(0,0,0,0)';
  90. }
  91. ypos[ref]=Math.floor(shigh*Math.random());
  92. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  93. xpos[ref]=Math.floor(swide*Math.random());
  94. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  95. zpos[ref]=Math.random()*20;
  96. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  97. blob[ref]=dv;
  98. div.appendChild(blob[ref]);
  99. set_blob(ref);
  100. }
  101.  
  102. function rejig(ref, xy) {
  103. if (xy=='y') {
  104. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  105. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  106. }
  107. else {
  108. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  109. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  110. }
  111. }
  112.  
  113. function sign(a) {
  114. if (a<0) return (-2);
  115. else if (a>0) return (2);
  116. else return (0);
  117. }
  118.  
  119. function set_blob(ref) {
  120. var sy;
  121. sy=blob[ref].style;
  122. sy.top=ypos[ref]+'px';
  123. sy.left=xpos[ref]+'px';
  124. if (ie_version && ie_version<10) {
  125. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  126. sy.fontSize=30-zpos[ref]+"px";
  127. }
  128. else if (ie_version) {
  129. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  130. }
  131. else {
  132. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  133. sy.fontSize=40+zpos[ref]+'px';
  134. }
  135. }
  136.  
  137. function jamjar(ref) {
  138. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  139. ypos[ref]+=dy[ref];
  140. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  141. xpos[ref]+=dx[ref];
  142. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  143. zpos[ref]+=dz[ref];
  144. set_blob(ref);
  145. setTimeout("jamjar("+ref+")", speed);
  146. }
  147.  
  148. window.onresize=set_width;
  149. function set_width() {
  150. var sw_min=999999;
  151. var sh_min=999999;
  152. if (document.documentElement && document.documentElement.clientWidth) {
  153. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  154. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  155. }
  156. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  157. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  158. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  159. }
  160. if (document.body.clientWidth) {
  161. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  162. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  163. }
  164. if (sw_min==999999 || sh_min==999999) {
  165. sw_min=800;
  166. sh_min=600;
  167. }
  168. swide=sw_min;
  169. shigh=sh_min;
  170. }
  171. // ]]>
  172. </script>
  173. {/block:iffloaties}
  174.  
  175. <link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Short+Stack" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Overpass" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Gochi+Hand" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Sniglet" rel="stylesheet">
  176.  
  177. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script><script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
  178.  
  179. <meta charset="utf-8">
  180. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  181. {block:Description}
  182. <meta name="description" content="{MetaDescription}" />
  183. {/block:Description}
  184.  
  185. <title>{Title}</title>
  186.  
  187. <link rel="shortcut icon" href="{image:favicon}">
  188. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  189. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  190.  
  191. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  192.  
  193. <meta name="image:icon" content=""/>
  194. <meta name="image:background" content=""/>
  195. <meta name="image:favicon" content=""/>
  196.  
  197. <meta name="color:background" content=""/>
  198. <meta name="color:text" content=""/>
  199. <meta name="color:link" content=""/>
  200. <meta name="color:hover" content=""/>
  201. <meta name="color:side links" content=""/>
  202. <meta name="color:post" content=""/>
  203. <meta name="color:shadow" content=""/>
  204. <meta name="color:border" content=""/>
  205. <meta name="color:thumb" content="#000"/>
  206. <meta name="color:track" content=""/>
  207. <meta name="color:tooltip" content=""/>
  208. <meta name="color:tooltip text" content=""/>
  209. <meta name="color:navigation" content=""/>
  210. <meta name="color:ask" content="#eaeaea"/>
  211. <meta name="color:ask text" content=""/>
  212. <meta name="color:blockquote" content=""/>
  213. <meta name="color:floaties" content=""/>
  214.  
  215. <meta name="select:border" content="solid">
  216. <meta name="select:border" content="inset">
  217. <meta name="select:border" content="outset">
  218. <meta name="select:border" content="dotted">
  219. <meta name="select:border" content="dashed">
  220. <meta name="select:border" content="double">
  221.  
  222. <meta name="select:blockquote border" content="solid">
  223. <meta name="select:blockquote border" content="dotted">
  224. <meta name="select:blockquote border" content="dashed">
  225.  
  226. <meta name="select:font" content="arial"/>
  227. <meta name="select:font" content="times"/>
  228. <meta name="select:font" content="courier"/>
  229. <meta name="select:font" content="ms gothic"/>
  230. <meta name="select:font" content="ms pgothic"/>
  231. <meta name="select:font" content="verdana"/>
  232. <meta name="select:font" content="nunito sans"/>
  233. <meta name="select:font" content="short stack"/>
  234. <meta name="select:font" content="permanent marker"/>
  235. <meta name="select:font" content="overpass"/>
  236. <meta name="select:font" content="gochi hand"/>
  237. <meta name="select:font" content="sniglet"/>
  238.  
  239. <meta name="select:font size" content="11"/>
  240. <meta name="select:font size" content="12"/>
  241. <meta name="select:font size" content="13"/>
  242.  
  243. <meta name="text:icon title" content="i love you!"/>
  244. <meta name="text:border" content="1"/>
  245. <meta name="text:redirect" content=""/>
  246. <meta name="text:symbol" content="/"/>
  247. <meta name="text:link 1" content="home"/>
  248. <meta name="text:link 2" content="msg"/>
  249. <meta name="text:link 3" content="past"/>
  250. <meta name="text:link 1 url" content=""/>
  251. <meta name="text:link 2 url" content=""/>
  252. <meta name="text:link 3 url" content=""/>
  253. <meta name="text:float symbol" content="✧"/>
  254.  
  255. <meta name="if:redirect" content=""/>
  256. <meta name="if:cover bg" content=""/>
  257. <meta name="if:pixel border" content=""/>
  258. <meta name="if:black border" content=""/>
  259. <meta name="if:fancy tooltip" content="1"/>
  260. <meta name="if:round post" content=""/>
  261. <meta name="if:round tooltip" content=""/>
  262. <meta name="if:floaties" content=""/>
  263. <meta name="if:shadow" content=""/>
  264.  
  265. <style type="text/css">
  266.  
  267.  
  268.  
  269. body {
  270. margin:0px;
  271. background-color:{color:background};
  272. background-image: url('{image:background}');
  273. {block:ifnotcoverbg}
  274. background-repeat: repeat;
  275. background-attachment: fixed;
  276. background-size:{text:blog bg size}px;
  277. {/block:ifnotcoverbg}
  278. {block:ifcoverbg}
  279. background-size: cover;
  280. background-attachment: fixed;
  281. {/block:ifcoverbg}
  282. font-family:{select:font};
  283. font-size:{select:font size}px;
  284. line-height:140%;
  285. color: {color:text};
  286. }
  287.  
  288. p{
  289. margin:0 0 10px 0;
  290. padding:0;
  291. }
  292.  
  293. pre {
  294. white-space: pre-wrap;
  295. white-space: -moz-pre-wrap;
  296. white-space: -pre-wrap;
  297. white-space: -o-pre-wrap;
  298. word-wrap: break-word;
  299. }
  300.  
  301. a{
  302. color:{color:link};
  303. text-decoration:none;
  304. }
  305.  
  306. a:hover{
  307. color:{color:hover};
  308. -o-transition: all 0.3s ease-out;
  309. -webkit-transition: all 0.3s ease-out;
  310. -moz-transition: all 0.3s ease-out;
  311. }
  312.  
  313. li{
  314. margin-left:-15px;
  315. }
  316.  
  317.  
  318. #wrapper{
  319. width:600px;
  320. margin:50px auto;
  321. }
  322.  
  323. #sidebar{
  324. margin-top:70px;
  325. text-align:center;
  326. width:116px;
  327. position:fixed;
  328. }
  329.  
  330. #sidebar a:link { color: {color:side links}; }
  331. #sidebar a:visited { color:{color:side links}; }
  332. #sidebar a:hover { color: {color:hover}; }
  333. #sidebar a:active { color: {color:side links}; }
  334.  
  335. #chyeah{
  336. background-color: {color:navigation};
  337. width:116px;
  338. position:fixed;
  339. margin-top:34px;
  340. border-radius:4px;
  341. padding:1px;
  342. text-align:center;
  343.  
  344. }
  345.  
  346. .arrow_box {
  347. position:fixed;
  348. background:#fff;
  349. }
  350. .arrow_box:after {
  351. top: 100%;
  352. left: 100%;
  353. border: solid transparent;
  354. content: " ";
  355. height: 0;
  356. width: 0;
  357. position:absolute;
  358. pointer-events: none;
  359. border-color: rgba(0, 0, 0, 0);
  360. border-top-color: {color:navigation};
  361. border-width: 10px;
  362. margin-left: 78px;
  363. margin-top:51.5px;
  364. }
  365.  
  366. #content{
  367. width:450px;
  368. margin-left:200px;
  369. overflow:hidden;
  370. }
  371.  
  372. .post{
  373. background-color:{color:post};
  374. border:{text:border}px {select:border} {color:border};
  375. width:400px;
  376. margin:0 0 50px 0;
  377. overflow:hidden;
  378. {block:ifshadow}
  379. box-shadow: 4px 3px {color:shadow};
  380. {/block:ifshadow}
  381. padding:5px;
  382. {block:ifroundpost}
  383. border-radius:4px;
  384. {/block:ifroundpost}
  385. }
  386.  
  387. #sidebar img{
  388. width:110px;
  389. height:110px;
  390. padding:1px;
  391. border:{text:border}px {select:border} {color:border};
  392. {block:ifpixelborder}
  393. padding:0px;
  394. border-style: solid;
  395. {block:ifblackborder}
  396. border-width: 5px;-moz-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;
  397. -webkit-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;
  398. -o-border-image: url({"https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;
  399. border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 fill round;
  400. {/block:ifblackborder}
  401. {block:ifnotblackborder}
  402. border-width: 5px;
  403. -moz-border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png") 8 round;
  404. -webkit-border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png") 8 round;
  405. -o-border-image: url({"https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png") 8 round;
  406. border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png") 8 fill round;
  407. {/block:ifnotblackborder}
  408. {/block:ifpixelborder}
  409. }
  410.  
  411. .post img{
  412. max-width:100%;
  413. }
  414.  
  415.  
  416. .media{
  417. margin:0 0 10px 0;
  418. }
  419.  
  420. .title{
  421. font-weight:normal;
  422. font-size:18px;
  423. margin:0 0 10px 0;
  424. }
  425.  
  426. .quote{
  427. font-weight:normal;
  428. font-size:16px;
  429. font-style:italic;
  430. margin:0 0 10px 0;
  431. }
  432.  
  433. .question{
  434. margin-bottom:10px;
  435. }
  436.  
  437. blockquote{
  438. margin:0 0 10px 10px;
  439. padding:0 0 0 10px;
  440. border-left:{select:blockquote border} .5px {color:blockquote};
  441. }
  442.  
  443.  
  444. .post .footer{
  445. margin-top:-5px;
  446. text-align:center;
  447. }
  448.  
  449.  
  450. ol.notes{
  451. list-style-type:none;
  452. padding:0;
  453. margin:0;
  454. }
  455.  
  456. ol.notes li.note img{
  457. width:16px;
  458. height:16px;
  459. }
  460.  
  461. ol.notes li.note{
  462. margin:0px;
  463. }
  464.  
  465. .playbutton {
  466. position:relative;
  467. margin-top:45px;
  468. margin-left:44px;
  469. z-index:9;
  470. width:33px;
  471. height:30px;
  472. overflow:hidden;}
  473.  
  474. .albumart img {
  475. position:relative;
  476. margin-top:-75px;
  477. margin-left:0px
  478. height:120px;
  479. width:120px;
  480. -webkit-border-top-left-radius: 20px;
  481. -webkit-border-bottom-left-radius: 20px;
  482. -moz-border-radius-topleft: 20px;
  483. -moz-border-radius-bottomleft: 20px;
  484. border-top-left-radius: 20px;
  485. border-bottom-left-radius: 20px;}
  486.  
  487. .trackinfo {
  488. margin-bottom:10px;
  489. background:#fff;
  490. color:#000;
  491. top:-6px;
  492. position:relative;
  493. margin-left:120px;
  494. height:120px;
  495. margin-top:-120px;
  496. -webkit-border-top-right-radius: 20px;
  497. -webkit-border-bottom-right-radius: 20px;
  498. -moz-border-radius-topright: 20px;
  499. -moz-border-radius-bottomright: 20px;
  500. border-top-right-radius: 20px;
  501. border-bottom-right-radius: 20px;}
  502.  
  503. .trackname {
  504. position:relative;
  505. padding-top:30px;
  506. text-align:center;
  507. font-size:14px;
  508. text-transform:uppercase;
  509. font-weight: bold;}
  510.  
  511. .artist {
  512. text-align:center;
  513. font-size:12px;
  514. text-transform:uppercase;}
  515.  
  516. .album {
  517. text-align:center;
  518. font-style: italic;}
  519.  
  520. .playcount {
  521. font-weight: bold;
  522. margin-top:5px;
  523. text-align:center;}
  524.  
  525. .question{
  526. background-color:{color:ask};
  527. color:{color:ask text};
  528. padding:3px;
  529. }
  530.  
  531. }
  532.  
  533. .tooltip{
  534. display:inline;
  535. position:relative;
  536. }
  537.  
  538. #s-m-t-tooltip{
  539. max-width:300px;
  540. padding:5px;
  541. margin:20px 7px -2px 20px;
  542. letter-spacing:1px;
  543. text-align:center;
  544. color:{color:tooltip text};
  545. z-index:99999999999999999999;
  546. {block:iffancytooltip}
  547. background-color:rgba(0,0,0,0.5);
  548. color:white;
  549. {/block:iffancytooltip}
  550. {block:ifnotfancytooltip}
  551. color:{color:tooltip text};
  552. background-color:{color:tooltip};
  553. border:{text:border}px {select:border} {color:border};
  554. {/block:ifnotfancytooltip}
  555. {block:ifroundtooltip}
  556. border-radius:4px;
  557. {/block:ifroundtooltip}
  558. -o-transition: all 0.3s ease-out;
  559. -webkit-transition: all 0.3s ease-out;
  560. -moz-transition: all 0.3s ease-out;
  561. }
  562.  
  563.  
  564. ::-webkit-scrollbar {
  565. width: 10px;
  566. }
  567.  
  568.  
  569. ::-webkit-scrollbar-track {
  570. background: {color:track};
  571. }
  572.  
  573.  
  574. ::-webkit-scrollbar-thumb {
  575. background: {color:thumb};
  576. }
  577.  
  578. {CustomCSS}
  579. </style>
  580. </head>
  581.  
  582. <body>
  583.  
  584. {block:ifredirect}
  585. {block:IndexPage}<script type="text/javascript">
  586. var url = location.href;
  587. if (url == "{BlogURL}") {
  588. window.location = "{BlogURL}tagged/{text:redirect}";
  589. }
  590. </script>{/block:IndexPage}
  591. {/block:ifredirect}
  592.  
  593. <div id="wrapper">
  594.  
  595. {block:Pagination}<div id="chyeah"><i>
  596. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">←</a>{/block:PreviousPage}
  597. {block:JumpPagination length="5"}
  598. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  599. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  600. {block:NextPage}<a href="{NextPage}" class="jump_page">→</a>{/block:NextPage}</i>
  601. </div>
  602.  
  603. <div class="arrow_box"></div>
  604. {/block:Pagination}
  605. <div id="sidebar">
  606.  
  607. <a href="/" title="{text:icon title}"><img src="{image:icon}"></a>
  608.  
  609. <a href="{text:link 1 url}">{text:link 1}</a> {text:symbol} <a href="{text:link 2 url}">{text:link 2}</a> {text:symbol} <a href="{text:link 3 url}">{text:link 3}</a>
  610.  
  611. </div>
  612.  
  613.  
  614.  
  615. <div id="content">
  616. {block:Posts}
  617.  
  618. <div class="post">
  619.  
  620. {block:Text}
  621. {block:Title}
  622. <div class="title">{Title}</div>
  623. {/block:Title}
  624. {Body}
  625. {/block:Text}
  626.  
  627. {block:Photo}
  628. <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  629. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  630. {/block:Photo}
  631.  
  632. {block:Photoset}
  633. <div class="media">{Photoset-400}</div>
  634. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  635. {/block:Photoset}
  636.  
  637. {block:Quote}
  638. <div class="quote">"{Quote}"</div>
  639. {block:Source}
  640. <div class="quotesource">{Source}</div>
  641. {/block:Source}
  642. {/block:Quote}
  643.  
  644. {block:Link}
  645. <div class="title"><a href="{URL}">{Name}</a></div>
  646. {block:Description}
  647. <div class="description">{Description}</div>
  648. {/block:Description}
  649. {/block:Link}
  650.  
  651. {block:Chat}
  652. {block:Title}
  653. <div class="title">{Title}</div>
  654. {/block:Title}
  655.  
  656. {block:Lines}
  657. <div class="{Alt} user_{UserNumber}">
  658. {block:Label}
  659. <b>{Label}</b>{/block:Label}
  660. &nbsp;{Line}
  661. </div>
  662. {/block:Lines}
  663. {/block:Chat}
  664.  
  665. {block:Video}
  666. <div class="media">{Video-400}</div>
  667. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  668. {/block:Video}
  669.  
  670. {block:Audio}
  671. {block:AudioPlayer}
  672. <div class="playbutton">{AudioPlayerGrey}</div>
  673. {block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  674. <div class="trackinfo">
  675. <div class="trackname">
  676. {block:TrackName}{TrackName}{/block:TrackName}
  677. </div>
  678. <div class="artist">
  679. {block:Artist}{Artist}{/block:Artist}
  680. </div>
  681. <div class="album">
  682. {block:Album}{Album}{/block:Album}
  683. </div>
  684. <div class="playcount">
  685. {block:PlayCount}Played: {PlayCount} times{/block:PlayCount}
  686. </div>
  687. </div>
  688. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  689. {/block:AudioPlayer}
  690. {/block:Audio}
  691.  
  692. {block:Answer}
  693. <div class="question"><b>{Asker}</b> asked: <i>{Question}</i></div>
  694. <div class="caption">{Answer}</div>
  695. {/block:Answer}
  696.  
  697.  
  698. {block:Date}
  699. <div class="footer">
  700. <a href="{Permalink}"><b>{TimeAgo}</b></a> {NoteCount}
  701. {block:RebloggedFrom}<a href="{ReblogParentURL}"></a>{/block:RebloggedFrom}
  702. {block:ContentSource}<a href="{SourceURL}"></a>{/block:ContentSource}
  703. </div>
  704.  
  705. {block:PermalinkPage}
  706. {block:NoteCount}
  707. {block:HasTags}<center>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</center>{/block:HasTags}
  708. {block:PostNotes}{PostNotes}{/block:PostNotes}
  709. {/block:NoteCount}
  710. {/block:PermalinkPage}
  711. {/block:Date}
  712.  
  713. </div>
  714. {/block:Posts}
  715. </div>
  716. </div>
  717.  
  718. </div>
  719.  
  720. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  721. <script>window.jQuery || document.write('<script src="https://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  722.  
  723.  
  724. <p style="position: fixed; left: 13px; bottom: -5px; font-size:14px;"><a href="https://tmblr.co/mrRfmbRR8G93obHQkpXeORA" title="theme by aken">💫</a>
  725.  
  726. </body>
  727. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement