Advertisement
ahu419

forgetfulthemes006

Jul 21st, 2013
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.01 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html>
  5.  
  6. <head>
  7.  
  8. <!--
  9.  
  10. **BEST VIEWED IN GOOGLE CHROME**
  11.  
  12. Terms + Conditions:
  13.  
  14. -Don't remove the credit
  15. -Taking inspiration is not the same as blatantly copying ideas and/or code
  16. -Don't use as base code
  17.  
  18. Default Settings-->
  19.  
  20. <meta name="color:background" content="#ffffff" />
  21. <meta name="color:post" content="#090a0a" />
  22. <meta name="color:tagging font hover" content="#325475" />
  23. <meta name="color:info" content="#090a0a" />
  24. <meta name="color:accent" content="#4b4b50" />
  25. <meta name="color:border" content="#e4eaee" />
  26. <meta name="color:block" content="#e4edf5" />
  27. <meta name="color:title" content="#000000" />
  28. <meta name="color:title hover" content="#7ea2ad" />
  29. <meta name="color:text" cont88ient="#000000" />
  30. <meta name="color:link" content="#9ed5ec" />
  31. <meta name="color:link hover" content="#d5dce2" />
  32. <meta name="color:scrollbar" content="#255a70" />
  33.  
  34. <meta name="image:sidebar background" content="" />
  35. <meta name="image:background" content="" />
  36.  
  37. <meta name="text:title" content="" />
  38. <meta name="text:Link1" content="/" />
  39. <meta name="text:Link1 Title" content="link 1" />
  40. <meta name="text:Link2" content="/" />
  41. <meta name="text:Link2 Title" content="link 2" />
  42. <meta name="text:Link3" content="/" />
  43. <meta name="text:Link3 Title" content="link 3" />
  44. <meta name="text:Link4" content="/" />
  45. <meta name="text:Link4 Title" content="link 5" />
  46. <meta name="text:Link5" content="/" />
  47. <meta name="text:Link5 Title" content="link 5" />
  48. <title>{Title}</title>
  49.  
  50. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  51.  
  52. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:400italic' rel='stylesheet' type='text/css'>
  53.  
  54. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:700' rel='stylesheet' type='text/css'>
  55.  
  56. <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed|Roboto' rel='stylesheet' type='text/css'>
  57.  
  58. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  59.  
  60.  
  61. <link rel="shortcut icon" href="{Favicon}"/>
  62. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  63. {block:Description} <meta name="description" content="{MetaDescription}"/> {/block:Description}
  64.  
  65. <script type="text/javascript"
  66. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  67.  
  68.  
  69. <script>
  70. $(document).ready(function() {
  71. $('a.poplight[href^=#]').click(function() {
  72. var popID = $(this).attr('rel');
  73. var popURL = $(this).attr('href');
  74. var query= popURL.split('?');
  75. var dim= query[1].split('&');
  76. var popWidth = dim[0].split('=')[1];
  77. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
  78. var popMargTop = ($('#' + popID).height() + 80) / 2;
  79. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  80. $('#' + popID).css({
  81. 'margin-top' : -popMargTop,
  82. 'margin-left' : -popMargLeft
  83. });
  84. $('body').append('<div id="fade"></div>');
  85. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  86. return false;
  87. });
  88. $('a.close, #fade').live('click', function() {
  89. $('#fade , .popup_block').fadeOut(function() {
  90. $('#fade, a.close').remove();
  91. });
  92. return false;
  93. });
  94. });
  95. </script>
  96.  
  97. <script>
  98. $(document).ready(function() {
  99. //
  100. //When you click on a link with class of poplight and the href starts with a #
  101. $('a.poplight[href^=#]').click(function() {
  102. var popID = $(this).attr('rel'); //Get Popup Name
  103. var popURL = $(this).attr('href'); //Get Popup href to define size
  104. //Pull Query & Variables from href URL
  105. var query= popURL.split('?');
  106. var dim= query[1].split('&');
  107. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  108. //Fade in the Popup and add close button
  109. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  110. //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
  111. var popMargTop = ($('#' + popID).height() + 80) / 2;
  112. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  113. //Apply Margin to Popup
  114. $('#' + popID).css({
  115. 'margin-top' : -popMargTop,
  116. 'margin-left' : -popMargLeft
  117. });
  118. //Fade in Background
  119. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  120. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  121. return false;
  122. });
  123. //Close Popups and Fade Layer
  124. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  125.  
  126. $('#fade , .popup_block').fadeOut(function() {
  127.  
  128. $('#fade, a.close').remove(); //fade them both out
  129. });
  130. return false;
  131. });
  132. });
  133. </script>
  134.  
  135.  
  136. <style type="text/css">
  137.  
  138.  
  139. body {
  140. background-color:{color:background};
  141. background-attachment:fixed;
  142. background-image:url('{image:background}');
  143. font-family:arial;
  144. font-size:10px;
  145. line-height:11px;
  146. letter-spacing:1px;
  147. color:{color:text};
  148. text-wrap:normal
  149. word-wrap:break-word;
  150. height:100%;
  151. right:2px;
  152. overflow-y:scroll;
  153. overflow-x:hidden;
  154. }
  155.  
  156. html {
  157. overflow-y:auto;
  158. background-color:transparent;
  159. }
  160.  
  161. html {
  162. overflow-y:auto;
  163. background-color:transparent;
  164. }
  165.  
  166. ::-webkit-scrollbar {
  167. width:4px;
  168. height:auto;
  169. background:{color:background};
  170. }
  171.  
  172. ::-webkit-scrollbar-thumb:vertical {
  173. background-color:{color:scrollbar};
  174. height:0px;
  175. }
  176.  
  177. ::-webkit-scrollbar-thumb:horizontal {
  178. background-color:{color:scrollbar};
  179. height:0px;
  180. }
  181.  
  182. ::selection, ::-webkit-selection, ::-moz-selection {
  183. color:{color:selection};
  184. }
  185.  
  186.  
  187. a, a:active, a:visited{
  188. text-decoration:none;
  189. color:{color:link};
  190. }
  191.  
  192. a:hover {
  193. color:{color:link hover};
  194. -webkit-transition-duration:.5s;
  195. -moz-transition-duration:.5s;
  196. -o-transition: all 0.5s ease-in-out;
  197. transition: all 0.5s ease-in-out;
  198. }
  199.  
  200.  
  201. #popitmenu{position: absolute; background-color: #000000; font: normal 10px {text:Main Font}; line-height: 18px; z-index: 100; visibility: hidden;}
  202. #popitmenu a{text-decoration: none; padding-left: 6px; color: #ffffff; display: block;}
  203. #popitmenu a:hover{ background-color: #faf919; color: #000000;}
  204.  
  205.  
  206. #fade {
  207. display: none;
  208. background: #000;
  209. position: fixed;
  210. left: 0;
  211. top: 0;
  212. width: 100%;
  213. height: 100%;
  214. opacity: .80;
  215. z-index: 9999;
  216. }
  217.  
  218. .popup_block{
  219. display: none;
  220. background: #FFFFFF;
  221. padding: 20px;
  222. float: left;
  223. position: fixed;
  224. top: 50%;
  225. left: 50%;
  226. z-index: 99999;
  227. }
  228.  
  229. img.btn_close {
  230. float: right;
  231. margin: -55px -55px 0 0;
  232. }
  233.  
  234. *html #fade {
  235. position: absolute;
  236. }
  237.  
  238. *html .popup_block {
  239. position: absolute;
  240. }
  241.  
  242. #main {
  243. background-color:transparent;
  244. background-attachment:fixed;
  245. background-image: url('{image:Background}');
  246. position:absolute;
  247. width:1250px;
  248. height:100%;
  249. }
  250.  
  251. .sidebar {
  252. width:250px;
  253. height:100%;
  254. margin-top:-8px;
  255. margin-left:-10px;
  256. position:fixed;
  257. background-image: url('{image:sidebar background}');
  258. }
  259.  
  260. .smalltitle {
  261. color:{color:text};
  262. font-size:13px;
  263. z-index:1000;
  264. position:fixed;
  265. margin-left:600px;
  266. margin-top:47px;
  267. font-family:arial;
  268. font-style:italic;
  269. }
  270.  
  271. #quotemark {
  272. font-size:90px;
  273. font-family:georgia;
  274. color:{color:accent};
  275. margin-left:430px;
  276. margin-top:125px;
  277. opacity:.4;
  278. position:fixed;
  279. }
  280.  
  281. #linkage {
  282. opacity:1;
  283. padding-left:5px;
  284. text-align:left;
  285. padding-top:10px;
  286. width:485px;
  287. }
  288.  
  289. #linkage a {
  290. width:auto;
  291. font-size:10px;
  292. text-transform:uppercase;
  293. color:{color:title};
  294. letter-spacing:0px;
  295. padding:1px;
  296. padding-top:2px;
  297. border-left:8px solid {color:link hover};
  298. margin-bottom:10px;
  299. margin-top:1px;
  300. padding-left:4px;
  301. margin-right:4px;
  302. height:6px;
  303. line-height:5px;
  304. font-family:arial;
  305. font-style:normal;
  306. display:inline-block;
  307. }
  308.  
  309. #linkage a:hover {
  310. color:{color:link hover};
  311. -webkit-transition-duration:0.5s;
  312. -moz-transition-duration:0.5s;
  313. -o-transition: all 0.5s ease-in-out;
  314. transition: all 0.5s ease-in-out;
  315. }
  316.  
  317. #title {
  318. width:500px;
  319. z-index:13000;
  320. text-align:right;
  321. color:{color:title};
  322. font-weight:bold;
  323. font-family:arial;
  324. font-size:27px;
  325. line-height:27px;
  326. position:fixed;
  327. letter-spacing:0px;
  328. margin-top:55px;
  329. margin-left:-25px;
  330. }
  331.  
  332. #title a {
  333. color:{color:title};
  334. }
  335.  
  336. #title a:hover {
  337. color:{color:link hover};
  338. -webkit-transition-duration:.5s;
  339. -moz-transition-duration:.5s;
  340. -o-transition: all 0.5s ease-in-out;
  341. transition: all 0.5s ease-in-out;
  342. }
  343.  
  344. #subtitle {
  345. font-family:Playfair Display;
  346. font-style:italic;
  347. font-size:18px;
  348. font-weight:bold;
  349. line-height:21px;
  350. text-align:justify;
  351. color:{color:title};
  352. margin-top:30px;
  353. margin-left:295px;
  354. width:490px;
  355. background-color:white;
  356. padding-left:25px;
  357. padding-top:10px;
  358. padding-bottom:5px;
  359. border-left:1px solid {color:border};
  360. z-index:1300;
  361. }
  362.  
  363. #subtitle a {
  364. color:{color:title};
  365. }
  366.  
  367. #subtitle a:hover {
  368. color:{color:title hover};
  369. }
  370.  
  371. #desc {
  372. margin-left:10px;
  373. height:25px;
  374. z-index:10000;
  375. opacity:1;
  376. }
  377.  
  378. #desc:hover {
  379. -webkit-transition-duration:.5s;
  380. -moz-transition-duration:.5s;
  381. -o-transition: all 0.5s ease-in-out;
  382. transition: all 0.5s ease-in-out;
  383. }
  384.  
  385. .desctext {
  386. width:200px;
  387. margin-top:100px;
  388. color:black;
  389. text-align:justify;
  390. margin-left:15px;
  391. font-size:9px;
  392. font-family:arial;
  393. line-height:12px;
  394. letter-spacing:2px;
  395. font-weight:normal;
  396. }
  397.  
  398. .pagelink {
  399. text-align:center;
  400. margin-top:370px;
  401. margin-left:10px;
  402. z-index:1000;
  403. font-size:34px;
  404. font-weight:bold;
  405. width:400px;
  406. position:fixed;
  407. letter-spacing:0px;
  408. z-index:111000;
  409. font-family:arial;
  410. }
  411.  
  412. .pagelink a {
  413. color:{color:title};
  414. }
  415.  
  416. .pagelink a:hover {
  417. color:{color:link hover};
  418. -webkit-transition-duration:.5s;
  419. -moz-transition-duration:.5s;
  420. -o-transition: all 0.5s ease-in-out;
  421. transition: all 0.5s ease-in-out;
  422. }
  423.  
  424. #question {
  425. font-size:13px;
  426. line-height:13px;
  427. padding-bottom:-4px;
  428. font-family:arial;
  429. text-align:left;
  430. background-color:{color:block};
  431. padding:15px;
  432. padding-bottom:20px;
  433. color:{color:text};
  434. }
  435.  
  436. #asker {
  437. font-size:9px;
  438. margin-top:-20px;
  439. font-family:oranienbaum;
  440. margin-left:30px;
  441. color:{color:text};
  442. }
  443.  
  444. #asker a {
  445. color:{color:text};
  446. }
  447.  
  448. #answer {
  449. margin-top:5px;
  450. }
  451.  
  452. #content {
  453. position:absolute;
  454. height:auto;
  455. left:285px;
  456. width:600px;
  457. margin-left:-8px;
  458. font-family:{font:body};
  459. margin-bottom:10px;
  460. padding-left:40px;
  461. margin-top:175px;
  462. }
  463.  
  464. #post {
  465. width:500px;
  466. margin-left:0px;
  467. margin-right:0px;
  468. margin-top:-15px;
  469. margin-bottom:-10px;
  470. border-bottom:1px solid {color:block};
  471. padding:15px 0px 5px 0px;
  472. }
  473.  
  474. #info {
  475. position:relative;
  476. margin-top:17px;
  477. margin-left:0px;
  478. width:500px;
  479. height:5px;
  480. opacity:1;
  481. font-family:playfair display;
  482. font-size:9px;
  483. letter-spacing:1px;
  484. text-align:left;
  485. }
  486.  
  487. #info a {
  488. width:35px;
  489. color:{color:info};
  490. font-size:9px;
  491. padding-bottom:1px;
  492. }
  493.  
  494. #info a:hover {
  495. -webkit-transition-duration:0.75s;
  496. -moz-transition-duration:0.75s;
  497. -o-transition: all 0.75s ease-in-out;
  498. transition: all 0.75s ease-in-out;
  499. }
  500.  
  501. .tagging {
  502. position:relative;
  503. padding:4px 25px 4px 15px;
  504. margin-left:-10px;
  505. width:500px;
  506. margin-top:5px;
  507. margin-bottom:75px;
  508. font-size:9px;
  509. font-family:playfair display;
  510. font-style:italic;
  511. }
  512.  
  513. .tagging a {
  514. position:relative;
  515. margin-right:7px;
  516. color:{color:text};
  517. height:0px;
  518. margin-left:2px;
  519.  
  520. }
  521.  
  522. .tagging a:hover {
  523. color:{color:tagging font hover};
  524. -webkit-transition-duration:.25s;
  525. -moz-transition-duration:.25s;
  526. -o-transition: all 0.25s ease-in-out;
  527. transition: all 0.25s ease-in-out;
  528. }
  529.  
  530.  
  531. h1{
  532. font-size:14px;
  533. line-height:18px;
  534. font-family:playfair display;
  535. font-style:italic;
  536. color:{color:title};
  537. -webkit-transition-duration:.5s;
  538. -moz-transition-duration:.5s;
  539. -o-transition: all 0.5s ease-in-out;
  540. transition: all 0.5s ease-in-out;
  541. }
  542.  
  543. h2{
  544. line-height:15px;
  545. text-align:justify;
  546. padding:7px;
  547. padding-bottom:0px;
  548. font-style:italic;
  549. color:{color:background};
  550. font-family:playfair display;
  551. font-size:14px;
  552. color:black;
  553. font-weight:normal;
  554. }
  555.  
  556. blockquote {
  557. margin-left:10px;
  558. padding:10px;
  559. background-color:{color:block};
  560. width:460px;
  561. }
  562.  
  563. .quote {
  564. font-size:13px;
  565. line-height:15px;
  566. font-family:arial;
  567. font-style:italic;
  568. padding-top:-5px;
  569. padding-left:25px;
  570. }
  571.  
  572. #mark {
  573. font-size:80px;
  574. font-family:arial;
  575. color:{color:accent};
  576. margin-left:5px;
  577. margin-top:20px;
  578. opacity:.8;
  579. position:absolute;
  580. }
  581.  
  582. .quotesource {
  583. width:500px;
  584. font-size:10px;
  585. font-family:arial;
  586. padding:2px;
  587. text-align:right;
  588. margin-top:0px;
  589. letter-spacing:1px;
  590. }
  591.  
  592. .user_1 .label {
  593. color:{color:link};
  594. font-weight:bold;
  595. }
  596.  
  597. .user_2 .label {
  598. color:{color:text};
  599. font-weight:bold
  600. }
  601.  
  602. .user_3 .label {
  603. color:{color:link};
  604. font-weight:bold;
  605. }
  606.  
  607. .user_4 .label {
  608. color:{color:text};
  609. font-weight:bold
  610. }
  611. .user_5 .label {
  612. color:{color:link};
  613. font-weight:bold;
  614. }
  615.  
  616. .user_6 .label {
  617. color:{color:text};
  618. font-weight:bold
  619. }
  620.  
  621. .user_7 .label {
  622. color:{color:link};
  623. font-weight:bold
  624. }
  625.  
  626. .user_8 .label {
  627. color:{color:text};
  628. font-weight:bold
  629. }
  630.  
  631. .user_9 .label {
  632. color:{color:link};
  633. font-weight:bold
  634. }
  635.  
  636. .user_10 .label {
  637. color:{color:text};
  638. font-weight:bold
  639. }
  640.  
  641. ul.chat, .chat ol, .chat li {
  642. list-style:none;
  643. margin:0px;
  644. padding:0px;
  645. line-height:15px;
  646. }
  647.  
  648. ol.notes, .notes li {background-color:transparent;
  649. color:{color:text};
  650. list-style:none; margin-top:5px; margin-left:-20px; }
  651.  
  652. #audentryprob {
  653. display:block;
  654. height:auto;
  655. position:relative;
  656. text-align:left;
  657. }
  658.  
  659. .audentry {
  660. position:relative;
  661. width:390px;
  662. }
  663.  
  664. .audioplayer {
  665. width:200px;
  666. height:30px;
  667. padding:5px;
  668. overflow:hidden;
  669. margin-left:-5px;
  670. opacity:.7;
  671. }
  672.  
  673. .audiocaption {
  674. color:{color:link};
  675. width:300px;
  676. }
  677.  
  678. #tumblr_controls_a {
  679. background:none !important;
  680. border:0px !important;
  681. box-shadow:0px 0px 0px rgba(0,0,0,0) !important;
  682. }
  683.  
  684.  
  685. </style>
  686.  
  687. </head>
  688.  
  689. <body>
  690.  
  691. <div id="main">
  692.  
  693. <div id="popup_name" class="popup_block">
  694. <h2>{Description}</h2>
  695. </div>
  696.  
  697. <div class="sidebar">
  698. </div>
  699. <div id="subtitle"><a href="/">{text:title}</a>
  700.  
  701. <div id="linkage">
  702. <a href="#?w=500" rel="popup_name" class="poplight">description</a>
  703. <a href="/ask">ask</a>
  704. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  705. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  706. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  707. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  708. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  709. <a href="http://forgetfuldonna.tumblr.com">theme</a>
  710. </div>
  711. </div>
  712.  
  713. <div class="pagelink">{block:Pagination}
  714. {block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  715. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  716. {/block:Pagination}</div>
  717.  
  718.  
  719. </div>
  720.  
  721.  
  722.  
  723.  
  724. <div id="content">
  725.  
  726.  
  727. {block:Posts}
  728.  
  729.  
  730. <div id="post">
  731.  
  732.  
  733. {block:Text}
  734. {block:Title}
  735. <h1><a href="{Permalink}">{Title}</a></h1>
  736. {/block:Title}
  737. {Body}
  738. {/block:Text}
  739.  
  740. {block:Photo}
  741. {block:Title}
  742. <h1><a href="{Permalink}">{Title}</a></h1>
  743. {/block:Title}
  744. <center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  745. {block:Caption}
  746. {Caption}
  747. {/block:Caption}
  748. {/block:Photo}
  749.  
  750. {block:Photoset}
  751. <center>{Photoset-500}</center>
  752. {block:Caption}
  753. {Caption}
  754. {/block:Caption}
  755. {/block:Photoset}
  756.  
  757. {block:Quote}
  758. <div id="mark">&ldquo;</div>
  759. {block:Title}
  760. <h1><a href="{Permalink}">{Title}</a></h1>
  761. {/block:Title}
  762. <div class="quote">{Quote}</div>
  763. {block:Source}<br>
  764. <div class="quotesource">- {Source}</div>
  765. {/block:Source}
  766. {/block:Quote}
  767.  
  768. {block:Link}
  769. <h1><a href="{URL}" class="link" {Target}>{Name}</a></h1>
  770. {block:Description}
  771. <div class="description">{Description}</div>
  772. {/block:description}
  773.  
  774. {/block:Link}
  775. {block:Chat}
  776. {block:Title}
  777. <h1><a href="{Permalink}">{Title}</a></h1>
  778. {/block:Title}
  779. <ul class="chat">
  780. {block:Lines}
  781. <li class="user_{UserNumber}">
  782. {block:Label}
  783. <span class="label">
  784. {Label}
  785. </span>
  786. {/block:Label}
  787. &nbsp;{Line}</li>
  788. {/block:Lines}
  789. </ul>
  790. {/block:Chat}
  791.  
  792. {block:Answer}
  793. <div id="question">{Question}
  794.  
  795. </div>
  796. <div id="asker">— asked by {Asker}</div><br>
  797. <div id="answer">{Answer}</div>
  798. {/block:Answer}
  799.  
  800. {block:Video}
  801. {block:Title}
  802. <h1><a href="{Permalink}">{Title}</a></h1>
  803. {/block:Title}
  804. <center>{Video-500}</center>
  805. {block:Caption}
  806. <div class="caption">{Caption}</div>
  807. {/block:Caption}
  808. {/block:Video}
  809.  
  810. {block:Audio}
  811. <h5><a href="{Permalink}">{block:TrackName}
  812. "{TrackName}"
  813. {/block:TrackName}
  814. {block:Artist}
  815. by {Artist}
  816. {/block:Artist}{block:Album}
  817. (from <i>{Album}</i>)
  818. {/block:Album}</a></h5>
  819. <div id="audentryprob">
  820. <div class="audentry">
  821. <div class="audioplayer">{AudioPlayerBlack}</div>
  822. {block:Caption}
  823. <div class="audiocaption">{Caption}</div>
  824. {/block:Caption}
  825.  
  826. </div>
  827. </div>{/block:Audio}
  828. </div>
  829.  
  830. <div id="info"> {block:Date}<a href="{Permalink}">{DayOfMonth} {ShortMonth} {Year}</a>{/block:Date}
  831. {block:NoteCount}with <a href="{Permalink}">{NoteCount}</a> notes{/block:NoteCount} {block:RebloggedFrom} — <a href="{ReblogParentURL}">via</a> {/block:RebloggedFrom} {block:ContentSource}and <a href="{SourceURL}">orig</a>{/block:ContentSource} — <a href="{ReblogURL}"target="_blank">reblog this post</a>
  832. </div>
  833. <div class="tagging">
  834. {block:HasTags}{block:Tags}<a href="/tagged/{Tag}">#{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  835.  
  836. {/block:Posts}
  837. {block:PostNotes}{PostNotes}{/block:PostNotes}
  838.  
  839. </div>
  840.  
  841. </div>
  842.  
  843. </div>
  844.  
  845. </div>
  846.  
  847. </body>
  848.  
  849. </html>
  850.  
  851. <!--Nothing more to see here!-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement