Advertisement
alithegreat

AGLEERPH | #34 | 505

Oct 3rd, 2016
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.66 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  6.  
  7.  
  8. <head>
  9.  
  10. <title>{Title}</title>
  11. <link rel="shortcut icon" href="{Favicon}">
  12. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  13. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  14.  
  15. <!----
  16.  
  17. agleerph / #34: 505.
  18.  
  19. --->
  20.  
  21. <meta name="image:Sidebar1" content=""/>
  22. <meta name="image:Admin1icon" content=""/>
  23. <meta name="image:Admin1inner" content=""/>
  24. <meta name="image:Admin2icon" content=""/>
  25. <meta name="image:Admin2inner" content=""/>
  26. <meta name="image:Pattern" content=""/>
  27.  
  28. <meta name="color:Pattern Alt" content=""/>
  29. <meta name="color:Background" content=""/>
  30. <meta name="color:Blockquote" content=""/>
  31. <meta name="color:Border" content=""/>
  32. <meta name="color:Entries" content=""/>
  33. <meta name="color:Link" content=""/>
  34. <meta name="color:Navigation1" content=""/>
  35. <meta name="color:Navigation1 Hover" content=""/>
  36. <meta name="color:Navigation1 Links" content=""/>
  37. <meta name="color:Navigation2" content=""/>
  38. <meta name="color:Navigation2 Hover" content=""/>
  39. <meta name="color:Navigation2 Links" content=""/>
  40. <meta name="color:Pre BG" content=""/>
  41. <meta name="color:Pre Border" content=""/>
  42. <meta name="color:Pre Text" content=""/>
  43. <meta name="color:Question1" content=""/>
  44. <meta name="color:Question2" content=""/>
  45. <meta name="color:Scrollbar1" content=""/>
  46. <meta name="color:Scrollbar2" content=""/>
  47. <meta name="color:Sidebar" content=""/>
  48. <meta name="color:Text" content=""/>
  49. <meta name="color:Title" content=""/>
  50. <meta name="color:Topbar BG" content=""/>
  51. <meta name="color:Topbar Text 1" content=""/>
  52. <meta name="color:Topbar Text 2" content=""/>
  53.  
  54. <meta name="text:link one URL" content="/"/>
  55. <meta name="text:link one text" content="link one"/>
  56. <meta name="text:link two URL" content="/"/>
  57. <meta name="text:link two text" content="link two"/>
  58. <meta name="text:link three URL" content="/"/>
  59. <meta name="text:link three text" content="link three"/>
  60. <meta name="text:link four URL" content="/"/>
  61. <meta name="text:link four text" content="link four"/>
  62. <meta name="text:link five URL" content="/"/>
  63. <meta name="text:link five text" content="link five"/>
  64. <meta name="text:link six URL" content="/"/>
  65. <meta name="text:link six text" content="link six"/>
  66.  
  67. <meta name="text:main title" content="this is your main title"/>
  68. <meta name="text:subtitle" content="this is your subtitle"/>
  69.  
  70. <meta name="text:quote" content="this is your quote"/>
  71.  
  72. <meta name="text:admin1 name" content="admin1 name"/>
  73. <meta name="text:admin1 desc" content="admin1 desc"/>
  74. <meta name="text:admin2 name" content="admin2 name"/>
  75. <meta name="text:admin2 desc" content="admin2 desc"/>
  76.  
  77. <script type="text/javascript"
  78. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  79. <script>
  80. $(document).ready(function() {
  81. //
  82. $('a.poplight[href^=#]').click(function() {
  83. var popID = $(this).attr('rel'); //Get Popup Name
  84. var popURL = $(this).attr('href'); //Get Popup href to define size
  85. var query= popURL.split('?');
  86. var dim= query[1].split('&');
  87. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  88. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  89. var popMargTop = ($('#' + popID).height() + 80) / 2;
  90. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  91. //Apply Margin to Popup
  92. $('#' + popID).css({
  93. 'margin-top' : -popMargTop,
  94. 'margin-left' : -popMargLeft
  95. });
  96. $('body').append('<div id="fade"></div>');
  97. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  98. return false;
  99. });
  100. $('a.close, #fade').live('click', function() {
  101. $('#fade , .popup_block').fadeOut(function() {
  102. $('#fade, a.close').remove(); //fade them both out
  103. });
  104. return false;
  105. });
  106. });
  107. </script>
  108.  
  109. <style type="text/css">
  110.  
  111.  
  112. ::-webkit-scrollbar-thumb {
  113. height:auto;
  114. background-color:{color:Scrollbar2};
  115. }
  116.  
  117. ::-webkit-scrollbar {
  118. height:3px;
  119. width:3px;
  120. background-color:{color:Scrollbar1};
  121. }
  122.  
  123.  
  124. body {
  125. background: {color:Background};
  126. font-family: cambria;
  127. font-size: 10px;
  128. line-height:14px;
  129. color: {color:Text};
  130. background-image:url('{image:Background}');
  131. background-attachment:fixed;
  132.  
  133. }
  134.  
  135. blockquote {
  136. border-left:2px solid {color:blockquote};
  137. padding: 2px 10px;
  138. margin: 10px;
  139. }
  140.  
  141.  
  142. li {
  143. padding-left: 1.2em;
  144. list-style: none;
  145. }
  146.  
  147. li:before {
  148. color: {color:title};
  149. content: "\f105";
  150. font-family: FontAwesome;
  151. font-size:10px;
  152. display: inline-block;
  153. margin-left: -1.2em;
  154. width: 1.2em;
  155. }
  156.  
  157.  
  158. a {
  159. text-decoration: none;
  160. color: {color:Link};
  161. }
  162.  
  163. pre {
  164. font-family:cambria;
  165. font-size:9px;
  166. padding:5px;
  167. text-transform:uppercase;
  168. border-bottom:1px solid {color:Pre Border};
  169. text-align:center;
  170. color:{color:Pre Text};
  171. background-color:{color:Pre BG};
  172. word-wrap:break-word;
  173. }
  174.  
  175. pre a {
  176. color:{color:pre text};
  177. }
  178.  
  179. pre b,strong {
  180. color:{color:pre text};
  181. }
  182.  
  183. pre i,em {
  184. color:{color:pre text};
  185. }
  186.  
  187.  
  188. small, sub {
  189. font-size:10px;
  190. }
  191.  
  192. b, strong {
  193. color:{color:Title};
  194. }
  195.  
  196.  
  197. #sideph1 {
  198. position:fixed;
  199. margin-left:208px;
  200. margin-top:3px;
  201. border:1px solid {color:border};
  202. width:200px;
  203. height:300px;
  204. }
  205.  
  206. #icon1 {
  207. position:fixed;
  208. margin-left:303px;
  209. margin-top:361px;
  210. border:1px solid {color:border};
  211. width:105px;
  212. height:105px;
  213. }
  214.  
  215. #icon2 {
  216. position:fixed;
  217. margin-left:303px;
  218. margin-top:470px;
  219. border:1px solid {color:border};
  220. width:105px;
  221. height:105px;
  222. }
  223.  
  224. #backbar {
  225. position:fixed;
  226. margin-left:30px;
  227. margin-top:30px;
  228. width:413px;
  229. height:580px;
  230. border:1px solid {color:border};
  231. background-image:url('{image:Pattern}');
  232. background-color:{color:pattern alt};
  233. background-attachment:fixed;
  234. }
  235.  
  236. #quotebar {
  237. position:fixed;
  238. margin-left:69px;
  239. width:219px;
  240. padding:5px;
  241. height:81px;
  242. border:1px solid {color:border};
  243. margin-top:484px;
  244. background-color:{color:sidebar};
  245. overflow:auto;
  246. text-align:justify;
  247. }
  248.  
  249. #sidebar {
  250. position:fixed;
  251. margin-top:3px;
  252. margin-left:3px;
  253. border:1px solid {color:border};
  254. width:180px;
  255. height:280px;
  256. background-color:{color:Sidebar};
  257. padding:10px;
  258. line-height:12px;
  259. text-align:justify;
  260. }
  261.  
  262. #titlebar {
  263. position:fixed;
  264. margin-top:308px;
  265. margin-left:-1px;
  266. width:393px;
  267. padding:10px;
  268. background-color:{color:topbar bg};
  269. border:1px solid {color:border};
  270. }
  271.  
  272. #maintitle {
  273. text-transform:lowercase;
  274. font-style:italic;
  275. font-weight:300;
  276. font-size:14px;
  277. color:{color:topbar text 1};
  278. padding-right:5px;
  279. text-align:right;
  280. }
  281.  
  282. #subtitle {
  283. font-family:cambria;
  284. font-size:9px;
  285. padding-right:5px;
  286. text-transform:lowercase;
  287. text-align:right;
  288. color:{color:topbar text 2};
  289. }
  290.  
  291. #pagination {
  292. margin-top:10px;
  293. font-size:10px;
  294. font-family:cambria;
  295. letter-spacing:0px;
  296. line-height:12px;
  297. text-align:center;
  298. text-transform:uppercase;
  299. color:{color:text};
  300. }
  301.  
  302. #pagination a {
  303. color:{color:link};
  304. }
  305.  
  306. #navbar1 {
  307. margin-left:3px;
  308. margin-top:361px;
  309. width:61px;
  310. background-color:{color:sidebar};
  311. border:1px solid {color:border};
  312. height:214px;
  313. position:fixed;
  314. }
  315.  
  316. #navbar2 {
  317. margin-left:69px;
  318. margin-top:361px;
  319. width:229px;
  320. background-color:{color:sidebar};
  321. border:1px solid {color:border};
  322. height:118px;
  323. position:fixed;
  324. }
  325.  
  326. #navigation1 {
  327. margin-top:3px;
  328. text-align:center;
  329. }
  330.  
  331. #navigation1 a {
  332. display:inline-block;
  333. text-align:center;
  334. width:53px;
  335. height:66px;
  336. line-height:66px;
  337. text-transform:lowercase;
  338. font-family:cambria;
  339. font-size:9px;
  340. margin-bottom:2px;
  341. border:1px solid {color:border};
  342. background-color:{color:navigation1};
  343. color:{color:navigation1 links};
  344. -webkit-transition: all 0.5s ease-in-out;
  345. -moz-transition: all 0.5s ease-in-out;
  346. -o-transition: all 0.5s ease-in-out;
  347. }
  348.  
  349. #navigation1 a:hover {
  350. color:{color:navigation1 hover};
  351. -webkit-transition: all 0.5s ease-in-out;
  352. -moz-transition: all 0.5s ease-in-out;
  353. -o-transition: all 0.5s ease-in-out;
  354. }
  355.  
  356. #navigation2 {
  357. margin-top:3px;
  358. text-align:center;
  359. }
  360.  
  361. #navigation2 a {
  362. display:inline-block;
  363. text-align:center;
  364. width:108px;
  365. height:34px;
  366. line-height:34px;
  367. text-transform:lowercase;
  368. font-family:cambria;
  369. font-size:9px;
  370. margin-bottom:2px;
  371. border:1px solid {color:border};
  372. background-color:{color:navigation2};
  373. color:{color:navigation2 links};
  374. -webkit-transition: all 0.5s ease-in-out;
  375. -moz-transition: all 0.5s ease-in-out;
  376. -o-transition: all 0.5s ease-in-out;
  377. }
  378.  
  379. #navigation2 a:hover {
  380. color:{color:navigation2 hover};
  381. -webkit-transition: all 0.5s ease-in-out;
  382. -moz-transition: all 0.5s ease-in-out;
  383. -o-transition: all 0.5s ease-in-out;
  384. }
  385.  
  386. #entries {
  387. position:absolute;
  388. width:528px;
  389. margin-left:500px;
  390. padding:0px;
  391. margin-top:30px;
  392. }
  393.  
  394. #entrybg {
  395. padding:3px;
  396. margin-bottom:20px;
  397. background-color:{color:pattern alt};
  398. border:1px solid {color:Border};
  399. background-image:url('{image:Pattern}');
  400. background-attachment:absolute;
  401. }
  402.  
  403. #entry {
  404. background-color:{color:Entries};
  405. margin-bottom:0px;
  406. padding:8px;
  407. border:1px solid {color:Border};
  408. }
  409.  
  410.  
  411. #posttitles {
  412. text-align: center;
  413. font-size: 20px;
  414. line-height:130%;
  415. text-transform:lowercase;
  416. font-weight:300;
  417. font-style:italic;
  418. padding:5px;
  419. color: {color:title};
  420. }
  421.  
  422.  
  423. #posttitles a {
  424. color:{color:title};
  425. }
  426.  
  427. #ask {
  428. z-index:10;
  429. font-family:cambria;
  430. font-size:16px;
  431. text-align:center;
  432. text-transform:lowercase;
  433. color:{color:question2};
  434. background-color:{color:question1};
  435. margin-right:0px;
  436. padding:10px;
  437. padding-left:10px;
  438. border-bottom:1px solid {color:border};
  439. }
  440.  
  441. #ask a {
  442. color:{color:question2};
  443. }
  444.  
  445.  
  446. #question {
  447. background-color:{color:Question1};
  448. color:{color:Question2};
  449. font-size:10px;
  450. z-index:10;
  451. text-align:center;
  452. padding:10px;
  453. }
  454.  
  455. .playerbuttonbg {
  456. position: absolute;
  457. left: 20px;
  458. top: 20px;
  459. width: 19px;
  460. height: 19px;
  461. background-color: #ffffff;
  462. padding: 10px;
  463. -webkit-border-radius: 40px;
  464. -moz-border-radius: 40px;
  465. border-radius: 40px;
  466. opacity: .4;
  467. filter: alpha(opacity=40);
  468. opacity: 0.4;
  469. -khtml-opacity: 0.4;
  470. transition: opacity .7s ease-in-out;
  471. -moz-transition: opacity .7s ease-in-out;
  472. -webkit-transition: opacity .7s ease-in-out;
  473. }
  474.  
  475. .playerbuttonbg:hover {
  476. opacity: 1;
  477. filter: alpha(opacity=100);
  478. -moz-opacity: 1;
  479. -khtml-opacity: 1;
  480. }
  481.  
  482. .newplayerbutton {
  483. position: relative;
  484. width: 19px;
  485. height: 19px;
  486. overflow: hidden;
  487. }
  488.  
  489. .playerbuttonhug {
  490. position: absolute;
  491. top: -18px;
  492. left: -7px;
  493. }
  494.  
  495. .tumblr_audio_player {
  496. height: 90px;
  497. width: 270px;
  498. -moz-transform: scale(0.60, 0.60);
  499. -webkit-transform: scale(0.60, 0.60);
  500. -o-transform: scale(0.60, 0.60);
  501. -ms-transform: scale(0.60, 0.60);
  502. transform: scale(0.60, 0.60);
  503. -moz-transform-origin: top left;
  504. -webkit-transform-origin: top left;
  505. -o-transform-origin: top left;
  506. -ms-transform-origin: top left;
  507. transform-origin: top left;
  508. }
  509.  
  510. .audioimgwrapper {
  511. position: absolute;
  512. left: 0px;
  513. top: 0px;
  514. -webkit-border-radius: 40px;
  515. -moz-border-radius: 40px;
  516. border-radius: 40px;
  517. overflow: hidden;
  518. width: 79px;
  519. height: 79px;
  520. }
  521.  
  522. .audioimgwrapper img {
  523. width: 100%;
  524. height: auto;
  525. -webkit-border-radius: 40px;
  526. -moz-border-radius: 40px;
  527. border-radius: 40px;
  528. }
  529.  
  530. .trackdetails {
  531. width: auto;
  532. display:inline-block;
  533. margin-left: 90px;
  534. min-height: 85px;
  535. }
  536.  
  537. .audiowrapper {
  538. position: relative;
  539. display:inline-block;
  540. }
  541.  
  542. #permalink {
  543. text-align: right;
  544. border-top: 1px solid {color:Border};
  545. border-bottom:1px solid {color:Border};
  546. background-color:{color:entries};
  547. position: relative;
  548. font-size:9px;
  549. letter-spacing:0px;
  550. text-transform:lowercase;
  551. margin-top: 3px;
  552. margin-left:-3px;
  553. margin-right:-3px;
  554. padding-right:10px;
  555. padding-bottom:5px;
  556. padding-top: 5px;
  557. }
  558.  
  559. .popup_block{
  560. display:none;
  561. background-color:{color:entries};
  562. color:{color:text};
  563. padding:20px;
  564. border:1px solid {color:border};
  565. position:fixed;
  566. left:50%;
  567. top:50%;
  568. z-index: 99999;
  569. }
  570.  
  571. *html #fade {position: absolute;}
  572.  
  573. *html .popup_block {position: absolute;}
  574.  
  575. #fade {
  576. display:none;
  577. position:fixed;
  578. left:0px;
  579. top:0px;
  580. width:100%;
  581. height:100%;
  582. background:#000;
  583. z-index:9999;
  584. opacity:0.25;
  585. }
  586.  
  587. adminname {
  588. font-size:20px;
  589. font-weight:Bold;
  590. text-transform:uppercase;
  591. color:{color:title};
  592. text-align:center;
  593. display:block;
  594. padding:5px;
  595. }
  596.  
  597. admindesc {
  598. padding:5px;
  599. border-left:2px solid {color:blockquote};
  600. text-align:justify;
  601. display:block;
  602. }
  603.  
  604. #credit {
  605. font-size:10px;
  606. float:center;
  607. position:fixed;
  608. font-family:cambria;
  609. font-weight:bold;
  610. bottom:15px;
  611. right:15px;
  612. padding:10px;
  613. text-transform:uppercase;
  614. border:1px solid {color:border};
  615. background-color:{color:entries};
  616. color:{color:title};
  617. }
  618.  
  619. #credit a {
  620. color:{color:title};
  621. }
  622.  
  623. cred {
  624. padding-left: 1.2em;
  625. list-style: none;
  626. }
  627.  
  628. cred:before {
  629. color: {color:title};
  630. content: "\f105";
  631. font-family: FontAwesome;
  632. font-size:10px;
  633. display: inline-block;
  634. margin-left: -1.2em;
  635. width: 1.2em;
  636. }
  637.  
  638. icon1 {
  639. padding-left: 1.2em;
  640. list-style: none;
  641. }
  642. icon1:before {
  643. content: "\f021";
  644. font-family: FontAwesome;
  645. display: inline-block;
  646. margin-left: -1.2em;
  647. width: 1.2em;
  648. }
  649.  
  650. icon2 {
  651. padding-left: 1.2em;
  652. list-style: none;
  653. }
  654. icon2:before {
  655. content: "\f0e5";
  656. font-family: FontAwesome;
  657. display: inline-block;
  658. margin-left: -1.2em;
  659. width: 1.2em;
  660. }
  661.  
  662. icon3 {
  663. padding-left: 1.2em;
  664. list-style: none;
  665. }
  666. icon3:before {
  667. content: "\f044";
  668. font-family: FontAwesome;
  669. display: inline-block;
  670. margin-left: -1.2em;
  671. width: 1.2em;
  672. }
  673.  
  674. #clickthing {
  675. position:fixed;
  676. margin-left:325px;
  677. margin-top:615px;
  678. width:200px;
  679. text-transform:uppercase;
  680. font-family:arial;
  681. color:{color:text};
  682. font-size:8px;
  683. font-weight:bold;
  684. }
  685.  
  686.  
  687. </style>
  688.  
  689. </head>
  690.  
  691. <body>
  692.  
  693. <div id="backbar">
  694.  
  695. <div id="titlebar">
  696. <div id="maintitle">{text:main title}</div>
  697. <div id="subtitle">{text:subtitle}</div>
  698. </div>
  699.  
  700. <div id="sideph1"><img src="{image:Sidebar1}"></div>
  701.  
  702. <div id="icon1"> <a href="#?w=300" rel="box1" class="poplight"><img src="{image:Admin1icon}"></a></div>
  703. <div id="icon2"><a href="#?w=300" rel="box2" class="poplight"><img src="{image:Admin2icon}"></a></div>
  704.  
  705. <div id="navbar1">
  706. <div id="navigation1">
  707. <a href="/" title="index"><icon1></icon1></a><br>
  708. <a href="/ask" title="message"><icon2></icon2></a><br>
  709. <a href="/submit" title="submit"><icon3></icon3></a><br>
  710. </div>
  711. </div>
  712.  
  713. <div id="navbar2">
  714. <div id="navigation2">
  715. <a href="{text:link one URL}">{text:link one text}</a>
  716. <a href="{text:link two URL}">{text:link two text}</a><br>
  717. <a href="{text:link three URL}">{text:link three text}</a>
  718. <a href="{text:link four URL}">{text:link four text}</a><br>
  719. <a href="{text:link five URL}">{text:link five text}</a>
  720. <a href="{text:link six URL}">{text:link six text}</a><br>
  721. </div>
  722. </div>
  723.  
  724. <div id="quotebar">{text:quote}</div>
  725.  
  726. <div id="sidebar">
  727.  
  728. <div style="overflow:auto; width: 178px; padding-right:5px; height: 255px; text-align: justify;">
  729. {description}
  730. </div>
  731.  
  732.  
  733. <div id="pagination">
  734. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&laquo;</a>{/block:PreviousPage} {CurrentPage} out of {TotalPages} {block:NextPage}&nbsp;<a href="{NextPage}">&raquo;</a>{/block:NextPage}{/block:Pagination}
  735. </div></div>
  736.  
  737.  
  738. </div>
  739.  
  740. <div id="clickthing">
  741. click the icons for more!
  742. </div>
  743.  
  744. <div id="entries">
  745. {block:Posts}
  746. <div id="entrybg">
  747. <div id="entry">
  748.  
  749.  
  750. {block:Text}
  751. {block:Title}<div id="posttitles">{Title}</div>{/block:Title}
  752. {Body}
  753. {/block:Text}
  754.  
  755. {block:Photo}
  756. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  757. {block:Caption}{Caption}{/block:Caption}
  758. {/block:Photo}
  759.  
  760. {block:Photoset}
  761. {Photoset-500}
  762. {block:Caption}{Caption}{/block:Caption}
  763. {/block:Photoset}
  764.  
  765. {block:Quote}
  766. <div id="posttitles">{Quote}</div>
  767. {block:Source}<br>—{Source}{/block:Source}
  768. {/block:Quote}
  769.  
  770. {block:Link}
  771. <div id="posttitles"><a href="{URL}" {Target}>{Name}</a></div>
  772. {block:Description}{Description}{/block:Description}
  773. {/block:Link}
  774.  
  775. {block:Chat}
  776. {block:Title}<div id="posttitles">{Title}</div>{/block:Title}
  777. {block:Lines}
  778. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  779. {/block:Lines}
  780. {/block:Chat}
  781.  
  782. {block:Audio}{block:AudioPlayer}
  783. <div class="audiowrapper">
  784. {block:AlbumArt}
  785. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  786. {/block:AlbumArt}
  787.  
  788. <div class="playerbuttonbg">
  789. <div class="newplayerbutton">
  790. <div class="playerbuttonhug">
  791.  
  792. {AudioPlayerWhite}
  793.  
  794. </div>
  795. </div>
  796. </div>
  797.  
  798. <div class="trackdetails">
  799.  
  800. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  801. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  802. {block:Album}Album: {Album}{/block:Album}<br/>
  803. {PlayCountWithLabel}
  804.  
  805. </div>
  806. </div>
  807. {/block:AudioPlayer}
  808.  
  809. {block:Caption}{Caption}{/block:Caption}{/block:Audio}
  810.  
  811. {block:Video}
  812. {Video-500}
  813. {block:Caption}{Caption}{/block:Caption}
  814. {/block:Video}
  815.  
  816. {block:Answer}
  817. <div id="ask">{Asker} sent:</div><div id="question">{Question}</div>
  818. <br>{Answer}
  819. {/block:Answer}
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826. </div> <!-- /div entry ---><div id="permalink">
  827. {block:Date}{TimeAgo}{/block:Date} & <a href="{Permalink}">
  828. {NoteCountWithLabel}</a> & <a href="{ReblogURL}" target="_blank">Reblog</a>
  829.  
  830. {block:RebloggedFrom} & <a href="{ReblogParentURL}"title="{ReblogParentTitle}">via</a> / <a href="{ReblogRootURL}"title="{ReblogRoottitle}">source</a>{/block:RebloggedFrom}
  831.  
  832. <br>{block:HasTags} {block:Tags} #<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}
  833. </div> </div>
  834.  
  835. {/block:Posts}{block:PostNotes}{PostNotes}{/block:PostNotes}
  836.  
  837. <div id="credit"> <a href="http://agleerph.tumblr.com/" title="theme 34 by agleerph"><cred>agrph</cred></a></div>
  838.  
  839. </body>
  840.  
  841. <div id="box1" class="popup_block">
  842.  
  843. <adminname>{text:admin1 name}</adminname>
  844. <p>
  845.  
  846. <img src="{image:Admin1inner}">
  847.  
  848. <p>
  849. <admindesc>{text:admin1 desc}</admindesc>
  850.  
  851. </div>
  852.  
  853. <div id="box2" class="popup_block">
  854.  
  855. <adminname>{text:admin2 name}</adminname>
  856. <p>
  857.  
  858. <img src="{image:Admin2inner}">
  859.  
  860. <p>
  861. <admindesc>{text:admin2 desc}</admindesc>
  862.  
  863. </div>
  864.  
  865. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement