Advertisement
armyofghosts

Theme 8: Revamp by armyofghosts

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