Advertisement
hypnohs

paper tiger

May 3rd, 2015
5,420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.81 KB | None | 0 0
  1. <!---
  2.  
  3.  
  4. theme: paper tiger
  5. - panthoen themes -
  6. base code by sorrism @ tumblr
  7.  
  8. ---->
  9.  
  10. <!DOCTYPE html>
  11. <head>
  12.  
  13. <title>{Title}</title>
  14.  
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="Description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <meta name="color:Background" content="#ffffff"/>
  20. <meta name="color:Text" content="#aaaaaa"/>
  21. <meta name="color:Link" content="#000000"/>
  22. <meta name="color:Link Hover" content=""/>
  23. <meta name="color:Title" content="#111111"/>
  24. <meta name="color:Second Title" content="#000000"/>
  25. <meta name="color:Header" content="#f9f9f9"/>
  26. <meta name="color:Header Links" content="#000000"/>
  27. <meta name="color:Header Links Hover" content="#eeeeee"/>
  28. <meta name="color:Borders" content="#f9f9f9"/>
  29. <meta name="color:Scrollbar" content="#f9f9f9"/>
  30.  
  31. <meta name="image:Sidebar Image" content=""/>
  32.  
  33. <meta name="if:Infinite Scroll" content="0">
  34. <meta name="if:Show Sidebar Image" content="0"/>
  35. <meta name="if:Show Captions" content="0"/>
  36. <meta name="if:Show Second Title" content="1"/>
  37.  
  38. <meta name="text:Second Title" content=""/>
  39. <meta name="text:Link 1 URL" content="" />
  40. <meta name="text:Link 1" content="" />
  41. <meta name="text:Link 2 URL" content="" />
  42. <meta name="text:Link 2" content="" />
  43. <meta name="text:Navigation Title" content="" />
  44. <meta name="text:Link 4 URL" content="" />
  45. <meta name="text:Link 4" content="" />
  46.  
  47. <meta name="select:Font" content="'Roboto'" title="Roboto"/>
  48. <meta name="select:Font" content="trebuchet ms" title="Trebuchet Ms"/>
  49. <meta name="select:Font" content="'Open Sans'" title="Open Sans"/>
  50. <meta name="select:Font" content="consolas" title="Consolas"/>
  51. <meta name="select:Font" content="helvetica" title="Helvetica"/>
  52.  
  53. <meta name="select:Post Width" content="275" title="275px"/>
  54. <meta name="select:Post Width" content="300" title="300px"/>
  55. <meta name="select:Post Width" content="325" title="325px"/>
  56. <meta name="select:Post Width" content="350" title="350px"/>
  57. <meta name="select:Post Width" content="400" title="400px"/>
  58. <meta name="select:Post Width" content="500" title="500px"/>
  59.  
  60. <link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'>
  61. <link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
  62. <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
  63. <link href='http://fonts.googleapis.com/css?family=Roboto:300,700,400' rel='stylesheet' type='text/css'>
  64.  
  65. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  66.  
  67. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  68.  
  69. <script>
  70. $(document).ready(function() {
  71. //
  72. $('a.poplight[href^=#]').click(function() {
  73. var popID = $(this).attr('rel'); //Get Popup Name
  74. var popURL = $(this).attr('href'); //Get Popup href to define size
  75. var query= popURL.split('?');
  76. var dim= query[1].split('&');
  77. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  78. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  79. var popMargTop = ($('#' + popID).height() + 80) / 2;
  80. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  81. //Apply Margin to Popup
  82. $('#' + popID).css({
  83. 'margin-top' : -popMargTop,
  84. 'margin-left' : -popMargLeft
  85. });
  86. $('body').append('<div id="fade"></div>');
  87. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  88. return false;
  89. });
  90. $('a.close, #fade').live('click', function() {
  91. $('#fade , .popup').fadeOut(function() {
  92. $('#fade, a.close').remove(); //fade them both out
  93. });
  94. return false;
  95. });
  96. });
  97. </script>
  98.  
  99. <script>
  100.  
  101. (function($){
  102.  
  103. $(document).ready(function(){
  104.  
  105. $("a[title]").style_my_tooltips({
  106.  
  107. tip_follows_cursor:true,
  108.  
  109. tip_delay_time:30,
  110.  
  111. tip_fade_speed:300,
  112.  
  113. attribute:"title"
  114.  
  115. });
  116.  
  117. });
  118.  
  119. })(jQuery);
  120.  
  121. </script>
  122.  
  123.  
  124. <style type="text/css">
  125.  
  126. ::-webkit-scrollbar-thumb:vertical {
  127. background-color:{color:Scrollbar};
  128. height:100px;
  129. border-radius: 15px;
  130. }
  131.  
  132. ::-webkit-scrollbar-thumb:horizontal {
  133. background-color:{color:Scrollbar};
  134. height:100px !important;
  135. }
  136.  
  137. ::-webkit-scrollbar {
  138. height:10px;
  139. width:3px;
  140. background-color:#fff;
  141. }
  142.  
  143. #s-m-t-tooltip{
  144. position:absolute;
  145. margin-top: 15px;
  146. z-index:9999;
  147. background:{color:background};
  148. text-transform:uppercase;
  149. letter-spacing:1px;
  150. padding:4px 6px 4px 6px;
  151. border:1px solid #f9f9f9;
  152. }
  153.  
  154. #tumblr_controls {
  155. top:130px !important;
  156. right:5px !important;
  157. position:fixed !important;
  158. -webkit-filter: invert(100%);
  159. opacity:.5;
  160. -webkit-transition:opacity 0.7s linear;
  161. -webkit-transition:all 0.3s ease-out;
  162. -moz-transition:all 0.3s ease-out;
  163. transition:all 0.3s ease-out;
  164. }
  165.  
  166. #tumblr_controls:hover {
  167. opacity:1;
  168. -webkit-transition:opacity 0.7s linear;
  169. -webkit-transition:all 0.5s ease-out;
  170. -moz-transition:all 0.5s ease-out;
  171. transition:all 0.5s ease-out;
  172. }
  173.  
  174. /* BASICS */
  175.  
  176. blockquote {
  177. padding:5px 0 5px 20px;
  178. border-left:1px solid {color:text};
  179. margin-left:20px;
  180. }
  181.  
  182. blockquote img {
  183. max-width: 100%;
  184. max-height: 100%;
  185. }
  186.  
  187. body {
  188. background:{color:background};
  189. color:{color:text};
  190. font-family:{select:Font};
  191. font-size:9px;
  192. text-align:justify;
  193. margin:0;
  194. line-height:16px;
  195. }
  196.  
  197. a {
  198. font-weight:bold;
  199. color:{color:link};
  200. text-decoration:none;
  201. -webkit-transition:all 0.3s;
  202. -moz-transition:all 0.3s;
  203. transition:all 0.3s;
  204. }
  205.  
  206. a:hover {
  207. cursor:help;
  208. text-decoration:none;
  209. color:{color:Link Hover};
  210. }
  211.  
  212. img {
  213. opacity:1;
  214. border:none;
  215. text-decoration:none
  216. }
  217.  
  218. small {
  219. font-size:9px;
  220. }
  221.  
  222. big {
  223. font-size:12px;
  224. }
  225.  
  226. #title {
  227. font-size:12px;
  228. line-height:18px;
  229. font-weight:bold;
  230. margin-bottom:10px;
  231. text-transform:uppercase;
  232. text-align:left;
  233. }
  234.  
  235. /* HEADER */
  236.  
  237. .steve-header {
  238. position: fixed;
  239. top:0;
  240. left:0;
  241. width:100%;
  242. background:{color:Header};
  243. opacity:1;
  244. z-index:10000;
  245. height:110px;
  246. overflow:hidden;
  247. -webkit-transition: height 0.3s;
  248. -moz-transition: height 0.3s;
  249. transition: height 0.3s;
  250. }
  251.  
  252. .steve-header .steve-inner {
  253. width:90%;
  254. max-width:1100px;
  255. margin:0 auto;
  256. padding:0 30px;
  257. }
  258.  
  259. .steve-header h1,
  260. .steve-header nav {
  261. display:inline-block;
  262. position:relative;
  263. }
  264.  
  265. .steve-header h1,
  266. .steve-header nav a {
  267. line-height:230px;
  268. }
  269.  
  270. .steve-header h1 {
  271. text-transform:uppercase;
  272. color:{color:Title};
  273. letter-spacing:4px;
  274. font-size:22px;
  275. margin-top:-60px;
  276. margin-left:-60px;
  277. float:left;
  278. }
  279.  
  280. .steve-header nav {
  281. float:right;
  282. margin-top:-60px;
  283. font-size:10px;
  284. margin-right:-90px;
  285. font-weight:bold;
  286. text-transform:uppercase;
  287. letter-spacing:1.5px;
  288. }
  289.  
  290. .steve-header nav a {
  291. color:{color:Header Links};
  292. font-weight:300;
  293. margin:0 0 0 20px;
  294. }
  295.  
  296. .steve-header nav a:hover {
  297. color:{color:Header Links Hover};
  298. padding:0px;
  299. border:none;
  300. }
  301.  
  302. .steve-header h1,
  303. .steve-header nav a {
  304. -webkit-transition:all 0.3s;
  305. -moz-transition:all 0.3s;
  306. transition:all 0.3s;
  307. }
  308.  
  309. .steve-header.steve-header-shrink {
  310. height:90px;
  311. }
  312.  
  313. .steve-header.steve-header-shrink h1,
  314. .steve-header.steve-header-shrink nav a {
  315. line-height:90px;
  316. }
  317.  
  318. .steve-header.steve-header-shrink h1 {
  319. font-size:14px;
  320. margin:0;
  321. }
  322.  
  323. .steve-header.steve-header-shrink nav {
  324. margin:0;
  325. }
  326.  
  327. @media screen and (max-width: 55em) {
  328.  
  329. .steve-header .steve-inner {
  330. width:100%;
  331. }
  332.  
  333. .steve-header h1,
  334. .steve-header nav {
  335. display:block;
  336. margin:0 auto;
  337. text-align:center;
  338. float:none;
  339. }
  340.  
  341. .steve-header h1,
  342. .steve-header nav a {
  343. line-height:115px;
  344. }
  345.  
  346. .steve-header nav a {
  347. margin:0 10px;
  348. }
  349.  
  350. .steve-header.steve-header-shrink h1,
  351. .steve-header.steve-header-shrink nav a {
  352. line-height:45px;
  353. }
  354.  
  355. .steve-header.steve-header-shrink h1 {
  356. font-size:32px;
  357. }
  358.  
  359. .steve-header.steve-header-shrink nav a {
  360. font-size:16px;
  361. }
  362. }
  363.  
  364. @media screen and (max-width: 32.25em) {
  365. .steve-header nav a {
  366. font-size:16px;
  367. }
  368. }
  369.  
  370. @media screen and (max-width: 24em) {
  371. .steve-header nav a,
  372. .steve-header.steve-header-shrink nav a {
  373. line-height:1;
  374. }
  375. }
  376.  
  377. /* SIDEBAR */
  378.  
  379. #sbar {
  380. text-align:left;
  381. position:fixed;
  382. margin-left:-290px;
  383. margin-top:170px;
  384. width:140px;
  385. {block:ifShowSecondTitle}
  386. padding:15px 0px 0px 35px;
  387. {/block:ifShowSecondTitle}
  388. {block:ifNotShowSecondTitle}
  389. padding:2px 0px 0px 35px;
  390. {/block:ifNotShowSecondTitle}
  391. border-left:2px solid {color:Borders};
  392. }
  393.  
  394. #sbarim {
  395. margin-bottom:20px
  396. }
  397.  
  398. #sbarim img {
  399. width:90px
  400. }
  401.  
  402. #subt {
  403. font-size:16px;
  404. text-transform:uppercase;
  405. font-weight:700;
  406. color:{color:Second Title};
  407. }
  408.  
  409. #desc {
  410. margin:15px 0;
  411. }
  412.  
  413. /* pag */
  414.  
  415. #pag {
  416. margin-top:50px;
  417. margin-bottom:80px;
  418. text-transform:lowercase;
  419. font-weight:bold;
  420. }
  421.  
  422. #pag a {
  423. padding:0 15px;
  424. }
  425.  
  426. #pag a:hover {
  427. border:none;
  428. }
  429.  
  430. #next {
  431. float:right;
  432. margin-bottom:50px;
  433. }
  434.  
  435. #pre {
  436. float:left;
  437. margin-bottom:50px;
  438. }
  439.  
  440. /* CONTAINER */
  441.  
  442. #con {
  443. left:50%;
  444. margin-left:-210px;
  445. position:absolute;
  446. }
  447.  
  448. /* POSTS */
  449.  
  450. #entries {
  451. margin-top:180px;
  452. margin-left:35px;
  453. width:{select:Post Width}px;
  454. }
  455.  
  456. #posts {
  457. float:left;
  458. border-bottom:2px solid {color:Borders};
  459. padding:0px 20px 60px 20px;
  460. width:{select:Post Width}px;
  461. {block:IndexPage}
  462. margin-bottom:75px;
  463. {/block:IndexPage}
  464. {block:PermalinkPage}
  465. margin-bottom:50px;
  466. {/block:PermalinkPage}
  467.  
  468. }
  469. #posts img {
  470. max-width:{select:Post Width}px;
  471. }
  472.  
  473. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  474. .caption {width:100%;
  475. margin-top:20px;
  476. margin-bottom:5px;
  477. }
  478.  
  479. /* QUOTE POSTS*/
  480.  
  481. #quo {
  482. text-align:left;
  483. font-size:14px;
  484. line-height:18px;
  485. font-weight:bold;
  486. text-transform:uppercase;
  487. }
  488.  
  489. #src {
  490. text-align:right;
  491. margin-top:15px;
  492. margin-right:15px;}
  493.  
  494. /* AUDIO POSTS*/
  495.  
  496. .player {
  497. width:25px;
  498. height:25px;
  499. overflow:hidden;
  500. position:absolute;
  501. background:white;}
  502.  
  503. .ainfo {
  504. text-align:right;
  505. margin-left:50px;
  506. }
  507.  
  508. .trtitle {
  509. font-size:16px;
  510. font-weight:700;
  511. text-transform:uppercase;
  512. margin-bottom:-10px;
  513. }
  514.  
  515. /* ASK POSTS */
  516.  
  517. .q {margin-bottom:10px;
  518. }
  519. .asker {
  520. text-align:right;
  521. font-weight:bold;}
  522.  
  523. .a {
  524. margin-top:10px;
  525. }
  526.  
  527.  
  528. /* CHAT POSTS */
  529.  
  530. .chat ol {
  531. padding:0;
  532. list-style:none;
  533. }
  534. .line {padding:5px 0;}
  535.  
  536. .label {font-weight:bold;
  537. }
  538.  
  539. /* PERMALINK & NOTES */
  540.  
  541. #perma {
  542. margin-top:25px;
  543. font-size:9px;
  544. text-transform:uppercase;
  545. {block:IndexPage}
  546. text-align:right;
  547. {/block:IndexPage}
  548. {block:PermalinkPage}
  549. text-align:left;
  550. {/block:PermalinkPage}
  551. }
  552.  
  553. #perma a {
  554. margin-right:10px;
  555. }
  556.  
  557. #from {
  558. float:right;
  559. }
  560.  
  561. .tags {
  562. margin-top:10px;
  563. word-break:break-all;
  564. font-size:9px;
  565. }
  566.  
  567. .notes {
  568. {block:IndexPage}
  569. display: none!important;
  570. {/block:IndexPage}
  571. margin-left:10px;
  572. max-width:{select:Post Width}px;
  573. text-align:left;
  574.  
  575. }
  576. .notes img {
  577. display:none!important;}
  578. .notes li {
  579. list-style-type:none;
  580. padding:5px 0px;
  581. text-align:left;
  582. margin:0 0 0 -40px;
  583. }
  584.  
  585. #eww img {
  586. width:{select:Post Width}px;
  587. display:block;
  588. }
  589.  
  590. #cr {
  591. position:fixed;
  592. bottom:15px;
  593. right:20px;
  594. font-size:7px;
  595. opacity:.8;
  596. position:fixed;
  597. padding:5px;
  598. letter-spacing:1px;
  599. text-transform:uppercase;
  600. }
  601.  
  602. #cr:hover {
  603. opacity:1;
  604. }
  605.  
  606. .navtitle {
  607. padding:15px 15px 15px 20px;
  608. font-size:10px;
  609. font-family:{select:Font};
  610. font-weight:700;
  611. letter-spacing:3px;
  612. text-transform:uppercase;
  613. background-color:{color:Header};
  614. color:{color:Title};
  615. }
  616.  
  617. .navlinks a {
  618. margin-top:5px;
  619. float:left;
  620. background:#fff;
  621. font-size:9px;
  622. border:20px solid #fff;
  623. width:90px;
  624. height:10px;
  625. line-height:10px;
  626. overflow:hidden;
  627. text-transform:lowercase;
  628. font-style:italic;
  629. font-weight:400;
  630. }
  631.  
  632. .navlinks a:hover {
  633. border:20px solid #fff;
  634. padding:0;
  635. }
  636.  
  637. .popup{
  638. display:none;
  639. background:#fff;
  640. padding:15px;
  641. border:1px solid #fff;
  642. float:left;
  643. position:fixed;
  644. top:50%;left:50%;
  645. z-index: 99999;
  646. }
  647.  
  648. *html #fade {position: absolute;}
  649. *html .popup {position: absolute;}
  650. #fade {
  651. display:none;
  652. position:fixed;
  653. left:0px;
  654. top:0px;
  655. width:100%;
  656. height:100%;
  657. z-index:9999;
  658. background:#fff;
  659. opacity:.95;
  660. }
  661.  
  662. {CustomCSS}
  663.  
  664.  
  665. </style>
  666.  
  667. {block:IfInfiniteScroll}
  668. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  669. {/block:IfInfiniteScroll}
  670.  
  671. </head>
  672.  
  673. <body>
  674.  
  675. <div class="steve-header">
  676. <div class="steve-inner">
  677. <h1>{Title}</h1>
  678. <nav>
  679. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  680. {block:ifLink2}<a href="{text:Link 2 URL}" >{text:Link 2}</a>{/block:ifLink2}
  681. <a href="#?w=300" rel="box1" class="poplight">{text:Navigation Title}</a>
  682. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a> {/block:ifLink4}
  683. </nav>
  684. </div>
  685. </div>
  686.  
  687. <script src="http://static.tumblr.com/ktebk5j/qX4n1ajnn/classie.js"></script>
  688. <script src="http://static.tumblr.com/ktebk5j/9qnn1ajo6/modernizr.custom.js"></script>
  689. <script src="http://static.tumblr.com/ktebk5j/wxyn1ajmp/cbpanimatedheader.js"></script>
  690. <script>
  691. /**
  692. * cbpAnimatedHeader.min.js v1.0.0
  693. * http://www.codrops.com
  694. *
  695. * Licensed under the MIT license.
  696. * http://www.opensource.org/licenses/mit-license.php
  697. *
  698. * Copyright 2013, Codrops
  699. * http://www.codrops.com
  700. */
  701. var cbpAnimatedHeader=(function(){var b=document.documentElement,g=document.querySelector(".steve-header"),e=false,a=50;function f(){window.addEventListener("scroll",function(h){if(!e){e=true;setTimeout(d,250)}},false)}function d(){var h=c();if(h>=a){classie.add(g,"steve-header-shrink")}else{classie.remove(g,"steve-header-shrink")}e=false}function c(){return window.pageYOffset||b.scrollTop}f()})();
  702. </script>
  703.  
  704.  
  705. <div id="con">
  706.  
  707. <div id="sbar">
  708. {block:ifShowSidebarImage}
  709. <div id="sbarim"><img src="{image:Sidebar Image}"></div>
  710. {/block:ifShowSidebarImage}
  711. {block:ifShowSecondTitle}
  712. <div id="subt">{text:Second Title}</div>
  713. {/block:ifShowSecondTitle}
  714. <div id="desc">{Description}</div>
  715. </div>
  716.  
  717.  
  718.  
  719.  
  720. <div id="entries">
  721.  
  722. <div class="autopagerize_page_element">
  723. {block:Posts}
  724. <div id="posts">
  725.  
  726.  
  727. {block:Quote}
  728.  
  729.  
  730. <div id="quo">{Quote}</div>
  731. {block:Source}<div id="src">&mdash; {Source}</div>{/block:Source}
  732. {/block:Quote}
  733.  
  734.  
  735.  
  736. {block:Text}
  737.  
  738. {block:Title}
  739. <div id="title">{Title}</div>{/block:Title}
  740. {Body}
  741. {/block:Text}
  742.  
  743. {block:Link}
  744. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  745. {/block:Link}
  746.  
  747. {block:Chat}
  748. {block:Title}
  749. <h1>{Title}</h1>
  750. {/block:Title}
  751. <div class="chat">
  752. <ol>{block:Lines}
  753. <li class="line {Alt}">
  754. {block:Label}
  755. <span class="label">
  756. {Label}</span>
  757. {/block:Label}{Line}</li>
  758. {/block:Lines}
  759. </ol></div>
  760. {/block:Chat}
  761.  
  762. {block:Photo}
  763. <div id="eww">
  764. <a href="{Permalink}">
  765. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
  766. </a>
  767. </div>
  768. {/block:Photo}
  769.  
  770. {block:Photoset}
  771. <div id="eww">
  772. {Photoset}
  773. </div>
  774. {/block:Photoset}
  775.  
  776. <!---
  777. {block:Photoset}
  778. {Photoset-500}
  779. {/block:Photoset}
  780. --->
  781.  
  782. {block:Video}
  783. {Video-500}
  784. {/block:Video}
  785.  
  786. {block:Audio}
  787. <div class="player">{AudioPlayerWhite}</div>
  788. <div class="ainfo">
  789. {block:TrackName}<div class="trtitle">{TrackName}</div>{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  790. </div>
  791. {/block:Audio}
  792.  
  793. {block:Answer}
  794. <div class="q">{Question} <div class="asker">— {Asker}</div></div>
  795. <div class="a">{Answer}</div>
  796. {/block:Answer}
  797.  
  798. {block:ifShowCaptions}
  799. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  800. {block:ifShowCaptions}
  801.  
  802. {block:Date}
  803. <div id="perma">
  804. <a href="{Permalink}" >{ShortMonth} {DayOfMonthWithSuffix} </a>
  805. {block:NoteCount}
  806. <a href="{Permalink}">({NoteCount})</a>
  807. {/block:NoteCount}
  808. <a href="{ReblogURL}" title="reblog">↻</a>
  809.  
  810. {block:PermalinkPage}
  811. {block:RebloggedFrom}
  812. <div id="from">
  813. <a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>
  814. {block:ContentSource}
  815. <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>
  816. {/block:ContentSource}
  817. </div>
  818. {/block:RebloggedFrom}
  819. {block:HasTags}
  820. <div class="tags">
  821. <font style="margin-right:5px;font-weight:bold;">indexed as:</font>
  822. {block:Tags}
  823. <a href="{TagUrl}">{Tag}</a>
  824. {/block:Tags}
  825. </div>
  826. {/block:HasTags}
  827.  
  828. {/block:PermalinkPage}
  829. </div>
  830. {/block:Date}
  831.  
  832.  
  833.  
  834. </div>
  835.  
  836.  
  837. {block:PostNotes}
  838. <div class="notes">
  839. {PostNotes}
  840. </div>
  841. {/block:PostNotes}
  842.  
  843.  
  844. {/block:Posts}
  845. </div>
  846.  
  847.  
  848. {block:ifNotInfiniteScroll}
  849. <div id="pag">
  850. {block:Pagination}
  851. {block:PreviousPage}
  852. <div id="pre">
  853. <a href="{PreviousPage}">future</a>
  854. </div>
  855. {/block:PreviousPage}
  856.  
  857.  
  858. {block:NextPage}
  859. <div id="next">
  860. <a href="{NextPage}">past</a>
  861. </div>
  862. {/block:NextPage}
  863. {/block:Pagination}
  864. </div>
  865. {/block:ifNotInfiniteScroll}
  866.  
  867.  
  868. </div>
  869.  
  870. </div>
  871.  
  872.  
  873. {block:ContentSource}
  874. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  875. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  876. {/block:SourceLogo}
  877. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  878. {/block:ContentSource}
  879.  
  880. <div id="cr">
  881. @<a href="http://panthoen.tumblr.com"> panthoen</a>
  882. </div>
  883.  
  884. </body>
  885.  
  886. <div id="box1" class="popup">
  887. <div class="navtitle">navigation</div>
  888. <div class="navlinks">
  889.  
  890. <!--- examples: <a href="/tagged/tag">tag title</a>
  891. <a href="http://instagram.com/whatever">instagram</a>
  892. --->
  893.  
  894. <a href="/tagged/ph">photography</a><a href="/tagged/art">art</a><a href="/tagged/fashion">fashion</a><a href="/tagged/architecture">architecture</a><a href="/tagged/space">space</a><br><a href="/tagged/fauna">fauna</a></div>
  895. </div>
  896.  
  897. </div></div></div></div></div></div></div></div></div></div>
  898.  
  899. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement