Advertisement
Belgrravia

Gasoline

Feb 27th, 2016
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.45 KB | None | 0 0
  1. <!--
  2. gasoline
  3. theme by kalopsiathemes
  4. Please do not
  5. -remove the credit
  6. -steal parts of code
  7. -use as a base
  8.  
  9. Feel free to
  10. -edit parts of the theme
  11. -ask me any questions
  12. -->
  13. <!DOCTYPE html>
  14. <head>
  15. <link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700|Raleway:400,700' rel='stylesheet' type='text/css'>
  16. <title>{Title}</title>
  17. <link rel="shortcut icon" href="{Favicon}">
  18. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  19. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  20.  
  21.  
  22.  
  23. <meta name="color:Background" content="#ffffff"/>
  24. <meta name="text:Pop Up Navi Text" content=""/>
  25. <meta name="color:sidebar" content="#ffffff"/>
  26. <meta name="image:sidebar" content="#ffffff"/>
  27. <meta name="image:sidebar2" content="#ffffff"/>
  28. <meta name="color:link" content="#090909"/>
  29. <meta name="color:link hover" content="#090909"/>
  30. <meta name="color:title" content="#090909"/>
  31. <meta name="color:text" content="#090909"/>
  32. <meta name="image:Background" content=""/>
  33.  
  34. <meta name="if:500px posts" content="0"/>
  35. <meta name="if:400px posts" content="1"/>
  36. <meta name="if:250px posts" content="0"/>
  37.  
  38.  
  39. <meta name="text:link1" content="">
  40. <meta name="text:link1url" content="" />
  41. <meta name="text:link2" content="">
  42. <meta name="text:link2url" content="" />
  43. <meta name="text:link3" content="">
  44. <meta name="text:link3url" content="" />
  45. <meta name="text:link4" content="">
  46. <meta name="text:link4url" content="" />
  47.  
  48. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  49. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  50.  
  51. <script>
  52.  
  53. (function($){
  54.  
  55. $(document).ready(function(){
  56.  
  57. $("a[title]").style_my_tooltips({
  58.  
  59. tip_follows_cursor:true,
  60.  
  61. tip_delay_time:30,
  62.  
  63. tip_fade_speed:300,
  64.  
  65. attribute:"title"
  66.  
  67. });
  68.  
  69. });
  70.  
  71. })(jQuery);
  72.  
  73. </script>
  74.  
  75. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  76. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  77.  
  78.  
  79.  
  80. <script type="text/javascript"
  81. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  82.  
  83. <script>
  84.  
  85.  
  86.  
  87. $(document).ready(function() {
  88.  
  89. //
  90.  
  91.  
  92.  
  93. //When you click on a link with class of poplight and the href starts with a #
  94.  
  95. $('a.poplight[href^=#]').click(function() {
  96.  
  97. var popID = $(this).attr('rel'); //Get Popup Name
  98.  
  99. var popURL = $(this).attr('href'); //Get Popup href to define size
  100.  
  101.  
  102.  
  103. //Pull Query & Variables from href URL
  104.  
  105. var query= popURL.split('?');
  106.  
  107. var dim= query[1].split('&');
  108.  
  109. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  110.  
  111.  
  112.  
  113. //Fade in the Popup and add close button
  114.  
  115.  
  116. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  117.  
  118. var popMargTop = ($('#' + popID).height() + 80) / 2;
  119.  
  120. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  121.  
  122.  
  123.  
  124. //Apply Margin to Popup
  125.  
  126. $('#' + popID).css({
  127.  
  128. 'margin-top' : -popMargTop,
  129.  
  130. 'margin-left' : -popMargLeft
  131.  
  132. });
  133.  
  134.  
  135.  
  136. //Fade in Background
  137.  
  138. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  139.  
  140. $('#fade').css({'filter' : 'alpha(opacity=80)'}).delay(300).fadeIn(600); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  141.  
  142. $('#' + popID).delay(200).fadeIn(600).css({ 'width': Number( 510 ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/wi2dwmg/fJ6nqwau3/tumblr_static_x-mark-512.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  143.  
  144. return false;
  145.  
  146. });
  147.  
  148.  
  149.  
  150. //Close Popups and Fade Layer
  151.  
  152. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  153.  
  154. $('#fade , .popup_block').fadeOut(function() {
  155.  
  156. $('#fade, a.close').remove(); //fade them both out
  157.  
  158. });
  159.  
  160. return false;
  161.  
  162. });
  163.  
  164.  
  165.  
  166.  
  167.  
  168. });
  169.  
  170. </script>
  171.  
  172. <style type="text/css">
  173.  
  174. #s-m-t-tooltip {max-width:400px;
  175. padding:2px;
  176. margin:10px 0px 0px 10px;
  177. padding:2px 4px;
  178. background-color:{color:text};
  179. text-transform:uppercase;
  180. font-size:7px;
  181. letter-spacing:2px;
  182. font-weight:700;
  183. color:{color:background};
  184. z-index:999999999;
  185. }
  186.  
  187. ::-webkit-scrollbar {height: 0px;
  188. width: 2px;
  189. -webkit-border-radius: 0px;
  190. background-color:{color:background}}
  191. ::-webkit-scrollbar-thumb{background-color:{color:text};
  192. }
  193.  
  194. html, body {margin:0;padding:0;height:100%;}
  195.  
  196. body {
  197. background-color:{color:background};
  198. color:{color:text};
  199. font-size:9px;
  200. margin:0;
  201. font-family: 'PT Sans', sans-serif;
  202. }
  203. #fade {
  204. display: none;
  205. background:{color:sidebar};
  206. position: fixed;
  207. left: 0;
  208. top: 0;
  209. width: 100%;
  210. height: 100%;
  211. opacity: 1;
  212. z-index: 999999999;
  213. }
  214.  
  215. .popup_block{
  216. display:none;
  217. position:fixed;
  218. left:50%;
  219. top:50%;
  220. background:{color:sidebar};
  221. text-align:center;
  222. color:{color:text};
  223. z-index: 999999999999999999;
  224. }
  225.  
  226. img.btn_close {
  227. position:fixed;
  228. top:50px;
  229. right:50px;
  230. }
  231.  
  232. *html #fade {
  233. position: absolute;
  234. }
  235.  
  236. *html .popup_block {
  237. position: absolute;
  238. }
  239.  
  240. #posts {
  241. {block:If500pxposts}
  242. width:500px;
  243. {/block:If500pxposts}
  244. {block:If400pxposts}
  245. width:400px;
  246. {/block:If400pxposts}
  247. {block:If250pxposts}
  248. width:250px;
  249. {/block:If250pxposts}
  250. {block:IndexPage}
  251. margin-bottom:80px;
  252. {/block:IndexPage}
  253. }
  254.  
  255. #posts img {
  256. {block:If500pxposts}
  257. max-width:500px;
  258. {/block:If500pxposts}
  259. {block:If400pxposts}
  260. max-width:400px;
  261. {/block:If400pxposts}
  262. {block:If250pxposts}
  263. max-width:250px;
  264. {/block:If250pxposts}
  265. }
  266.  
  267.  
  268. #posts, #posts img,#posts p {
  269. font-size:11px;
  270. color:{color:text};
  271. }
  272.  
  273. #posts p {
  274. margin:10px;
  275. }
  276.  
  277. ul.chat {
  278. margin:10px;
  279. padding-top:10px;
  280. }
  281.  
  282. .entries {
  283. {block:If500pxposts}
  284. width:500px;
  285. {/block:If500pxposts}
  286. {block:If400pxposts}
  287. width:400px;
  288. {/block:If400pxposts}
  289. {block:If250pxposts}
  290. width:250px;
  291. {/block:If250pxposts}
  292. }
  293.  
  294. .entries blockquote {
  295. margin:10px;
  296. }
  297.  
  298. small {
  299. font-size:10px;
  300. }
  301.  
  302. big {
  303. font-size:12px;
  304. }
  305.  
  306.  
  307. h2 {
  308. font-size:13px;
  309. color:{color:title};
  310. text-align:center;
  311. margin:10px;
  312. font-weight:700;
  313. }
  314.  
  315. h1 {
  316. font-size:8px;
  317. Text-align:center;
  318. font-style:italic;
  319. color:{color:text};
  320. }
  321.  
  322. h3 {
  323. font-size:14px;
  324. margin:10px;
  325. margin-top:none;
  326. color:{color:title};
  327. letter-spacing:1px;
  328. }
  329.  
  330. #container {
  331. margin:auto;
  332. {block:If500pxposts}
  333. width:600px;
  334. {/block:If500pxposts}
  335. {block:If400pxposts}
  336. width:500px;
  337. {/block:If400pxposts}
  338. {block:If250pxposts}
  339. width:350px;
  340. {/block:If250pxposts}
  341. border:1px solid {color:sidebar};
  342. margin-bottom:20px;
  343. }
  344.  
  345.  
  346. #content {
  347. width:100%;
  348. margin:auto;
  349. {block:If500pxposts}
  350. width:500px;
  351. {/block:If500pxposts}
  352. {block:If400pxposts}
  353. width:400px;
  354. {/block:If400pxposts}
  355. {block:If250pxposts}
  356. width:250px;
  357. {/block:If250pxposts}
  358. padding:20px;
  359. margin-top:50px;
  360. background-color:{color:sidebar};
  361. background-image: url("{image:background}");
  362. background-repeat:repeat;
  363. background-position: bottom;
  364. background-attachment: fixed;
  365. margin-bottom:40px;
  366. }
  367.  
  368. #sidebar {
  369. {block:If500pxposts}
  370. width:600px;
  371. {/block:If500pxposts}
  372. {block:If400pxposts}
  373. width:500px;
  374. {/block:If400pxposts}
  375. {block:If250pxposts}
  376. width:350px;
  377. {/block:If250pxposts}
  378. margin:auto;
  379. margin-top:50px;
  380. text-align:center;
  381. word-wrap:break-word;
  382. padding-top:15px;
  383. padding-bottom:15px;
  384. border-bottom:none;
  385. border:1px solid {color:sidebar};
  386. background-color:{color:background};
  387. }
  388.  
  389. .info {
  390. {block:If500pxposts}
  391. width:500px;
  392. {/block:If500pxposts}
  393. {block:If400pxposts}
  394. width:400px;
  395. {/block:If400pxposts}
  396. {block:If250pxposts}
  397. width:250px;
  398. {/block:If250pxposts}
  399. margin:auto;
  400. padding-left:20px;
  401. padding-right:20px;
  402. padding-top:10px;
  403. padding-bottom:10px;
  404. background-color:{color:sidebar};
  405. }
  406.  
  407.  
  408. #nav {
  409. text-align:center;
  410. padding:5px;
  411. color:{color:link};
  412. font-weight:700;
  413. text-transform:uppercase;
  414. font-family: 'Raleway', sans-serif;
  415. letter-spacing:.5px;
  416. }
  417.  
  418. #sidebarimage img {
  419. width:50px;
  420. height:50px;
  421. padding:5px;
  422. border-radius:50px;
  423. text-align:left;
  424. background-color:{color:background};
  425. }
  426.  
  427. #sidebarimage2 img {
  428. width:50px;
  429. height:50px;
  430. padding:5px;
  431. background-color:{color:background};
  432. margin-top:20px;
  433. margin:auto;
  434. text-align:center;
  435. }
  436.  
  437. .top {
  438. width:392px;
  439. margin:auto;
  440. padding:5px;
  441. text-align:center;
  442. padding-bottom:10px;
  443. padding-top:10px;
  444. border:1px solid {color:background};
  445. }
  446.  
  447. .all{
  448. width:404px;
  449. margin:auto;
  450. }
  451.  
  452. table {
  453. width:230px;
  454. border-spacing:5px;
  455. height:170px;
  456. }
  457.  
  458. td {
  459. width:125px;
  460. border:1px solid {color:background};
  461. }
  462.  
  463. td:hover {
  464. background-color:{color:background};
  465. }
  466.  
  467. .left {
  468. width:130px;
  469. height:170px;
  470. overflow:scroll;
  471. font-size:10px;
  472. padding:10px;
  473. display:inline-block;
  474. float:left;
  475. border:1px solid {color:background};
  476. }
  477.  
  478. .right {
  479. width:230px;
  480. padding:5px;
  481. padding-right:15px;
  482. display:inline-block;
  483. text-align:center;
  484. font-size:10px;
  485. border:1px solid {color:background};
  486. }
  487. .click {
  488. top:20px;
  489. margin-left:20px;
  490. padding:8px;
  491. color:{color:sidebar};
  492. position:fixed;
  493. border:1px solid {color:sidebar};
  494. font-style:none;
  495. font-size:15px;
  496. }
  497.  
  498. .click a {
  499. padding:5px;
  500. padding-top:3px;
  501. padding-bottom:3px;
  502. background-color:{color:sidebar};
  503. }
  504.  
  505. .click a:hover {
  506. cursor:help;
  507. }
  508.  
  509. #title {
  510. word-wrap:break-word;
  511. text-align:center;
  512. font-size:14px;
  513. color:{color:title};
  514. margin-top:5px;
  515. font-family: 'Raleway', sans-serif;
  516. font-weight:700;
  517. }
  518.  
  519. #description {
  520. font-size:11px;
  521. margin-top:5px;
  522. line-height:130%;
  523. color:{color:text};
  524. text-align:center;
  525. text-transform:lowercase;
  526. font-family: 'Raleway', sans-serif;
  527. }
  528.  
  529.  
  530. #postinfo {
  531. {block:If500pxposts}
  532. width:500px;
  533. {/block:If500pxposts}
  534. {block:If400pxposts}
  535. width:400px;
  536. {/block:If400pxposts}
  537. {block:If250pxposts}
  538. width:250px;
  539. {/block:If250pxposts}
  540. letter-spacing:1px;
  541. font-size:8px;
  542. margin-top:20px;
  543. padding-bottom:10px;
  544. text-align:center;
  545. text-transform:uppercase;
  546. font-weight:700;
  547. }
  548.  
  549.  
  550. a:link, a:visited {
  551. text-decoration:none;
  552. font-weight:700;
  553. color:{color:link};
  554. }
  555.  
  556. a:hover {
  557. text-decoration:none;
  558. cursor: crosshair;
  559. font-weight:700;
  560. color:{color:link hover};
  561. }
  562.  
  563.  
  564. .pagenotes {
  565. {block:IndexPage}
  566. display: none;
  567. {/block:IndexPage}
  568. {block:If500pxposts}
  569. width:500px;
  570. {/block:If500pxposts}
  571. {block:If400pxposts}
  572. width:400px;
  573. {/block:If400pxposts}
  574. {block:If250pxposts}
  575. width:250px;
  576. {/block:If250pxposts}
  577. margin-top:20px;
  578. text-transform:lowercase;
  579. font-size:9px;
  580. padding-top:10px;
  581. letter-spacing:1px;
  582. background-color:{color:sidebar};
  583. border-top:1px solid {color:background};
  584. margin-bottom:40px;
  585.  
  586. }
  587.  
  588. #permalink {
  589. font-size:9px;
  590. margin-top:5px;
  591. letter-spacing:1px;
  592. text-transform:uppercase;
  593. }
  594.  
  595. .pagenotes img {
  596. display:none;
  597. }
  598. .pagenotes li {
  599. list-style-type:circle;
  600. padding:5px 0px;
  601. text-align:left;
  602. }
  603. .tags {
  604. {block:If500pxposts}
  605. width:500px;
  606. {/block:If500pxposts}
  607. {block:If400pxposts}
  608. width:400px;
  609. {/block:If400pxposts}
  610. {block:If250pxposts}
  611. width:250px;
  612. {/block:If250pxposts}
  613. font-size:8px;
  614. text-transform:lowercase;
  615. word-wrap:break-word;
  616. padding-top:5px;
  617. text-align:center;
  618.  
  619. }
  620.  
  621. .links {
  622. {block:If500pxposts}
  623. max-width:500px;
  624. {/block:If500pxposts}
  625. {block:If400pxposts}
  626. max-width:400px;
  627. {/block:If400pxposts}
  628. {block:If250pxposts}
  629. max-width:250px;
  630. {/block:If250pxposts}
  631. }
  632. .player {
  633. width:50px;
  634. height:25px;
  635. overflow:hidden;
  636. position:absolute;
  637. background:white;}
  638.  
  639. .audioinfo {
  640. margin-left:50px;
  641. font-size:12px;
  642. }
  643.  
  644. .q {
  645. text-align:center;
  646. font-weight:bold;
  647. padding-top:10px;
  648. }
  649.  
  650. .as {
  651. font-weight:bold;
  652. text-transform:uppercase;
  653. margin-bottom:10px;
  654. }
  655.  
  656.  
  657. .a {
  658. margin-top:10px;
  659.  
  660. }
  661.  
  662. .chat ol {
  663. padding:0;
  664. list-style:none;
  665. }
  666.  
  667. .label {font-weight:bold;
  668. }
  669.  
  670. .newplayerbutton {
  671. position: relative;
  672. width: 28px;
  673. height: 27px;
  674. overflow: hidden;
  675.  
  676. }
  677.  
  678. .playerbuttonhug {
  679. position: absolute;
  680. top: -11px;
  681. left: -12px;
  682. }
  683.  
  684.  
  685. .tumblr_audio_player {
  686. border: none;
  687. padding: 0px;
  688. margin: 0px;
  689. height: 50px;
  690. width: 500px;
  691. }
  692.  
  693. .playerbuttonbg {
  694. position: absolute;
  695. z-index:999;
  696. left: 30px;
  697. top: 30px;
  698. width: 28px;
  699. height: 28px;
  700. background-color: #ffffff;
  701. padding: 10px;
  702. -webkit-border-radius: 40px;
  703. -moz-border-radius: 40px;
  704. border-radius: 0px;
  705. opacity: .4;
  706. filter: alpha(opacity=40);
  707. -moz-opacity: 0.4;
  708. -khtml-opacity: 0.4;
  709. transition: opacity .7s ease-in-out;
  710. -moz-transition: opacity .7s ease-in-out;
  711. -webkit-transition: opacity .7s ease-in-out;
  712. }
  713.  
  714. .playerbuttonbg:hover {
  715. opacity: 1;
  716. filter: alpha(opacity=100);
  717. -moz-opacity: 1;
  718. -khtml-opacity: 1;
  719. }
  720.  
  721. .audioimgwrapper {
  722. position: absolute;
  723. padding:10px;
  724. background-color:{color:sidebar background};
  725. left: 0px;
  726. top: 0px;
  727. -webkit-border-radius: 50px;
  728. -moz-border-radius: 50px;
  729. border-radius: 0px;
  730. overflow: hidden;
  731. width: 90px;
  732. height: 88px;
  733. }
  734.  
  735. .audioimgwrapper img {
  736. width: 100%;
  737. height: auto;
  738. -webkit-border-radius: 50px;
  739. -moz-border-radius: 50px;
  740. border-radius: 0px;
  741. }
  742.  
  743. .trackdetails {
  744. width: auto;
  745. display:inline-block;
  746. margin-left: 120px;
  747. line-height:200%;
  748. min-height: 85px;
  749. margin-top:10px;
  750. }
  751.  
  752. .audiowrapper {
  753. position: relative;
  754. display:inline-block;
  755. margin-bottom:20px;
  756. margin-top:10px;
  757. }
  758. #credit {
  759. position:fixed;
  760. color:{color:text};
  761. bottom:2px;
  762. right:1px;
  763. padding:4px;
  764. font-size:12px;
  765. }
  766.  
  767. #credit a {
  768. text-decoration:none;
  769. }
  770.  
  771.  
  772.  
  773. </style>
  774. </head>
  775. <body>
  776. <div class="click"><a href="#?w=300" rel="popup_name" class="poplight">&#10006;</a></div>
  777. <div id="popup_name" class="popup_block">
  778. <div class="top">
  779. <div id="sidebarimage2"><img src="{image:sidebar2}"></a></div>
  780. <div id="description"><u><strong><a href="/">home</a></u> <u><a href="/ask">ask</a></u>&nbsp;<u><a href="/archive">archive</a></u> </strong></div>
  781. </div>
  782.  
  783. <div class="all">
  784. <div class="left">
  785. {text:Pop Up Navi Text}
  786. </div>
  787. <div class="right">
  788. <div id="nav">
  789. <table>
  790. <tr>
  791. <td>
  792. <a href="{text:Link1url}">{text:link1}</a></td>
  793. <td>
  794. <a href="{text:Link2url}">{text:link2}</a></td></tr>
  795. <tr>
  796. <td>
  797. <a href="{text:Link3url}">{text:link3}</a></td>
  798. <td>
  799. <a href="{text:Link4url}">{text:link4}</a></td></tr>
  800. </table>
  801. </div>
  802. </div></div></div>
  803. <div id="sidebar">
  804. <div class="info">
  805. <a href="/">
  806. <div id="sidebarimage"><img src="{image:sidebar}"></a></div>
  807. <div id="title">{title}</div>
  808. <div id="description">{Description}</div></div>
  809. </div>
  810. </div>
  811.  
  812.  
  813. <script type="text/javascript" src="http://static.tumblr.com/q0etgkr/ytzm5f1ke/infinitescrolling.js"></script>
  814. <div id="container">
  815. <div id="content">
  816. <div class="autopagerize_page_element">
  817. {block:Posts}<div id="posts">
  818.  
  819. <div class="entries">
  820. {block:Text}{block:Title}<p><h3>{Title}</h3></p>{/block:Title}{Body}{/block:Text}
  821.  
  822. {block:Quote}<p><h2>&#147;{Quote}&#148;</h2></p><h1>{Source}</h1>{/block:Quote}
  823.  
  824. {block:Link}<div class="links"><a href="{URL}"><p><h3>{Name}</h3></p></a>
  825.  
  826. {block:Description}<p>{Description}</p>{/block:Description}</div>{/block:Link}
  827.  
  828. {block:Photo} {block:If500pxposts}<img src="{PhotoURL-500}" />{block:Caption}{Caption}{/block:Caption} {/block:If500pxposts}{block:If400pxposts}<img src="{PhotoURL-400}" />{block:Caption}{Caption}{/block:Caption} {/block:If400pxposts}{block:If250pxposts}<img src="{PhotoURL-250}" />{block:Caption}{Caption}{/block:Caption} {/block:If250pxposts}{/block:Photo}
  829.  
  830. {block:Photoset}
  831. {block:If500pxposts}
  832. <center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}
  833. {/block:If500pxposts}
  834. {block:If400pxposts}
  835. <center>{Photoset-400}</center>{block:Caption}{Caption}{/block:Caption}{/block:If400pxposts}
  836.  
  837. {block:If250pxposts}
  838. <center>{Photoset-250}</center>{block:Caption}{Caption}{/block:Caption}
  839. {/block:If250pxposts}
  840. {/block:Photoset}
  841.  
  842. {block:Chat}<ul class="chat">{block:Title}<p><h3>{Title}</h3></p>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}{Line}</li>{/block:Lines}</ul>{/block:Chat}
  843.  
  844. {block:Video} {block:If500pxposts}{Video-500}{block:Caption}{Caption}{/block:Caption}
  845. {/block:If500pxposts}
  846. {block:If400pxposts}
  847. {Video-400}{block:Caption}{Caption}{/block:Caption}
  848. {/block:If400pxposts}
  849. {block:If250pxposts}
  850. {Video-250}{block:Caption}{Caption}{/block:Caption}
  851. {/block:If250pxposts}{/block:Video}
  852.  
  853. {block:Audio}{block:AudioPlayer}
  854. <div class="audiowrapper">
  855. {block:AlbumArt}
  856. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  857. {/block:AlbumArt}
  858.  
  859. <div class="playerbuttonbg">
  860. <div class="newplayerbutton">
  861. <div class="playerbuttonhug">
  862.  
  863. {AudioPlayerWhite}
  864.  
  865. </div>
  866. </div>
  867. </div>
  868.  
  869. <div class="trackdetails">
  870.  
  871. {block:TrackName}<strong>{TrackName}</strong>{/block:TrackName}<br/>
  872. {block:Artist}<em>{Artist}</em> {/block:Artist}<br/>
  873. {block:Album}{Album}{/block:Album}<br/>
  874. {PlayCountWithLabel}
  875.  
  876. </div>
  877. </div>
  878. {/block:AudioPlayer}{/block:Audio}
  879.  
  880.  
  881. {block:Answer}
  882. <div class="q">
  883. <div class="as">{Asker} inquired: </div>
  884. {Question}</div>
  885. <div class="a">{Answer}</div>
  886. {/block:Answer}
  887.  
  888. {block:Date}<div id="postinfo">{ShortMonth}&nbsp;{DayofMonth}<a href="{permalink}">&nbsp;&#9679;&nbsp;{NoteCount} notes</a>&nbsp;&#9679;&nbsp;<a href="{ReblogURL}">reblog</a>{block:PermalinkPage}{block:RebloggedFrom}&nbsp;&#9679;&nbsp;<a href="{ReblogParentURL}" title="{ReblogParentName}">via&nbsp;</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">&ndash;&nbsp;src&nbsp;</a>{/block:ContentSource}{/block:RebloggedFrom}<br>{block:HasTags}<div class="tags">filed under: {block:Tags}<a href="{TagUrl}">{Tag},&nbsp;</a>{/block:Tags}</div>{/block:HasTags}{/block:PermalinkPage}</div>{/block:Date}
  889. </div>
  890. {block:PostNotes}
  891. <div class="pagenotes">
  892. {PostNotes}
  893. </div>
  894. {/block:PostNotes}
  895. </div>
  896. {/block:Posts}
  897. </div>
  898. </div>
  899.  
  900.  
  901. {block:ContentSource}
  902. {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  903. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  904. {/block:SourceLogo}
  905. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}
  906. {/block:ContentSource}
  907. <div id="credit">
  908. <a href="http://kalopsiathemes.tumblr.com" title="kalopsiathemes"</div>&#916;</a></div></div></div>
  909.  
  910. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement