Belgrravia

Honest Songs

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