Advertisement
gnny

THEME 009

Jun 28th, 2014
656
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.39 KB | None | 0 0
  1. <!------------------------------------------------------------------------
  2.  
  3.  
  4. THEME 009
  5. from ginny.co.vu
  6.  
  7. Please don't steal, redistribute, use as a base code, or remove the credit. Any problems, let me know!!
  8.  
  9.  
  10. ------------------------------------------------------------------------->
  11.  
  12. <html>
  13. <head>
  14. <meta name="image:background" content="" />
  15. <meta name="image:side" content="" />
  16.  
  17. <meta name="color:background" content="#fff" />
  18. <meta name="color:blockquote" content="#888" />
  19. <meta name="color:blog description" content="#7e7e7e" />
  20. <meta name="color:blog description border" content="#4ccd8c" />
  21. <meta name="color:blog title" content="#787878" />
  22. <meta name="color:captions background" content="#f9f9f9" />
  23. <meta name="color:font" content="#000" />
  24. <meta name="color:links" content="#99a09d" />
  25. <meta name="color:links hover" content="#000" />
  26. <meta name="color:post caption border" content="#fff" />
  27. <meta name="color:post info" content="#b4b4b4" />
  28. <meta name="color:posts" content="#fff" />
  29. <meta name="color:scrollbar" content="#818181" />
  30. <meta name="color:sidebar links" content="#fff" />
  31. <meta name="color:sidebar links border" content="#fff" />
  32. <meta name="color:sidebar links hover" content="#4ccd8c" />
  33.  
  34. <meta name="if:Blurry Blog Title" content="1" />
  35. <meta name="if:Hover For Caption" content="1" />
  36. <meta name="if:No Hover For Caption" content="0" />
  37. <meta name="if:Hover For Tags" content="1" />
  38.  
  39. <meta name="text:link one title" content="" />
  40. <meta name="text:link one url" content="" />
  41. <meta name="text:link two title" content="" />
  42. <meta name="text:link two url" content="" />
  43. <meta name="text:link three title" content="" />
  44. <meta name="text:link three url" content="" />
  45.  
  46. <title>{Title}</title>
  47. <link rel="shortcut icon" href="{Favicon}">
  48. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  49. {block:Description}
  50. <meta name="description" content="{MetaDescription}" />
  51. {/block:Description}
  52.  
  53. <link href="http://static.tumblr.com/7e5jjoa/fJUmncmuf/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  54. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  55. <script src="http://static.tumblr.com/7e5jjoa/0lemncmux/jquery.style-my-tooltips.js"></script>
  56.  
  57. <script type="text/javascript" src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script>
  58. <script src="http://masonry.desandro.com/masonry.pkgd.min.js"></script>
  59.  
  60. <script type="text/javascript">
  61. $(window).load(function () {
  62. $('.postbox').masonry({
  63. itemSelector : ".posts",
  64. },
  65. function() { $('.postbox').masonry({ appendedContent: $(this) }); }
  66. );
  67. });
  68. </script>
  69.  
  70.  
  71. <script>
  72. (function($){
  73. $(document).ready(function(){
  74. $("[title]").style_my_tooltips();
  75. });
  76. })(jQuery);
  77. </script>
  78.  
  79. <script type=”text/javascript” src=”http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js”></script> <script type=”text/javascript” src=”http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js”></script> <script type=”text/javascript” charset=”utf-8”> var $j = jQuery.noConflict(); $j(function() { if (navigator.platform == “iPad” || navigator.platform == “iPhone”) return; $j(“img”).lazyload({ placeholder : “http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif”, effect: “fadeIn”, }); }); </script>
  80.  
  81. <style type="text/css">
  82.  
  83. /* --------------------------------------
  84. BASICS
  85. -------------------------------------- */
  86.  
  87. a:link, a:active, a:visited {
  88. text-transform:uppercase;
  89. font-size:8px;
  90. color:{color:links};
  91. text-decoration:none;
  92. }
  93.  
  94. a:hover {
  95. color:{color:links hover};
  96. }
  97.  
  98. blockquote {
  99. border-left: 1px solid {color:blockquote};
  100. margin-left:8px;
  101. margin-right:8px;
  102. padding-left:5px;
  103. word-wrap:break-word;
  104. }
  105.  
  106. blockquote img {
  107. max-width:350px;
  108. }
  109.  
  110. body {
  111. background-attachment: fixed;
  112. background-color: {color:background};
  113. background-image:url('{image:background}');
  114. background-repeat: repeat;
  115. color:{color:font};
  116. font-family:'arial';
  117. font-size:9px;
  118. line-height:16px;
  119. text-align: left;
  120. }
  121.  
  122. ::-webkit-scrollbar {
  123. background-color:{color:background};
  124. width: 6px;
  125. }
  126.  
  127. ::-webkit-scrollbar-thumb {
  128. background: {color:scrollbar};
  129. }
  130.  
  131. /* --------------------------------------
  132. PoSTS
  133. -------------------------------------- */
  134.  
  135. {block:IndexPage}
  136. .postbox {
  137. margin-left:130px;
  138. padding-top:40px;
  139. width: 1020px;
  140. }
  141.  
  142. .posts {
  143. background-color:{color:posts};
  144. float:left;
  145. width: 400px;
  146. margin:30px;
  147. padding: 20px;
  148. margin-bottom:20px;
  149. }
  150. {/block:IndexPage}
  151.  
  152. {block:Permalink}
  153. .postbox {
  154. margin-left:380px;
  155. padding-top:40px;
  156. width: 400px;
  157. }
  158.  
  159. .posts {
  160. background-color:{color:posts};
  161. float:left;
  162. width: 400px;
  163. margin:30px;
  164. padding: 20px;
  165. margin-bottom:20px;
  166. }
  167. {/block:Permalink}
  168.  
  169. .posts img {
  170. max-width:400px;
  171. }
  172.  
  173. /* --------------------------------------
  174. DESCRIPTION
  175. -------------------------------------- */
  176.  
  177. .desc {
  178. font-size:9px;
  179. display:block;
  180. height:180px;
  181. }
  182.  
  183. #descimg {
  184. position:absolute;
  185. height:180px;
  186. width:180px;
  187. }
  188.  
  189. #descimg img {
  190. width:180px;
  191. position:absolute;
  192. }
  193.  
  194. #links {
  195. border:1px solid {color:sidebar links border};
  196. width:140px;
  197. height:140px;
  198. position:absolute;
  199. background-color:#fff;
  200. padding:20px;
  201. opacity:0;
  202. font-weight:lighter;
  203. -webkit-transition-duration: 0.7s;
  204. -moz-transition-duration: 0.7s;
  205. }
  206.  
  207. #descimg:hover #links {
  208. opacity:1;
  209. background-color:rgba(255,255,255,0.3);
  210. width:80px;
  211. height:80px;
  212. margin-left:30px;
  213. margin-top:30px;
  214. padding:20px;
  215. -webkit-transition-duration: 0.7s;
  216. -moz-transition-duration: 0.7s;
  217. }
  218.  
  219. #links a {
  220. color:{color:sidebar links};
  221. font-size:8px;
  222. text-transform:uppercase;
  223. position:absolute;
  224. text-decoration: none;
  225. display: inline-block;
  226. border-bottom: 1px {color:sidebar links hover};
  227. width: 0px;
  228. margin-right:39px;
  229. -webkit-transition: 0.5s ease;
  230. transition: 0.5s ease;
  231. }
  232.  
  233. #links a:hover {
  234. color:{color:sidebar links hover};
  235. -webkit-transition: 0.5s ease;
  236. transition: 0.5s ease;
  237. border-bottom: 1px solid {color:sidebar links hover};
  238. width: 30px;
  239. margin-right:9px;
  240. }
  241.  
  242. #permalinkdesc {
  243. color:#7e7e7e;
  244. font-size:9px;
  245. font-weight:lighter;
  246. font-style:italic;
  247. text-align:center;
  248. }
  249.  
  250. #permalinktitle {
  251. margin-top:40px;
  252. font-size:10px;
  253. font-weight:lighter;
  254. text-transform:uppercase;
  255. text-align:center;
  256. color: transparent;
  257. text-shadow: 0 0 0.3px rgba(0,0,0,0.7);
  258. }
  259.  
  260. #permalinktitle a {
  261. font-size:10px;
  262. font-weight:lighter;
  263. text-transform:uppercase;
  264. text-align:center;
  265. color: transparent;
  266. text-shadow: 0 0 0.3px rgba(0,0,0,0.7);
  267. }
  268.  
  269. #blogtitle {
  270. position:absolute;
  271. font-size:10px;
  272. font-weight:lighter;
  273. width:60px;
  274. text-transform:uppercase;
  275. text-align:center;
  276. color:{color:blog title};
  277. {block:IfBlurryBlogTitle}
  278. text-shadow: 0 0 0.3px rgba(0,0,0,0.7);
  279. color:transparent;
  280. {/block:IfBlurryBlogTitle}
  281. margin-left:260px;
  282. margin-top:60px;
  283. -webkit-transition-duration: 0.7s;
  284. -moz-transition-duration: 0.7s;
  285. }
  286.  
  287. #blogtitle:hover {
  288. margin-top:25px;
  289. -webkit-transition-duration: 0.7s;
  290. -moz-transition-duration: 0.7s;
  291. }
  292.  
  293. #description {
  294. color:{color:blog description};
  295. font-size:9px;
  296. position:absolute;
  297. width:100px;
  298. margin-left:240px;
  299. margin-top:140px;
  300. line-height:15px;
  301. text-align:center;
  302. opacity:0;
  303. -webkit-transition-duration: 0.7s;
  304. -moz-transition-duration: 0.7s;
  305. }
  306.  
  307. #blogtitle:hover ~ #description {
  308. border-top: 1px solid {color:blog description border};
  309. padding-top:16px;
  310. margin-top:85px;
  311. opacity:1;
  312. -webkit-transition-duration: 0.7s;
  313. -moz-transition-duration: 0.7s;
  314. }
  315.  
  316. /* --------------------------------------
  317. TITLE, LINKS, CHAT ETC
  318. -------------------------------------- */
  319.  
  320. #titleborder {
  321. width:30px;
  322. height:1px;
  323. background-color:{color:font};
  324. position:absolute;
  325. display:inline-block;
  326. margin-top:8px;
  327. }
  328.  
  329. .title {
  330. font-size:11px;
  331. line-height:16px;
  332. display:inline-block;
  333. margin-left:35px;
  334. font-style:italic;
  335. font-weight:bold;
  336. }
  337.  
  338. /* --------------------------------------
  339. TITLE, LINKS, CHAT ETC
  340. -------------------------------------- */
  341.  
  342. .quote {
  343. padding:20px;
  344. font-size:8px;
  345. line-height:16px;
  346. text-transform:uppercase;
  347. letter-spacing:1px;
  348. }
  349.  
  350.  
  351. #saidborder {
  352. width:30px;
  353. height:1px;
  354. background-color:{color:font};
  355. position:absolute;
  356. display:inline-block;
  357. margin-top:8px;
  358. }
  359.  
  360. .said {
  361. margin-left:35px;
  362. }
  363.  
  364. /* --------------------------------------
  365. AuDIO
  366. -------------------------------------- */
  367.  
  368. #audio {
  369. background-color:{color:posts};
  370. height:90px;
  371. padding:4px;
  372. text-align:left;
  373. width:392px;
  374. }
  375.  
  376. .cover {
  377. height:90px;
  378. position:absolute;
  379. width:90px;
  380. }
  381.  
  382. .cover img {
  383. float:left;
  384. height:90px;
  385. width:90px;
  386. }
  387.  
  388. .player {
  389. display:block;
  390. height:90px;
  391. margin-left:5px;
  392. margin-top:5px;
  393. position:absolute;
  394. width:90px;
  395. }
  396.  
  397. .audioplayer {
  398. height:25px;
  399. opacity:1;
  400. overflow:hidden;
  401. margin-left:25px;
  402. margin-top:25px;
  403. width:25px;
  404. }
  405.  
  406. .audiotitle {
  407. background-color:{color:posts};
  408. color:{color:font};
  409. font-size:10px;
  410. font-style:italic;
  411. font-weight:lighter;
  412. line-height:15px;
  413. margin-top:-50px;
  414. margin-left:100px;
  415. padding:3px;
  416. }
  417.  
  418. .audioinfo {
  419. color:{color:font};
  420. display:block;
  421. font-size:8px;
  422. font-style:italic;
  423. line-height:12px;
  424. margin-left:100px;
  425. margin-top:1px;
  426. padding-left:40px;
  427. padding:3px;
  428. }
  429.  
  430. .audioinfo span {
  431. color:{color:blockquote};
  432. padding:2px;
  433. text-transform:uppercase;
  434. font-style:normal;
  435. }
  436.  
  437. /* --------------------------------------
  438. CAPTIONS
  439. -------------------------------------- */
  440.  
  441. .caption {
  442. margin-top:-142px;
  443. margin-left:10px;
  444. position:absolute;
  445. width:210px;
  446. height:90px;
  447. background-color:rgba(255,255,255,0.8);
  448. border:1px solid {color:post caption border};
  449. padding:20px;
  450. opacity:0;
  451. overflow:auto;
  452. -webkit-transition-duration: 0.7s;
  453. -moz-transition-duration: 0.7s;
  454. }
  455.  
  456. .caption a {
  457. text-transform:uppercase;
  458. font-size:8px;
  459. letter-spacing:1px;
  460. }
  461.  
  462. .posts:hover .caption {
  463. opacity:1;
  464. -webkit-transition-duration: 0.7s;
  465. -moz-transition-duration: 0.7s;
  466. }
  467.  
  468. .musiccaption {
  469. margin-top:10px;
  470. background-color:{color:captions background};
  471. padding:15px;
  472. }
  473.  
  474. .musiccaption a {
  475. text-transform:uppercase;
  476. font-size:8px;
  477. letter-spacing:1px;
  478. }
  479.  
  480. /* --------------------------------------
  481. QUESTIONS
  482. -------------------------------------- */
  483.  
  484. #question {
  485. border-bottom:1px solid {color:links};
  486. font-size:10px;
  487. line-height:14px;
  488. font-style:italic;
  489. font-weight:bold;
  490. padding:20px;
  491. padding-bottom:35px;
  492. text-align:center;
  493. }
  494.  
  495. #asker {
  496. margin-top:-13px;
  497. text-align:center;
  498. }
  499.  
  500. #asker img {
  501. border:1px solid {color:links};
  502. }
  503.  
  504. #answer {
  505. text-align:center;
  506. padding:15px;
  507. }
  508.  
  509. /* --------------------------------------
  510. BOTTOM
  511. -------------------------------------- */
  512.  
  513. #bottom {
  514. color:{color:post info};
  515. text-transform:uppercase;
  516. font-size:8px;
  517. letter-spacing:0.06em;
  518. margin-top:5px;
  519. }
  520.  
  521. #tags {
  522. {block:IfHoverForTags}
  523. opacity:0;
  524. {/block:IfHoverForTags}
  525. margin-top:5px;
  526. width:405px;
  527. -webkit-transition-duration: 0.7s;
  528. -moz-transition-duration: 0.7s;
  529. }
  530.  
  531. .posts:hover #tags {
  532. opacity:1;
  533. -webkit-transition-duration: 0.7s;
  534. -moz-transition-duration: 0.7s;
  535. }
  536.  
  537. #tags a {
  538. opacity:0.7;
  539. padding-right:5px;
  540. line-height:15px;
  541. text-transform:none;
  542. font-size:9px;
  543. }
  544.  
  545. /* --------------------------------------
  546. PAGINaTION
  547. -------------------------------------- */
  548.  
  549. #next {
  550. padding-bottom:20px;
  551. margin-left:198px;
  552. text-align:center;
  553. width:880px;
  554. z-index:9999;
  555. }
  556.  
  557. .jump_page {
  558. padding: 4px 8px;
  559. color:{color:font};
  560. font-family:arial;
  561. font-size:8px;
  562. text-decoration:none;
  563. }
  564.  
  565. .current_page, .jump_page:hover {
  566. padding: 4px 8px;
  567. background-color: {color:captions background};
  568. color: {color:font};
  569. font-family:arial;
  570. font-size:8px;
  571. text-decoration:none;
  572. }
  573.  
  574. /* --------------------------------------
  575. POSTNoTES
  576. -------------------------------------- */
  577.  
  578. #postnotes {
  579. margin-top:20px;
  580. padding:5px;
  581. width:400px;
  582. line-height:15px;
  583. font-size:8px;
  584. text-transform:uppercase;
  585. word-wrap:word-break;
  586. }
  587.  
  588. ol.notes {
  589. padding: 0px;
  590. margin: 25px 0px;
  591. list-style-type: none;
  592. background-color:{color:background};
  593. }
  594.  
  595. ol.notes li.note {
  596. padding: 10px;
  597. }
  598.  
  599. ol.notes li.note img.avatar {
  600. vertical-align: -4px;
  601. margin-right: 10px;
  602. width: 16px;
  603. height: 16px;
  604. }
  605.  
  606. ol.notes li.note span.action {
  607. font-weight: bold;
  608. }
  609.  
  610. ol.notes li.note .answer_content {
  611. font-weight: normal;
  612. }
  613.  
  614. ol.notes li.note blockquote {
  615. padding: 4px 10px;
  616. margin: 10px 0px 0px 25px;
  617. }
  618.  
  619. ol.notes li.note blockquote a {
  620. text-decoration: none;
  621. }
  622.  
  623. #th {
  624. bottom: 0;
  625. color:#b3b3b3;
  626. font-size:7px;
  627. margin-right:10px;
  628. padding:10px;
  629. position: fixed;
  630. right: 0;
  631. text-transform:uppercase;
  632. }
  633.  
  634. #th a {
  635. font-size:7px;
  636. color:#b3b3b3;
  637. }
  638.  
  639. </style>
  640.  
  641. </head>
  642. <body>
  643.  
  644. <div id="th">
  645. <a href="http://ginny.co.vu/ths">theme</a>
  646. </div>
  647.  
  648. {block:Permalink}
  649. <div id="permalinktitle">〈 <a href="/">{title}</a></div>
  650. <div id="permalinkdesc">{description}</div>
  651. {/block:Permalink}
  652.  
  653. <div class="postbox">
  654. {block:IndexPage}
  655. <div class="posts">
  656. <div class="desc">
  657. <div id="descimg">
  658. <img src="{image:side}">
  659. <div id="links">
  660. <a href="/">home</a><br>
  661. <a href="/ask">ask</a><br>
  662. {block:ifLinkOneUrl}
  663. <a href="{text:link one url}">{text:link one title}</a><br>
  664. {/block:ifLinkOneUrl}
  665. {block:ifLinkTwoUrl}
  666. <a href="{text:link two url}">{text:link two title}</a><br>
  667. {/block:ifLinkTwoUrl}
  668. {block:ifLinkThreeUrl}
  669. <a href="{text:link three url}">{text:link three title}</a><br>
  670. {/block:ifLinkThreeUrl}
  671. </div>
  672. </div>
  673. <div id="blogtitle">
  674. {title}
  675. </div>
  676. <div id="border"></div>
  677. <div id="description">
  678. {description}
  679. </div>
  680. </div>
  681. </div>
  682. {/block:IndexPage}
  683. {block:Posts}
  684. <div class="posts">
  685. {block:Text}
  686. {block:Title}
  687. <div id="titleborder"></div>
  688. <div class="title">{Title}</div>
  689. {/block:Title}
  690. <div class="bodytext">{Body}</div>
  691. {/block:Text}
  692.  
  693. {block:Photo}
  694. <div id="photo">
  695. <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
  696. </div>
  697. {block:IndexPage}
  698. {block:Caption}
  699. {block:IfHoverForCaption}
  700. <div class="caption">
  701. {Caption}
  702. </div>
  703. {/block:IfHoverForCaption}
  704. {block:IfNoHoverForCaption}
  705. <div class="musiccaption">
  706. {Caption}
  707. </div>
  708. {/block:IfNoHoverForCaption}
  709. {/block:Caption}
  710. {/block:IndexPage}
  711. {block:Permalink}
  712. {block:Caption}
  713. <div class="musiccaption">
  714. {Caption}
  715. </div>
  716. {/block:Caption}
  717. {/block:Permalink}
  718. {/block:Photo}
  719.  
  720. {block:Photoset}
  721. <div id="photo">
  722. {Photoset-400}
  723. </div>
  724. {block:IndexPage}
  725. {block:Caption}
  726. {block:IfHoverForCaption}
  727. <div class="caption">
  728. {Caption}
  729. </div>
  730. {/block:IfHoverForCaption}
  731. {block:IfNoHoverForCaption}
  732. <div class="musiccaption">
  733. {Caption}
  734. </div>
  735. {/block:IfNoHoverForCaption}
  736. {/block:Caption}
  737. {/block:IndexPage}
  738. {block:Permalink}
  739. {block:Caption}
  740. <div class="musiccaption">
  741. {Caption}
  742. </div>
  743. {/block:Caption}
  744. {/block:Permalink}
  745. {/block:Photoset}
  746.  
  747. {block:Quote}
  748. <div id="body">
  749. <div class="quote">
  750. {Quote}
  751. </div>
  752. {block:Source}
  753. <div id="saidborder"></div>
  754. <div class="said">
  755. {Source}
  756. </div>
  757. {/block:Source}
  758. </div>
  759. {/block:Quote}
  760.  
  761. {block:Link}
  762. <div id="body">
  763. <div id="titleborder"></div>
  764. <div class="title">
  765. <a href="{URL}">{Name}</a>
  766. </div>
  767. {block:Description}
  768. <div class="text">
  769. {Description}
  770. </div>
  771. {/block:Description}
  772. </div>
  773. {/block:Link}
  774.  
  775. {block:Chat}
  776. <div id="body">
  777. {block:Title}
  778. <div class="title">
  779. {Title}
  780. </div>
  781. {/block:Title}
  782. <div class="text">
  783. {block:Lines}
  784. {block:Label}
  785. <b>{Label}</b>
  786. {/block:Label}
  787. {Line}<br>
  788. {/block:Lines}
  789. </div>
  790. </div>
  791. {/block:Chat}
  792.  
  793. {block:Video}
  794. {Video-400}
  795. {block:Caption}
  796. <div class="musiccaption">
  797. {Caption}
  798. </div>
  799. {/block:Caption}
  800. {/block:Video}
  801.  
  802. {block:Audio}
  803. <div id="audio">
  804. <div class="cover">
  805. <img src="http://static.tumblr.com/liul60i/IcMmdl9id/nmusic2.png">
  806. </div>
  807. {block:AlbumArt}
  808. <div class="cover">
  809. <img src="{AlbumArtURL}">
  810. </div>
  811. {/block:AlbumArt}
  812. <div class="player">
  813. <div class="audioplayer">
  814. {AudioPlayerWhite}
  815. </div>
  816. </div>
  817. <br><br><br><br>
  818. <div class="audiotitle">
  819. {block:TrackName}{TrackName}{/block:TrackName}
  820. </div>
  821. <div class="audioinfo">
  822. {block:Artist}
  823. <span>Artist:</span> {Artist}
  824. {/block:Artist}
  825. <br>
  826. {block:Album}
  827. <span>Album:</span> {Album}
  828. {/block:Album}
  829. <br>
  830. <span>Play count:</span> {FormattedPlayCount}
  831. </div>
  832. </div>
  833. {block:Caption}
  834. <div class="musiccaption">
  835. {Caption}
  836. </div>
  837. {/block:Caption}
  838. {/block:Audio}
  839.  
  840. {block:Answer}
  841. <div id="question">
  842. {Question}
  843. </div>
  844. <div id="asker">
  845. <a href="{askerurl}"><img src="{AskerPortraitURL-24}"></a>
  846. </div>
  847. <div id="answer">{Answer}</div>
  848. {/block:answer}
  849.  
  850.  
  851. {block:ContentSource}
  852. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  853. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  854. {/block:SourceLogo}
  855. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  856. {/block:ContentSource}
  857.  
  858.  
  859. {block:Date}
  860. <div id="bottom">
  861. 〉<a href="{Permalink}" title="{TimeAgo}">
  862. {DayOfMonth}{DayOfMonthSuffix}
  863. {ShortMonth}
  864. {Year}
  865. </a>
  866. {block:NoteCount}
  867. - {NoteCount} notes
  868. {/block:NoteCount}
  869. {block:Permalink}
  870. {block:RebloggedFrom}-
  871. <a href="{ReblogParentURL}"
  872. title="via {ReblogParentName}">
  873. via
  874. </a> -
  875. <a href="{ReblogRootURL}"
  876. title="potsed by {ReblogRootName}">
  877. source
  878. </a>
  879. {/block:RebloggedFrom}
  880. {/block:Permalink}
  881. </div>
  882. {/block:Date}
  883.  
  884.  
  885. {block:HasTags}
  886. <div id="tags">
  887. {block:Tags}
  888. <a href="/tagged/{Tag}">#{Tag}</a>
  889. {/block:Tags}
  890. </div>
  891. {/block:HasTags}
  892.  
  893. {block:Permalink}
  894. <div id="postnotes">
  895. {PostNotes}
  896. </div>
  897. {/block:Permalink}
  898.  
  899.  
  900. </div>
  901. {/block:Posts}
  902.  
  903. </div>
  904.  
  905. <div id="next">
  906. {block:Pagination}
  907. {block:PreviousPage}
  908. <a href="{PreviousPage}" class="jump_page">&laquo;</a>
  909. {/block:PreviousPage}
  910. {block:JumpPagination length="5"}
  911. {block:CurrentPage}
  912. <span class="current_page">{PageNumber}</span>
  913. {/block:CurrentPage}
  914. {block:JumpPage}
  915. <a class="jump_page" href="{URL}">{PageNumber}</a>
  916. {/block:JumpPage}
  917. {/block:JumpPagination}
  918. {block:NextPage}
  919. <a href="{NextPage}" class="jump_page">&raquo;</a>
  920. {/block:NextPage}
  921. {/block:Pagination}
  922. </div>
  923.  
  924. </body>
  925. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement