Advertisement
septims

Tweet

Feb 16th, 2015
23,369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.24 KB | None | 0 0
  1. <!--septim theme-->
  2.  
  3. <head>
  4.  
  5. <title>{block:TagPage}#{Tag} : {/block:TagPage} {block:PostSummary}{PostSummary} : {/block:PostSummary}{Title}</title>
  6.  
  7. <link rel="shortcut icon" href="{favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11. <!--Default Variables-->
  12.  
  13. <meta name="color:Background" content="#ffffff"/>
  14. <meta name="color:Text" content="#aaaaaa"/>
  15. <meta name="color:Link" content="#000000"/>
  16. <meta name="color:Link Hover" content="#ffffff"/>
  17. <meta name="color:Title" content="#000000"/>
  18. <meta name="color:Blog Title" content="#000000"/>
  19. <meta name="color:Borders" content="#eeeeee"/>
  20. <meta name="color:Accents" content="#f4f4f4"/>
  21. <meta name="color:Scrollbar" content="#000000"/>
  22.  
  23. <meta name="text:Link 1 URL" content="" />
  24. <meta name="text:Link 1" content="" />
  25. <meta name="text:Link 2 URL" content="" />
  26. <meta name="text:Link 2" content="" />
  27. <meta name="text:Link 3 URL" content="" />
  28. <meta name="text:Link 3" content="" />
  29.  
  30. <meta name="text:Home Link Title" content="index"/>
  31. <meta name="text:Message Link Title" content="message"/>
  32. <meta name="text:Archive Link Title" content="archive"/>
  33.  
  34. <meta name="text:Nickname" content="Loo."/>
  35. <meta name="text:Post Spacing" content="100"/>
  36. <meta name="text:Post Width" content="350"/>
  37. <meta name="text:Header Image Height" content="200"/>
  38.  
  39. <meta name="image:Icon" content=""/>
  40. <meta name="image:Header" content=""/>
  41.  
  42. <meta name="if:Show Icon" content="1"/>
  43. <meta name="if:Infinite Scroll" content="1"/>
  44. <meta name="if:Show Header Image" content="0"/>
  45. <meta name="if:Stretch Header" content="0"/>
  46. <meta name="if:Hide Captions" content="0"/>
  47. <meta name="if:Hide Tags" content="0"/>
  48.  
  49. <!-- jquery for tooltips-->
  50.  
  51. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  52. <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  53. <script>
  54. $(function() {
  55. $(document).tooltip({
  56. track:true
  57. });
  58. });
  59. </script>
  60.  
  61. <script>
  62. $(document).ready(function() {
  63. var stickyNavTop = $('#nav, #sidebar').offset().top;
  64. var stickyNav = function(){
  65. var scrollTop = $(window).scrollTop();
  66. if (scrollTop > stickyNavTop) {
  67. $('#nav, #sidebar').addClass('sticky');
  68. }
  69. else {
  70. $('#nav, #sidebar').removeClass('sticky');
  71. }
  72. };
  73. stickyNav();
  74. $(window).scroll(function() {
  75. stickyNav();
  76. });
  77. });
  78. </script>
  79.  
  80. <!--CSS customization here. -->
  81.  
  82. <style type="text/css">
  83.  
  84. /*tumblr controls*/
  85.  
  86. iframe#tumblr_controls {
  87. white-space:nowrap!important;
  88. -webkit-filter:invert(100%)!important;
  89. -moz-filter:invert(100%)!important;
  90. -ms-filter:invert(100%)!important;
  91. -o-filter:invert(100%)!important;
  92. filter:invert(100%)!important;
  93. top:2px!important;
  94. right:5px!important;
  95. position:fixed!important;
  96. opacity:.2!Important;
  97. }
  98.  
  99. /*lightbox*/
  100.  
  101. #tumblr_lightbox {
  102. background-color:rgba(246, 246, 246, .9)!important;
  103. z-index:99999!important;
  104. }
  105.  
  106. #tumblr_lightbox img {opacity:0;}
  107.  
  108. #tumblr_lightbox_caption {
  109. color:black!important;
  110. font-family:trebuchet ms!important;
  111. font-size:10px!important;
  112. font-weight:normal!important;
  113. text-shadow:none!important;
  114. }
  115.  
  116. #tumblr_lightbox_center_image, #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {
  117. padding:10px!important;
  118. background:white!important;
  119. margin-top:-10px!important;
  120. margin-left:-10px!important;
  121. -moz-box-shadow:none!important;
  122. -webkit-box-shadow:none!important;
  123. box-shadow:none!important;
  124. -moz-border-radius:5px!important;
  125. -webkit-border-radius:5px!important;
  126. border-radius:5px!important;
  127. opacity:1!important;
  128. }
  129.  
  130. #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {opacity:.6!important;}
  131.  
  132. /*tooltip*/
  133.  
  134. .ui-tooltip {
  135. position:Absolute;
  136. z-index:9999;
  137. padding:10px;
  138. }
  139.  
  140. .ui-tooltip-content {
  141. background:{color:accents};
  142. color:{color:title};
  143. padding:0px 4px;
  144. line-height:14px;
  145. display:block;
  146. font-size:8px;
  147. text-transform:uppercase;
  148. letter-spacing:1px;
  149. }
  150.  
  151. /*scrollbar*/
  152.  
  153. ::-webkit-scrollbar{
  154. height:3px;
  155. width:4px;
  156. background-color:{color:background};
  157. }
  158.  
  159. ::-webkit-scrollbar-thumb {
  160. background:{color:scrollbar};
  161. border-radius:2px;
  162. }
  163.  
  164. ::-webkit-scrollbar-track {background-color:{color:background};}
  165.  
  166. /*basics*/
  167.  
  168. body {
  169. background:{color:background};
  170. color:{color:text};
  171. font-family:calibri, arial;
  172. font-size:10px;
  173. text-align:left;
  174. margin:0;
  175. line-height:125%;
  176. }
  177.  
  178. blockquote {
  179. padding:0 0 0 10px;
  180. border-left:3px solid {color:borders};
  181. margin:10px 0;
  182. text-align:left;
  183. }
  184.  
  185. .caption blockquote {
  186. margin:0;
  187. padding:0;
  188. border:0;
  189. }
  190.  
  191. a {
  192. color:{color:link};
  193. text-decoration:none;
  194. }
  195.  
  196. a:hover {
  197. text-decoration:none;
  198. color:{color:link hover};
  199. }
  200.  
  201. img {
  202. opacity:1;
  203. border:none;
  204. text-decoration:none;
  205. }
  206.  
  207. small {
  208. font-size:9px;
  209. }
  210.  
  211. big {
  212. font-size:9px;
  213. }
  214.  
  215. b, strong {color:{color:title};}
  216.  
  217. p {margin:5px 0;}
  218.  
  219. p:first-of-type {margin-top:0;}
  220.  
  221. p:last-of-type {margin-bottom:0;}
  222.  
  223. pre {
  224. margin:0;
  225. padding:0;
  226. font-family:arial;
  227. font-size:10px;
  228. background:transparent;
  229. }
  230.  
  231. /*top*/
  232.  
  233. #sidebar {
  234. -webkit-animation-name: fade-in;
  235. -webkit-animation-duration: 2s;
  236. text-align:right!important;
  237. position:absolute;
  238. width:100px;
  239. z-index:15;
  240. top:100px;
  241. {block:ifshowheaderimage}
  242. top:{text:header image height}px;
  243. {/block:ifshowheaderimage}
  244. left:50%;
  245. margin-left:calc(-{text:post width}px / 2 - 150px);
  246. }
  247.  
  248. .class {
  249. {block:ifnotshowheaderimage}
  250. margin-top:-65px;
  251. height:90px;
  252. width:90px;
  253. {/block:ifnotshowheaderimage}
  254. {block:ifshowheaderimage}
  255. padding:5px;
  256. margin-top:-40px;
  257. width:100px;
  258. height:100px;
  259. margin-left:-5px;
  260. background:{color:background};
  261. {/block:ifshowheaderimage}
  262. display:block;
  263. border-radius:5px;
  264. -moz-border-radius:5px;
  265. -webkit-border-radius:5px;
  266. overflow:hidden;
  267. transition:0.4s;
  268. -o-transition-transition:0.4s;
  269. -webkit-transition-duration:0.4s;
  270. -moz-transition-duration:0.4s;
  271. }
  272.  
  273. .class img {
  274. display:block;
  275. width:90px;
  276. height:90px;
  277. {block:ifshowheaderimage}
  278. width:100px;
  279. height:100px;
  280. {/block:ifshowheaderimage}
  281. border-radius:3px!important;
  282. -moz-border-radius:3px;
  283. -webkit-border-radius:3px;
  284. }
  285.  
  286. #blogt {
  287. color:{color:blog title};
  288. font-weight:bold;
  289. text-transform:uppercase;
  290. margin-top:10px;
  291. letter-spacing:1px;
  292. border-bottom:2px solid {color:blog title};
  293. }
  294.  
  295. #blogt:hover {color:{color:link hover};}
  296.  
  297. #nav {
  298. -webkit-animation-name: fade-in;
  299. -webkit-animation-duration: 2s;
  300. display:block;
  301. position:relative;
  302. background:{color:background};
  303. z-index:10;
  304. {block:ifshowheaderimage}
  305. border-top:1px solid {color:borders};
  306. margin-top:{text:header image height}px;
  307. {/block:ifshowheaderimage}
  308. width:100%;
  309. border-bottom:1px solid {color:borders};
  310.  
  311. }
  312.  
  313. #nh {
  314. -webkit-animation-name: fade-in;
  315. -webkit-animation-duration: 2s;
  316. position:absolute;
  317. top:50px;
  318. {block:ifnotshowheaderimage}
  319. height:0!important;
  320. {/block:ifnotshowheaderimage}
  321. background:{color:background} {block:ifshowheaderimage}url('{image:header}') bottom left fixed repeat{/block:ifshowheaderimage};
  322. {block:ifshowheaderimage}
  323. top:0;
  324. height:{text:header image height}px;
  325. {block:ifstretchheader}
  326. -webkit-background-size: cover;
  327. -moz-background-size: cover;
  328. -o-background-size: cover;
  329. background-size: cover;
  330. {/block:ifstretchheader}
  331. {/block:ifshowheaderimage}
  332. left:0;
  333. width:100%;
  334. }
  335.  
  336. #sidebar.sticky .class {
  337. opacity:0;
  338. margin-top:-95px;
  339. }
  340.  
  341. #sidebar.sticky #description {
  342. visibility:hidden;
  343. }
  344.  
  345. #in {
  346. width:{text:post width}px;
  347. margin:0 auto;
  348. }
  349.  
  350. .small {
  351. position:absolute;
  352. width:100px;
  353. line-height:34px;
  354. text-align:left;
  355. visibility:hidden;
  356. margin-top:-30px;
  357. transition:0.4s;
  358. -o-transition-transition:0.4s;
  359. -webkit-transition-duration:0.4s;
  360. -moz-transition-duration:0.4s;
  361. }
  362.  
  363. .small img {
  364. width:28px;
  365. width:28px;
  366. margin-right:10px;
  367. display:block;
  368. margin-top:3px;
  369. border-radius:2px;
  370. -moz-border-radius:2px;
  371. -webkit-border-radius:2px;
  372. float:left;
  373. }
  374.  
  375. #sidebar .sticky .class {
  376. transition:0.4s;
  377. -o-transition-transition:0.4s;
  378. -webkit-transition-duration:0.4s;
  379. -moz-transition-duration:0.4s;
  380. }
  381.  
  382. #sidebar .sticky .small {
  383. transition:0.8s;
  384. -o-transition-transition:0.8s;
  385. -webkit-transition-duration:0.8s;
  386. -moz-transition-duration:0.8s;
  387. }
  388.  
  389. #sidebar.sticky .small {
  390. margin-top:0;
  391. visibility:visible;
  392. }
  393.  
  394. #nav.sticky {left:0;}
  395.  
  396. #nav.sticky, #sidebar.sticky {
  397. position:fixed;
  398. top:0;
  399. margin-top:0!important;
  400. }
  401.  
  402. .links {
  403. text-transform:uppercase;
  404. font-size:8px;
  405. letter-spacing:1px;
  406. }
  407.  
  408. .links a {
  409. display:inline-block;
  410. padding:1px 5px 8px 5px;
  411. text-align:center;
  412. margin-bottom:-1px;
  413. border-bottom:2px solid transparent;
  414. }
  415.  
  416. .links a:hover {border-bottom:2px solid {color:link hover};}
  417.  
  418. #description {
  419. z-index:5;
  420. display:block;
  421. padding-top:10px;
  422. text-align:left;
  423. {block:ifshowheaderimage}
  424. {block:ifnotshowicon}
  425. margin-top:35px;
  426. {/block:ifnotshowicon}
  427. {/block:ifshowheaderimage}
  428. }
  429.  
  430. #description a {color:{color:text};}
  431.  
  432. .see {
  433. font-size:12px;
  434. color:{color:blog title}!important;
  435. font-weight:bold;
  436. display:block;
  437. font-family:arial;
  438. margin-bottom:5px;
  439. }
  440.  
  441. /*pagination*/
  442.  
  443. #pagination {
  444. -webkit-animation-name: fade-in;
  445. -webkit-animation-duration: 2s;
  446. font-size:8px;
  447. {block:indexpage}
  448. {block:ifinfinitescroll}
  449. display:none;
  450. {/block:ifinfinitescroll}
  451. {/block:indexpage}
  452. letter-spacing:1px;
  453. text-align:center;
  454. text-transform:uppercase;
  455. }
  456.  
  457. #pagination a {
  458. display:inline-block;
  459. margin:0 5px;
  460. padding:0 5px;
  461. background:{color:accents};
  462. color:{color:title};
  463. border-radius:3px;
  464. -moz-border-radius:3px;
  465. -webkit-border-radius:3px;
  466. }
  467.  
  468. /*posts*/
  469.  
  470. #entries {
  471. margin:100px auto;
  472. {block:ifshowheaderimage}
  473. margin-top:calc({text:header image height}px + 50px);
  474. {/block:ifshowheaderimage}
  475. position:relative;
  476. width:{text:Post width}px;
  477. }
  478.  
  479. .posts {
  480. -webkit-animation-name: fade-in;
  481. -webkit-animation-duration: 2s;
  482. position:relative;
  483. display:block;
  484. width:{text:Post width};
  485. {block:IndexPage}
  486. margin-bottom:{text:post spacing}px;
  487. {/block:IndexPage}
  488. {block:PermalinkPage}
  489. margin-bottom:10px;
  490. {/block:PermalinkPage}
  491. }
  492.  
  493. {block:IndexPage}
  494. {block:ifnotinfinitescroll}
  495. .posts:last-of-type {margin-bottom:0;}
  496. {/block:ifnotinfinitescroll}
  497. {/block:IndexPage}
  498.  
  499. .hm iframe, .hm img {
  500. display:block;
  501. border-radius:3px;
  502. -moz-border-radius:3px;
  503. -webkit-border-radius:3px;
  504. width:{text:post width}px;
  505. }
  506.  
  507. .v {
  508. display:block;
  509. border-radius:3px;
  510. -moz-border-radius:3px;
  511. -webkit-border-radius:3px;
  512. }
  513.  
  514. .video_big {
  515. position:relative;
  516. height:0;
  517. padding-bottom:56.25%;
  518. }
  519.  
  520. .video_big iframe {
  521. position:absolute;
  522. top:0;
  523. left:0;
  524. height:100%;
  525. width:100%;
  526. }
  527.  
  528. .posts img, .posts li, .posts blockquote {max-width: 100%;}
  529.  
  530. .tumblr_blog {
  531. margin-bottom:5px;
  532. text-transform:uppercase;
  533. font-size:8px;
  534. letter-spacing:1px;
  535. display:inline-block;
  536. }
  537.  
  538. #title {
  539. font-size:11px;
  540. color:{color:title};
  541. margin-bottom:10px;
  542. padding:10px;
  543. border-radius:3px;
  544. -moz-border-radius:3px;
  545. -webkit-border-radius:3px;
  546. background:{color:accents};
  547. font-weight:bold;
  548. }
  549.  
  550. #title a {color:{color:title};}
  551.  
  552. #title a:hover {color:{color:link hover};}
  553.  
  554. .caption {
  555. margin-top:10px;
  556. {block:indexpage}
  557. {block:ifhidecaptions}
  558. display:none;
  559. {/block:ifhidecaptions}
  560. {/block:indexpage}
  561. }
  562.  
  563. /*quote*/
  564.  
  565. #titlequote {
  566. font-size:11px;
  567. font-weight:bold;
  568. padding:10px;
  569. background:{color:Accents};
  570. border-radius:3px;
  571. -moz-border-radius:3px;
  572. -webkit-border-radius:3px;
  573. line-height:150%;
  574. color:{color:title};
  575. }
  576.  
  577. #source {
  578. margin-top:10px;
  579. letter-spacing:1px;
  580. font-size:8px;
  581. text-transform:uppercase;
  582. }
  583.  
  584. /*audio*/
  585.  
  586. .m {
  587. overflow:hidden;
  588. display:block;
  589. width:27px;
  590. height:28px;
  591. border:5px solid {color:accents};
  592. border-radius:5px;
  593. position:absolute;
  594. }
  595.  
  596. .player {
  597. width:25px;
  598. height:25px;
  599. background:white;
  600. border-right:2px solid white;
  601. border-bottom:3px solid white;
  602. }
  603.  
  604. .audioinfo {
  605. text-align:left;
  606. background:{color:accents};
  607. display:block;
  608. padding:10px;
  609. line-height:17px;
  610. border-radius:3px;
  611. -moz-border-radius:3px;
  612. -webkit-border-radius:3px;
  613. letter-spacing:1px;
  614. min-height:17px;
  615. margin-left:45px;
  616. text-transform:uppercase;
  617. font-size:8px;
  618. }
  619.  
  620. /*asks*/
  621.  
  622. .ss img {
  623. width:30px;
  624. height:30px;
  625. display:block;
  626. border-radius:3px;
  627. -moz-border-radius:3px;
  628. -webkit-border-radius:3px;
  629. }
  630.  
  631. .ss {
  632. padding:2px;
  633. display:block;
  634. float:left;
  635. background:{color:accents};
  636. border-radius:3px;
  637. border-radius:3px;
  638. -moz-border-radius:3px;
  639. -webkit-border-radius:3px;
  640. }
  641.  
  642. .q {
  643. margin-left:44px;
  644. min-height:12px;
  645. text-transform:uppercase;
  646. letter-spacing:1px;
  647. font-size:8px;
  648. padding:10px;
  649. text-align:left;
  650. border-radius:3px;
  651. border-radius:3px;
  652. -moz-border-radius:3px;
  653. -webkit-border-radius:3px;
  654. background:{color:accents};
  655. }
  656.  
  657. .q span, .q span a {color:{color:title};}
  658.  
  659. .q a:hover {color:{color:link hover};}
  660.  
  661. .a {margin-top:10px;}
  662.  
  663. /*chat*/
  664.  
  665. .chat ol {
  666. padding:0;
  667. margin:0;
  668. list-style:none;
  669. text-align:left;
  670. }
  671.  
  672. .line {
  673. margin-bottom:5px;
  674. padding:10px;
  675. border-radius:3px;
  676. -moz-border-radius:3px;
  677. -webkit-border-radius:3px;
  678. }
  679.  
  680. .line.odd {background:{color:posts and sidebar};}
  681.  
  682. .line.even {
  683. background:{color:accents};
  684. }
  685.  
  686. .line:last-of-type {margin:0;}
  687.  
  688. .label {
  689. text-transform:uppercase;
  690. font-size:8px;
  691. color:{color:title};
  692. letter-spacing:1px;
  693. }
  694.  
  695. /*permalink and notes*/
  696.  
  697. #permalink, #perm {
  698. border-top:1px solid {color:borders};
  699. margin-top:10px;
  700. font-size:8px;
  701. color:{color:link};
  702. padding-top:10px;
  703. letter-spacing:1px;
  704. text-transform:uppercase;
  705. }
  706.  
  707. #permalink a {display:inline-block;}
  708.  
  709. #permalink span {
  710. float:right;
  711. text-align:right;
  712. }
  713.  
  714. #perm {
  715. padding:10px 0;
  716. margin:10px 0;
  717. border-bottom:1px solid {color:borders};
  718. color:{color:text};
  719. }
  720.  
  721. .tags {
  722. word-break:break-all;
  723. letter-spacing:1px;
  724. color:{color:link};
  725. text-transform:uppercase;
  726. font-size:8px;
  727. {block:ifhidetags}
  728. {block:indexpage}
  729. display:none;
  730. {/block:indexpage}
  731. {/block:ifhidetags}
  732. }
  733.  
  734. .tags a {margin-right:3px;}
  735.  
  736. .pagenotes {
  737. -webkit-animation-name: fade-in;
  738. -webkit-animation-duration: 2s;
  739. text-align:left;
  740. margin-bottom:50px;
  741. padding:10px;
  742. width:calc({text:post width}px - 20px);
  743. background:{color:accents};
  744. border-radius:3px;
  745. -moz-border-radius:3px;
  746. -webkit-border-radius:3px;
  747. font-size:8px;
  748. letter-spacing:1px;
  749. text-transform:uppercase;
  750. max-height:300px;
  751. overflow-y:auto;
  752. }
  753.  
  754. .pagenotes::-webkit-scrollbar{
  755. width:2px;
  756. background-color:{color:accents};
  757. }
  758.  
  759. .pagenotes::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
  760.  
  761. .pagenotes::-webkit-scrollbar-track {background-color:{color:accents};}
  762.  
  763. .pagenotes ol {
  764. margin:0!important;
  765. padding:0!important;
  766. list-style:none;
  767. }
  768.  
  769. .pagenotes img {display:none!important;}
  770.  
  771. .pagenotes li {
  772. list-style-type:none;
  773. padding:0 0 5px 0;
  774. margin:0;
  775. text-align:left;
  776. }
  777.  
  778. .more_notes_link {color:{color:title};}
  779.  
  780. #p {
  781. width:{text:post width}px;
  782. text-align:center;
  783. margin:0 auto 100px auto;
  784. }
  785.  
  786. #load {
  787. font-size:8px;
  788. letter-spacing:1px;
  789. text-transform:uppercase;
  790. display:inline-block;
  791. background:{color:accents};
  792. padding:3px 5px;
  793. color:{color:title};
  794. border-radius:3px;
  795. -moz-border-radius:3px;
  796. -webkit-border-radius:3px;
  797. }
  798.  
  799. #infscr-loading {display:none!important;}
  800.  
  801. .theme {
  802. position:fixed;
  803. bottom:15px;
  804. right:15px;
  805. width:15px;
  806. text-align:center;
  807. font-size:8px;
  808. color:{color:bold};
  809. border:0;
  810. }
  811.  
  812. .theme:hover {border:0;}
  813.  
  814. {CustomCSS}
  815.  
  816. @-webkit-keyframes fade-in {
  817. 0% { opacity: 0; }
  818. 50% { opacity: 0; }
  819. 100% { opacity: 1; }
  820.  
  821. </style>
  822.  
  823.  
  824.  
  825. </head>
  826.  
  827. <body>
  828.  
  829.  
  830.  
  831. <div id="sidebar">
  832. <div class="small">{block:ifshowicon}<a style="cursor:pointer" class="yes"><img src="{image:icon}"/></a>{block:ifshowicon}<a class="see" href="/">{text:nickname}</a></div>
  833. {block:ifshowicon}<a href="/" class="class"><img src="{image:icon}"/></a>{/block:ifshowicon}
  834. <div id="description"><a class="see" href="/">@{name}</a>{Description}</div>
  835. </div>
  836.  
  837. <div id="nh"><div id="nav">
  838. <div id="in" class="links">
  839. <a href="/" id="blogt">{Title}</a><a href="/">{text:home link title}</a><a href="/ask">{text:message link title}</a><a href="/archive">{text:archive link title}</a>{block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}{block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}{block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  840. </div>
  841. </div></div>
  842. <div id="entries">
  843.  
  844.  
  845. {block:Posts}
  846.  
  847. <div class="posts">
  848.  
  849. {block:Quote}
  850. <div id="titlequote">“{Quote}”</div>
  851. {block:Source}<div id="source">{Source}</div>{/block:Source}
  852. {/block:Quote}
  853.  
  854. {block:Text}
  855. {block:Title}<div id="title">{Title}</div>{/block:Title}
  856. <div class="pad">{Body}</div>
  857. {/block:Text}
  858.  
  859. {block:Link}
  860. <div id="title"><a href="{URL}">{Name}</a></div>
  861. {block:Description}{Description}{/block:Description}
  862. {/block:Link}
  863.  
  864. {block:Chat}
  865. {block:Title}<div id="title">{Title}</div>{/block:Title}
  866. <div class="chat">
  867. <ol>{block:Lines}
  868. <li class="line {Alt}">
  869. {block:Label}
  870. <span class="label">
  871. {Label}</span>
  872. {/block:Label}{Line}</li>
  873. {/block:Lines}
  874. </ol></div>
  875. {/block:Chat}
  876.  
  877. {block:Photo}
  878. <div class="hm"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></div>
  879. {/block:Photo}
  880.  
  881. {block:Photoset}
  882. <div class="hm"><div class="set">{photoset}</div></div>
  883. {/block:Photoset}
  884.  
  885. {block:Video}
  886. <div class="v"><div class="video_big">{VideoEmbed-700}</div></div>
  887. {/block:Video}
  888.  
  889. {block:Audio}
  890. <div class="m">
  891. <div class="player">{AudioPlayerWhite}</div>
  892. </div>
  893. <div class="audioinfo">
  894. {block:TrackName}<b>{TrackName}</b>{/block:TrackName}{block:Artist} by {Artist}{/block:Artist}
  895. </div>
  896. {/block:Audio}
  897.  
  898. {block:Answer}
  899. <a class="ss" href="{askerurl}"><img src="{askerportraiturl-128}"/></a>
  900. <div class="q"><span>{Asker} said: </span>{Question}</div>
  901. <div class="a">{Answer}</div>
  902. {/block:Answer}
  903.  
  904. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  905.  
  906. {block:Date}{block:indexpage}
  907. <div id="permalink">
  908. {block:RebloggedFrom}<span><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} / <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}</span>{/block:RebloggedFrom}<a href="{permalink}" title="{timeago}">{month} {dayofmonth}{dayofmonthsuffix}</a>{block:NoteCount} / <a href="{permalink}">{NoteCountwithlabel}</a>{/block:NoteCount} / <a href="{ReblogURL}" target="_blank">reblog</a>
  909. </div>{block:HasTags}<div class="tags">Tags: {block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}{/block:indexpage}
  910. {/block:Date}
  911.  
  912.  
  913. {block:Date}{block:permalinkpage}
  914. <div id="perm">
  915. Posted on <a href="{permalink}" title="{timeago}">{shortmonth} {dayofmonth}{dayofmonthsuffix}</a>{block:notecount} with <a href="{permalink}">{notecountwithlabel}</a>{/block:notecount}
  916. {block:RebloggedFrom}<br>Via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{block:ContentSource} &mdash; source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:ContentSource}{/block:RebloggedFrom}
  917. {block:HasTags}<div class="tags">Tags: {block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}</div>{block:permalinkpage}
  918. {/block:Date}
  919.  
  920. </div>
  921.  
  922.  
  923. {block:PostNotes}
  924. <div class="pagenotes">
  925. {PostNotes}
  926. </div>
  927. {/block:PostNotes}
  928.  
  929.  
  930. {/block:Posts}
  931.  
  932. {block:Pagination}
  933. <div id="pagination">
  934. {block:PreviousPage}<a href="{PreviousPage}">less</a> / {/block:PreviousPage}{block:NextPage}<a href="{NextPage}">more</a>
  935. {/block:NextPage}
  936. </div>
  937. {/block:Pagination}
  938. {block:PermalinkPagination}
  939. <div id="pagination">
  940. {block:NextPost}<a href="{nextpost}">prev post</a>{/block:NextPost}
  941. {block:PreviousPost}<a href="{previouspost}">next post</a>{/block:PreviousPost}
  942. </div>
  943. {/block:PermalinkPagination}
  944.  
  945. </div>
  946.  
  947.  
  948. <a class="theme" title="septim" target="_blank" href="http://farahmir.tumblr.com">&copy;<a>
  949. {block:indexpage}
  950. {block:ifinfinitescroll}
  951. <script src="http://static.tumblr.com/wb7siqo/XYlnbpb15/infs.js"></script>
  952. <script type="text/javascript">
  953. $(document).ready(function(){
  954. $('#entries').infinitescroll({
  955. navSelector : '#pagination',
  956. nextSelector : '#pagination a',
  957. itemSelector : '.posts',
  958. bufferPx : 300,
  959. animate: false,
  960. loading:{
  961. img:"",
  962. msgText:"",
  963. finishedMsg:"No more posts"
  964. }
  965. });
  966.  
  967. });
  968. </script>
  969. {/block:ifinfinitescroll}
  970. <script type="text/javascript">
  971. $(function() {
  972. $('.yes').click(function() {
  973. $('body,html').animate({scrollTop:0},1000);
  974. $('.yes').tooltip({
  975.  
  976. });
  977. });
  978. });
  979. </script>
  980.  
  981. {/block:indexpage}
  982. {block:ContentSource}
  983. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  984. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  985. {/block:SourceLogo}
  986. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  987. {/block:ContentSource}
  988.  
  989. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement