Advertisement
armyofghosts

Theme 18 by armyofghosts

Sep 12th, 2014
1,595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.82 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <head><title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  8.  
  9. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  10.  
  11. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  12.  
  13.  
  14.  
  15. <!--- THEME #18 BY ARMYOFGHOSTS :) --->
  16.  
  17.  
  18.  
  19. <!---ON SCROLL--->
  20.  
  21. <script>
  22. $(window).scroll(function() {
  23. var scrollTopVal = $(this).scrollTop();
  24. if ( scrollTopVal > 300 ) {
  25. $('#sidebar').css({'opacity':'1'});
  26.  
  27. } else {
  28. $('#sidebar').css({'opacity':'0'});
  29. }
  30. });
  31. </script>
  32.  
  33.  
  34.  
  35.  
  36.  
  37. <!---POP UP ASK--->
  38.  
  39. <script>
  40. $(document).ready(function() {
  41. //
  42. $('a.poplight[href^=#]').click(function() {
  43. var popID = $(this).attr('rel'); //Get Popup Name
  44. var popURL = $(this).attr('href'); //Get Popup href to define size
  45. var query= popURL.split('?');
  46. var dim= query[1].split('&');
  47. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  48. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  49. var popMargTop = ($('#' + popID).height() + 80) / 2;
  50. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  51. //Apply Margin to Popup
  52. $('#' + popID).css({
  53. 'margin-top' : -popMargTop,
  54. 'margin-left' : -popMargLeft
  55. });
  56. $('body').append('<div id="fade"></div>');
  57. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  58. return false;
  59. });
  60. $('a.close, #fade').live('click', function() {
  61. $('#fade , .popup_block').fadeOut(function() {
  62. });
  63. return false;
  64. });
  65. });
  66. </script>
  67.  
  68.  
  69.  
  70.  
  71. <!-- jquery -->
  72.  
  73. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  74.  
  75. <script>
  76.  
  77. (function($){
  78.  
  79. $(document).ready(function(){
  80.  
  81. $("a[title]").style_my_tooltips({
  82.  
  83. tip_follows_cursor:true,
  84.  
  85. tip_delay_time:30,
  86.  
  87. tip_fade_speed:300,
  88.  
  89. attribute:"title"
  90.  
  91. });
  92.  
  93. });
  94.  
  95. })(jQuery);
  96.  
  97. </script>
  98.  
  99.  
  100.  
  101.  
  102.  
  103. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  104.  
  105. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  106.  
  107.  
  108.  
  109. <meta name="color:Background" content="#fff"/>
  110. <meta name="color:Links" content="#ccc"/>
  111. <meta name="color:SidebarLinks" content="#000"/>
  112. <meta name="color:Hover" content="#f2f2f2"/>
  113. <meta name="color:SidebarLinksHover" content="#fff"/>
  114. <meta name="color:Text" content="#a8a8a8"/>
  115. <meta name="color:Bold" content="#a8a8a8"/>
  116. <meta name="color:Italics" content="#a8a8a8"/>
  117. <meta name="color:Border" content="#f7f7f7"/>
  118. <meta name="color:Tooltip" content="#fff"/>
  119. <meta name="color:TooltipBg" content="#000"/>
  120. <meta name="color:Scrollbar" content="#000"/>
  121. <meta name="color:ScrollbarBg" content="#fff"/>
  122.  
  123. <meta name="text:Title" content="" />
  124. <meta name="text:Ask Title" content="" />
  125. <meta name="text:URL" content="" />
  126. <meta name="text:Link 1 Text" content="" />
  127. <meta name="text:Link 1 URL" content="" />
  128. <meta name="text:Link 2 Text" content="" />
  129. <meta name="text:Link 2 URL" content="" />
  130. <meta name="text:Link 3 Text" content="" />
  131. <meta name="text:Link 3 URL" content="" />
  132.  
  133. <meta name="if:Show Updates" content="1" />
  134. <meta name="if:Show Captions" content="1" />
  135. <meta name="if:Sidebar" content="1" />
  136. <meta name="if:Pop Up Ask" content="1" />
  137.  
  138. <meta name="image:Background" content=""/>
  139.  
  140.  
  141.  
  142. <style type="text/css">
  143.  
  144.  
  145.  
  146. /*---TOOLTIP---*/
  147.  
  148. #s-m-t-tooltip {
  149. max-width:300px;
  150. padding:2px;
  151. margin:10px 0px 0px 10px;
  152. padding:3px 5px;
  153. background-color:{color:TooltipBg};
  154. text-transform:none;
  155. font-size:9px;
  156. font-family:helvetica;
  157. letter-spacing:1px;
  158. color:{color:Tooltip};
  159. z-index:999;
  160. }
  161.  
  162.  
  163.  
  164. /*---SCROLLBAR---*/
  165.  
  166. ::-webkit-scrollbar-thumb {
  167. height:auto;
  168. background-color:{color:Scrollbar};
  169. }
  170.  
  171. ::-webkit-scrollbar {
  172. height:9px;
  173. width:4px;
  174. background-color:{color:ScrollbarBg};
  175. }
  176.  
  177.  
  178.  
  179. /*---BODY---*/
  180.  
  181. body {
  182. background:url('{image:background}') 50%50% repeat {color:background};
  183. background-attachment:fixed;
  184. color:{color:text};
  185. font-family:helvetica;
  186. font-size:11px;
  187. line-height:120%;
  188. text-align:justify;
  189. }
  190.  
  191. a {
  192. text-decoration:none;
  193. color:{color:Links};
  194. -moz-transition-duration:0.3s;
  195. -webkit-transition-duration:0.3s;
  196. -o-transition-duration:0.3s;
  197. }
  198.  
  199. a:hover {
  200. color:{color:Hover};
  201. -moz-transition-duration:0.3s;
  202. -webkit-transition-duration:0.3s;
  203. -o-transition-duration:0.3s;
  204. }
  205.  
  206. blockquote {
  207. border-left:2px solid {color:border};
  208. padding-left:4px;
  209. margin-left:30px;
  210. }
  211.  
  212. b, strong {
  213. color:{color:bold};
  214. }
  215.  
  216. i, em {
  217. color:{color:italics};
  218. }
  219.  
  220. li {
  221. margin-left:-20px;
  222. }
  223.  
  224. small {
  225. font-size:9px;
  226. }
  227.  
  228. h1 {
  229. text-align:center;
  230. line-height:100%;
  231. font-family:helvetica;
  232. text-transform:uppercase;
  233. font-size:15px;
  234. letter-spacing:2px;
  235. color:#555;
  236. }
  237.  
  238. h1 a {
  239. color:{color:text};
  240. }
  241.  
  242.  
  243.  
  244. /*---ENTRIES---*/
  245.  
  246. #cont {
  247. top:0px;
  248. width:600px;
  249. left:50%;
  250. margin-left:-200px;
  251. position:absolute;
  252. }
  253.  
  254. #entries {
  255. width:400px;
  256. margin-left:-45px;
  257. padding:20px;
  258. }
  259.  
  260. #posts {
  261. display:block;
  262. width:400px;
  263. padding:25px;
  264. padding-bottom:20px;
  265. margin-bottom:100px;
  266. margin-top:25px;
  267. }
  268.  
  269. #posts:first-of-type {
  270. margin-top:50px;
  271. }
  272.  
  273. #posts:last-of-type {
  274. margin-bottom:30px;
  275. }
  276.  
  277.  
  278.  
  279. /*---HEADER---*/
  280.  
  281. #header {
  282. width:400px;
  283. margin-left:-20px;
  284. padding:40px 20px 30px 20px;
  285. text-align:center;
  286. }
  287.  
  288.  
  289.  
  290. /*---TITLE---*/
  291.  
  292. #title {
  293. font-weight:bold;
  294. text-transform:lowercase;
  295. text-align:left;
  296. letter-spacing:4px;
  297. font-size:18px;
  298. padding:15px 15px 15px 0px;
  299. border-bottom:1px solid #e8e8e8;
  300. }
  301.  
  302. #title a {
  303. color:#000;
  304. }
  305.  
  306. #title a:hover {
  307. letter-spacing:5px;
  308. }
  309.  
  310. #links {
  311. margin-top:-7px;
  312. font-size:9px;
  313. text-transform:lowercase;
  314. font-weight:normal;
  315. letter-spacing:2px;
  316. float:right;
  317. }
  318.  
  319. #links a {
  320. background:#fff;
  321. color:#444;
  322. padding:5px;
  323. }
  324.  
  325. #links a:hover {
  326. color:{color:Hover};
  327. }
  328.  
  329.  
  330.  
  331. /*---SIDEBAR---*/
  332.  
  333. #sidebar {
  334. opacity:0;
  335. position:fixed;
  336. height:200px;
  337. top:20%;
  338. margin-bottom:-100px;
  339. width:200px;
  340. left:25%;
  341. margin-left:-100px;
  342. -moz-transition-duration:0.3s;
  343. -webkit-transition-duration:0.3s;
  344. -o-transition-duration:0.3s;
  345. }
  346.  
  347. #sidebar a {
  348. display:block;
  349. width:150px;
  350. padding:10px;
  351. font-weight:normal;
  352. text-transform:lowercase;
  353. font-size:9px;
  354. letter-spacing:2px;
  355. color:{color:SidebarLinks};
  356. }
  357.  
  358. #sidebar a:hover {
  359. background:{color:SidebarLinks};
  360. color:{color:SidebarLinksHover};
  361. }
  362.  
  363. #title2 {
  364. margin-bottom:10px;
  365. }
  366.  
  367. #title2 a {
  368. width:160px;
  369. margin-bottom:10px;
  370. padding:10px 10px 10px 0px;
  371. text-transform:lowercase;
  372. font-weight:bold;
  373. letter-spacing:4px;
  374. font-size:18px;
  375. color:#000;
  376. }
  377.  
  378. #title2 a:hover {
  379. background:#fff;
  380. color:#000;
  381. letter-spacing:5px;
  382. }
  383.  
  384.  
  385.  
  386. /*---PAGINATION---*/
  387.  
  388. #pagination {
  389. width:450px;
  390. margin-left:-24px;
  391. bottom:0px;
  392. background:{color:background};
  393. padding-top:15px;
  394. height:25px;
  395. text-align:center;
  396. text-transform:uppercase;
  397. font-weight:normal;
  398. font-size:10px;
  399. letter-spacing:1px;
  400. position:fixed;
  401. }
  402.  
  403.  
  404.  
  405. /*---TAGS/INFO---*/
  406.  
  407. #info {
  408. text-align:center;
  409. opacity:0;
  410. margin-left:100px;
  411. {block:PermalinkPage}
  412. opacity:1;
  413. margin-left:0px;
  414. {/block:PermalinkPage}
  415. font-weight:normal;
  416. width:390px;
  417. margin-top:10px;
  418. padding:10px 10px 10px 0px;
  419. font-size:9px;
  420. letter-spacing:1px;
  421. text-transform:uppercase;
  422. line-height:100%;
  423. -moz-transition-duration:0.9s;
  424. -webkit-transition-duration:0.9s;
  425. -o-transition-duration:0.9s;
  426. }
  427.  
  428. #info a {
  429. color:#444;
  430. }
  431.  
  432. #info a:hover {
  433. color:{color:Hover};
  434. }
  435.  
  436. #posts:hover #info {
  437. margin-left:0px;
  438. opacity:1;
  439. -moz-transition-duration:0.9s;
  440. -webkit-transition-duration:0.9s;
  441. -o-transition-duration:0.9s;
  442. }
  443.  
  444. #tags {
  445. text-align:center;
  446. opacity:0;
  447. margin-left:-100px;
  448. {block:PermalinkPage}
  449. opacity:1;
  450. margin-left:0px;
  451. {/block:PermalinkPage}
  452. font-family:helvetica;
  453. letter-spacing:1px;
  454. padding-bottom:5px;
  455. font-size:9px;
  456. -moz-transition-duration:0.9s;
  457. -webkit-transition-duration:0.9s;
  458. -o-transition-duration:0.9s;
  459. }
  460.  
  461. #tags a {
  462. color:#444;
  463. }
  464.  
  465. #tags a:hover {
  466. color:{color:Hover};
  467. }
  468.  
  469. #posts:hover #tags {
  470. margin-left:2px;
  471. opacity:1;
  472. -moz-transition-duration:0.9s;
  473. -webkit-transition-duration:0.9s;
  474. -o-transition-duration:0.9s;
  475. }
  476.  
  477.  
  478.  
  479. /*---NOTES---*/
  480.  
  481. .note {
  482. padding-left:25px;
  483. padding-bottom:2px;
  484. text-align:left;
  485. font-size:9px;
  486. width:360px;
  487. }
  488.  
  489. .note li {
  490. border-bottom:1px solid #f7f7f7;
  491. padding:2%;
  492. }
  493.  
  494. .note li img.avatar{
  495. width:0px;
  496. height:0px;
  497. }
  498.  
  499. #rebloggedfrom {
  500. font-family:helvetica;
  501. text-align:center;
  502. margin-top:-5px;
  503. font-size:10px;
  504. }
  505.  
  506.  
  507.  
  508. /*---POSTS---*/
  509.  
  510. #asker {
  511. margin-bottom:5px;
  512. margin-left:-5px;
  513. padding:8px;
  514. margin-bottom:5px;
  515. text-align:left;
  516. color:#888;
  517. background:#f6f6f6;
  518. border:1px solid #f4f4f4;
  519. }
  520.  
  521. #asker a {
  522. font-size:11px;
  523. font-weight:bold;
  524. color:#000;
  525. letter-spacing:0px;
  526. text-transform:lowercase;
  527. }
  528.  
  529. .quote {
  530. font-size:15px;
  531. letter-spacing:1px;
  532. text-align:right;
  533. font-family:times;
  534. font-style:italic;
  535. padding:5px;
  536. }
  537.  
  538. #source {
  539. padding-top:5px;
  540. text-align:right;
  541. }
  542.  
  543. #chat {
  544. padding:5px;
  545. }
  546.  
  547. #chat:nth-of-type(odd) {
  548. background:#f7f7f7;
  549. }
  550.  
  551. #audio {
  552. height:25px;
  553. width:380px;
  554. padding:10px;
  555. background:#f7f7f7;
  556. }
  557.  
  558. #aplayer {
  559. overflow:hidden;
  560. margin:3px;
  561. margin-top:-1px;
  562. width:27px;
  563. height:30px;
  564. }
  565.  
  566. #ainfo {
  567. margin-top:-32px;
  568. margin-left:45px;
  569. background:#fff;
  570. padding:7px;
  571. }
  572.  
  573.  
  574.  
  575. /* --- POP UP ASK ---*/
  576.  
  577. #fade {
  578. display: none;
  579. background:url('{image:background}') 50%50% repeat {color:background};
  580. background-attachment:fixed;
  581. position: fixed; left: 0; top: 0;
  582. width: 100%; height: 100%;
  583. opacity:1;
  584. z-index: 9999;
  585. }
  586.  
  587. .popup_block {
  588. display: none;
  589. padding: 10px;
  590. float: left;
  591. font-size: 10;
  592. position: fixed;
  593. top: 45%;
  594. left: 52.3%;
  595. z-index: 99999;
  596. }
  597.  
  598. .heading {
  599. text-align:left;
  600. font-family:helvetica;
  601. font-size:14px;
  602. margin-bottom:10px;
  603. color:#000;
  604. letter-spacing:2px;
  605. }
  606.  
  607.  
  608.  
  609. /*---CREDIT---*/
  610.  
  611. #cred {
  612. position:fixed;
  613. bottom:10px;
  614. right:10px;
  615. font-size:12px;
  616. font-family:arial;
  617. font-weight:bold;
  618. letter-spacing:-2px;
  619. padding:5px;
  620. }
  621.  
  622. #cred a {
  623. color:#000;
  624. }
  625.  
  626.  
  627.  
  628. /* --- UPDATES ---*/
  629.  
  630. #updates {
  631. font-size:9px;
  632. color:{color:Text};
  633. text-align:left;
  634. height:13px;
  635. width:100px;
  636. padding:4px;
  637. top:15px;
  638. left:20px;
  639. z-index:10;
  640. position:fixed;
  641. overflow:hidden;
  642. -webkit-transition: all 0.5s ease-in-out;
  643. -moz-transition: all 0.5s ease-in-out;
  644. -o-transition: all 0.5s ease-in-out;
  645. }
  646.  
  647. #updates:hover {
  648. height:155px; /*---185px w/ semi-h.---*/
  649. -webkit-transition: all 0.5s ease-in-out;
  650. -moz-transition: all 0.5s ease-in-out;
  651. -o-transition: all 0.5s ease-in-out;
  652. }
  653.  
  654. #updates b {
  655. color:#000;
  656. }
  657.  
  658. #updatestitle {
  659. font-size:13px;
  660. letter-spacing:2px;
  661. text-transform:lowercase;
  662. font-family:arial;
  663. font-weight:bold;
  664. color:#000;
  665. -webkit-transition: all 0.5s ease-out;
  666. -moz-transition: all 0.5s ease-out;
  667. transition: all 0.5s ease-out;
  668. }
  669.  
  670.  
  671.  
  672. /*---END CSS---*/
  673.  
  674. </style></head><body>
  675.  
  676.  
  677.  
  678. {block:IfShowUpdates}
  679.  
  680. <!-- begin updates tab -->
  681.  
  682. <div id="updates">
  683. <div id="updatestitle">updates</div>
  684.  
  685. <div style="padding-top:10px;">
  686.  
  687. Yooo here's your hella cool updates tab!
  688.  
  689. <p>
  690.  
  691. Feel free to make it as short or as long as you'd like ofc
  692.  
  693. <p>
  694.  
  695. Have fun thank u for maybe using this theme
  696.  
  697. </div></div>
  698.  
  699. <!-- end updates tab -->
  700.  
  701. {/block:IfShowUpdates}
  702.  
  703.  
  704.  
  705.  
  706.  
  707. <!---SIDEBAR--->
  708.  
  709. <div id="sidebar">
  710.  
  711. {block:ifSidebar}
  712.  
  713. <div id="title2"><a href="/">{text:title}</a></div>
  714.  
  715. {block:ifPopUpAsk}
  716. <a href="#?w=500" rel="02" class="poplight">ask</a>&nbsp;&nbsp;&nbsp;
  717. {/block:ifPopUpAsk}
  718.  
  719. {block:ifNotPopUpAsk}
  720. <a href="/ask">ask</a>&nbsp;&nbsp;&nbsp;
  721. {/block:ifNotPopUpAsk}
  722.  
  723. <a href="{text:Link 1 URL}">{text:Link 1 Text}</a>&nbsp;&nbsp;&nbsp;
  724.  
  725. <a href="{text:Link 2 URL}">{text:Link 2 Text}</a>&nbsp;&nbsp;&nbsp;
  726.  
  727. <a href="{text:Link 3 URL}">{text:Link 3 Text}</a>
  728. </div>
  729.  
  730. {/block:ifSidebar}
  731.  
  732.  
  733.  
  734.  
  735.  
  736. <div id="cont">
  737. <div id="header">
  738.  
  739. <div id="title"><a href="/">{text:title}</a></div>
  740.  
  741. <div id="links">
  742.  
  743. <a {block:ifPopUpAsk}href="#?w=500" rel="02" class="poplight"{/block:ifPopUpAsk} {block:ifNotPopUpAsk}href="/"{block:ifNotPopUpAsk}>ask</a>
  744.  
  745. <a href="{text:Link 1 URL}">{text:Link 1 Text}</a>
  746.  
  747. <a href="{text:Link 2 URL}">{text:Link 2 Text}</a>
  748.  
  749. <a href="{text:Link 3 URL}">{text:Link 3 Text}</a>
  750.  
  751. </div>
  752. </div>
  753.  
  754.  
  755.  
  756.  
  757. <div id="pagination">
  758. {block:Pagination}<div class="pagination">
  759. {block:PreviousPage}<a href="{PreviousPage}">back</a> {/block:PreviousPage} —
  760. {block:NextPage}<a href="{NextPage}">forth</a> {/block:NextPage}
  761. </div>{/block:Pagination}
  762. </div>
  763.  
  764.  
  765.  
  766.  
  767. <div id="entries">
  768.  
  769. {block:Posts}<div id="posts">
  770.  
  771.  
  772.  
  773. {block:Text}
  774. {block:Title}<h1>{Title}</h1>{/block:Title}
  775. {Body}
  776. {/block:Text}
  777.  
  778.  
  779.  
  780. {block:Photo}
  781. <a href="{Permalink}"><img src="{PhotoURL-400}"></a>
  782. {block:Caption}
  783. {block:ifshowcaptions}
  784. <span class="caption">{Caption}</span>
  785. {/block:ifshowcaptions}
  786. {block:ifnotshowcaptions}
  787. {block:PermalinkPage}<span class="caption">{Caption}</span> {/block:PermalinkPage}
  788. {/block:ifnotshowcaptions}
  789. {/block:Caption}
  790. {/block:Photo}
  791.  
  792.  
  793.  
  794. {block:Photoset}
  795. {Photoset-400}
  796. {block:Caption}
  797. {block:ifshowcaptions}
  798. <span class="caption">{Caption}</span>
  799. {/block:ifshowcaptions}
  800. {block:ifnotshowcaptions}
  801. {block:PermalinkPage}<span class="caption">{Caption}</span> {/block:PermalinkPage}
  802. {/block:ifnotshowcaptions}
  803. {/block:Caption}
  804. {/block:Photoset}
  805.  
  806.  
  807.  
  808. {block:Quote}
  809. <div class="quote">"{Quote}"</div>
  810. {block:Source}
  811. <div id="source">— {Source}</div>
  812. {/block:Source}
  813. {/block:Quote}
  814.  
  815.  
  816.  
  817. {block:Link}
  818. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  819. {block:Description}
  820. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  821. {/block:Description}
  822. {/block:Link}
  823.  
  824.  
  825.  
  826. {block:Chat}
  827. {block:Title}<h1>{Title}</h1>{/block:Title}
  828. {block:Lines}
  829. <div id="chat">
  830. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  831. </div>
  832. {/block:Lines}
  833. {/block:Chat}
  834.  
  835. {block:Audio}
  836. <div id="audio">
  837. <div id="aplayer">
  838. {block:AudioPlayer}
  839. {AudioPlayerWhite}
  840. {/block:AudioPlayer}
  841. </div>
  842. <div id="ainfo">
  843. <b>{block:Artist}{Artist}{/block:Artist}</b> - {block:TrackName}{TrackName}{/block:TrackName}
  844. </div>
  845. </div>
  846. {block:ifshowcaptions}
  847. <span class="caption">{Caption}</span>
  848. {/block:ifshowcaptions}
  849. {block:ifnotshowcaptions}
  850. {block:PermalinkPage}<span class="caption">{Caption}</span> {/block:PermalinkPage}
  851. {/block:ifnotshowcaptions}
  852. {/block:Audio}
  853.  
  854.  
  855.  
  856. {block:Video}
  857. {Video-400}
  858. {block:Caption}
  859. {block:ifshowcaptions}
  860. <span class="caption">{Caption}</span>
  861. {/block:ifshowcaptions}
  862. {block:ifnotshowcaptions}
  863. {block:PermalinkPage}<span class="caption">{Caption}</span> {/block:PermalinkPage}
  864. {/block:ifnotshowcaptions}
  865. {/block:Caption}
  866. {/block:Video}
  867.  
  868.  
  869.  
  870. {block:Answer}
  871. <div id="asker"><a href="{askerURL}">{askername}:</a> {Question}</div>
  872. {Answer}
  873. {/block:Answer}
  874.  
  875.  
  876.  
  877.  
  878.  
  879. <!---POST INFO--->
  880. <div id="info">
  881.  
  882. {block:PermalinkPage}
  883. <div style="text-align:left; background:#f9f9f9; padding:5px;">
  884. {/block:PermalinkPage}
  885.  
  886. <!---DATE--->
  887. {block:Date}
  888. <b><a href="{Permalink}" title="{TimeAgo}"> {DayOfMonth} {ShortMonth}</a></b>
  889. {/block:Date}
  890.  
  891. <!---NOTE COUNT--->
  892. {block:NoteCount}
  893. &nbsp;&nbsp;&nbsp;<a href="{Permalink}">{NoteCountWithLabel}</a>
  894. {/block:NoteCount}
  895.  
  896. {block:PermalinkPage}
  897. <div style="float:right;">
  898. <!---VIA--->
  899. {block:RebloggedFrom}
  900. <a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> /
  901. {/block:RebloggedFrom}
  902.  
  903. <!---SOURCE--->
  904. {block:ContentSource}
  905. <a href="{SourceURL}" title="{SourceTitle}">src</a> /
  906. {/block:ContentSource}
  907.  
  908. <!---REBLOG--->
  909. <a href="{ReblogURL}">reblog</a></div></div>
  910. {/block:PermalinkPage}
  911.  
  912. </div>
  913.  
  914. <!---END POST INFO--->
  915.  
  916.  
  917.  
  918.  
  919.  
  920. <!---TAGS--->
  921. <div id="tags">
  922. {block:HasTags}
  923. {block:Tags}
  924. <a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;&nbsp;
  925. {/block:Tags}
  926. {/block:HasTags}
  927. </div>
  928. </div>
  929.  
  930. {/block:Posts}
  931.  
  932.  
  933.  
  934.  
  935.  
  936. {block:PermalinkPage}
  937. {block:PostNotes}
  938. <div class="note">{PostNotes}</div>
  939. {/block:PostNotes}
  940. {/block:permalinkpage}
  941.  
  942. </div></div></div>
  943.  
  944.  
  945.  
  946. <div id="cred">
  947.  
  948. <a href="http://armyofghosts.tumblr.com/" title="armyofghosts">AG</a>
  949.  
  950. </div>
  951.  
  952.  
  953.  
  954. </body>
  955.  
  956.  
  957.  
  958. <div id="02" class="popup_block">
  959.  
  960. <Center>
  961. <div class="heading">{text:Ask Title} <a class="close" href="#" style="float: right; font-size: 13px; color: #000;" title="close">✖</a></div>
  962. <iframe frameborder="0" scrolling="no" width="100%" height="190" src="http://www.tumblr.com/ask_form/{text:URL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  963. </center></div>
  964.  
  965.  
  966.  
  967. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement