Advertisement
Sebastianstnn

Theme 10: Atlas

Feb 6th, 2015
1,610
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.90 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <!-- THEME 10 BY NEMESISTHEMES/BILLIEPLPER: ATLAS-->
  5.  
  6.  
  7. <!DOCTYPE html>
  8. <head>
  9.  
  10.  
  11. <title>{Title}</title>
  12.  
  13. <link rel="shortcut icon" href="{Favicon}">
  14. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  15. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  16.  
  17. <!--Default Variables-->
  18.  
  19. <meta name="if:Gradient Background" content="0"/>
  20. <meta name="if:Hidden Captions" content="0"/>
  21.  
  22. <meta name="color:Background" content="#f2f2f2"/>
  23. <meta name="color:Text" content="#aaaaaa"/>
  24. <meta name="color:Link" content="#000000"/>
  25. <meta name="color:hover" content="#aaaaaa"/>
  26. <meta name="color:accent" content="#a1a1a1"/>
  27. <meta name="color:scrollbar" content="#ffffff"/>
  28. <meta name="color:scrollbarthingy" content="#a1a1a1"/>
  29. <meta name="color:header" content="#ffffff"/>
  30. <meta name="color:Gradient 1" content="#ffcbf1"/>
  31. <meta name="color:Gradient 2" content="#cd86ff"/>
  32.  
  33.  
  34. <meta name="image:Sidebar Image" content=""/>
  35.  
  36. <meta name="text:secondtitle" content="put your title here"/>
  37. <meta name="text:Link 1 URL" content=/"" />
  38. <meta name="text:Link 1" content="" />
  39. <meta name="text:Link 2 URL" content="/" />
  40. <meta name="text:Link 2" content="" />
  41. <meta name="text:Link 3 URL" content="/" />
  42. <meta name="text:Link 3" content="" />
  43. <meta name="text:Link 4 URL" content="/" />
  44. <meta name="text:Link 4" content="" />
  45. <meta name="text:Link 5 URL" content="/" />
  46. <meta name="text:Link 5" content="" />
  47.  
  48. <!-- jquery for tooltips-->
  49.  
  50.  
  51. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  52.  
  53. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  54.  
  55. <script>
  56.  
  57. (function($){
  58.  
  59. $(document).ready(function(){
  60.  
  61. $("a[title]").style_my_tooltips({
  62.  
  63. tip_follows_cursor:true,
  64.  
  65. tip_delay_time:30,
  66.  
  67. tip_fade_speed:300,
  68.  
  69. attribute:"title"
  70.  
  71. });
  72.  
  73. });
  74.  
  75. })(jQuery);
  76.  
  77. </script>
  78.  
  79.  
  80.  
  81.  
  82. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
  83. <script>
  84. $(window).scroll(function() {
  85. var scrollTopVal = $(this).scrollTop();
  86. if ( scrollTopVal > 400 ) {
  87. $('#sidebar').css({'opacity':'1'});
  88.  
  89. } else {
  90. $('#sidebar').css({'opacity':'0'});
  91. }
  92. });
  93. </script>
  94.  
  95.  
  96. <script>
  97. $(window).scroll(function() {
  98. var scrollTopVal = $(this).scrollTop();
  99. if ( scrollTopVal > 400 ) {
  100. $('#links2').css({'opacity':'1'});
  101.  
  102. } else {
  103. $('#links2').css({'opacity':'0'});
  104. }
  105. });
  106. </script>
  107.  
  108.  
  109. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  110.  
  111.  
  112.  
  113. <!--CSS customization here. -->
  114.  
  115. <style type="text/css">
  116.  
  117. #s-m-t-tooltip{
  118. max-width:300px;
  119. z-index:10;
  120. margin:24px 12px 7px 12px;
  121. padding:6px;
  122. background:{color:accent};
  123. font-size:11px;
  124. color:#fff;
  125. }
  126.  
  127.  
  128.  
  129. pre {
  130. white-space: pre-wrap;
  131. white-space: -moz-pre-wrap;
  132. white-space: -pre-wrap;
  133. white-space: -o-pre-wrap;
  134. word-wrap: break-word;
  135. }
  136.  
  137.  
  138.  
  139. ::selection {background-color:{color:accent};}
  140.  
  141. ::-webkit-scrollbar { width: 7px; height: 4px; }
  142. ::-webkit-scrollbar-button:start:decrement,
  143. ::-webkit-scrollbar-button:end:increment { height: 0px; display: block; background: #fff; }
  144. ::-webkit-scrollbar-track-piece { background: {color:scrollbar}; }
  145. ::-webkit-scrollbar-thumb {height: 50px; background-color:{color:scrollbarthingy} }
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152. /*basics*/
  153. blockquote {padding:5px 0 5px 15px;
  154. border-left:1px solid {color:text};
  155. margin-left:15px;
  156. }
  157.  
  158. body {
  159. {block:ifGradientBackground}
  160. background: {color:Gradient 1}; /* Old browsers */
  161. background: -moz-linear-gradient(top, {color:Gradient 1} 0%, {color:Gradient 2} 100%); /* FF3.6+ */
  162. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,{color:Gradient 1}), color-stop(100%,{color:Gradient 2})); /* Chrome,Safari4+ */
  163. background: -webkit-linear-gradient(top, {color:Gradient 1} 0%,{color:Gradient 2} 100%); /* Chrome10+,Safari5.1+ */
  164. background: -o-linear-gradient(top, {color:Gradient 1} 0%,{color:Gradient 2} 100%); /* Opera 11.10+ */
  165. background: -ms-linear-gradient(top, {color:Gradient 1} 0%,{color:Gradient 2} 100%); /* IE10+ */
  166. background: linear-gradient(to bottom, {color:Gradient 1} 0%,{color:Gradient 2} 100%); /* W3C */
  167. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’{color:Gradient 1}’, endColorstr=’{color:Gradient 2}’,GradientType=0 ); /* IE6-9 */
  168. background-attachment: fixed;
  169. {/block:ifGradientBackground}
  170. {block:ifnotGradientBackground}
  171. background:{color:background}
  172. {/block:ifnotGradientBackground}
  173. color:{color:text};
  174. font-family:'consolas';
  175. font-size:11px;
  176. text-align:justify;
  177. margin:0;
  178. line-height:16px;}
  179.  
  180.  
  181. a {
  182. color:{color:link};
  183. text-decoration:none;
  184. }
  185.  
  186. a:hover {
  187. text-decoration:underline;}
  188.  
  189. img{opacity:1;
  190. border:none;
  191. text-decoration:none}
  192.  
  193.  
  194. small {
  195. font-size:9px;}
  196.  
  197. big {
  198. font-size:12px;}
  199.  
  200.  
  201. #title {font-size:12px;
  202. line-height:18px;
  203. font-weight:bold;
  204. margin-bottom:10px;
  205. text-transform:uppercase;
  206. text-align:left;}
  207.  
  208.  
  209. /*header*/
  210. #header {text-align:center;
  211. position:center;
  212. margin-left:auto;
  213. margin-left:auto;
  214. margin-top:50px;
  215. border-radius:10px;
  216. padding:10px;
  217. width:400px;
  218. background-color:{color:header};
  219. }
  220.  
  221.  
  222.  
  223.  
  224. #secondtitle {font-size:18px;
  225. font-weight:bold;
  226. text-align:left;
  227. display:block;
  228. letter-spacing:5px;
  229. -webkit-transition:all 0.6s;
  230. -moz-transition:all 0.6s;
  231. -o-transition:all 0.6s;
  232. transition:all 0.6s;
  233. }
  234.  
  235. #secondtitle:hover {
  236. letter-spacing:2px;
  237. -webkit-transition:all 0.6s;
  238. -moz-transition:all 0.6s;
  239. -o-transition:all 0.6s;
  240. transition:all 0.6s;
  241. }
  242.  
  243. #links {
  244. text-align:right;
  245. line-height:16px;
  246. text-transform:lowercase;
  247. -webkit-transition:all 0.2s;
  248. -moz-transition:all 0.2s;
  249. -o-transition:all 0.2s;
  250. transition:all 0.2s;
  251. }
  252.  
  253.  
  254. #links a {
  255. margin-right:5px;
  256. display:inline-block;
  257. margin-bottom:5px;
  258. padding:2px;
  259. }
  260.  
  261. #links a:hover {
  262. text-decoration:none;
  263. box-shadow:1px 1px 1px {color:accent};
  264. -webkit-transition:all 0.2s;
  265. -moz-transition:all 0.2s;
  266. -o-transition:all 0.2s;
  267. transition:all 0.2s;
  268. }
  269.  
  270. #description {
  271. margin:20px 0;
  272. }
  273.  
  274.  
  275. #sidebar {
  276. opacity:0;
  277. margin-left:-330px;
  278. text-align:left;
  279. padding:10px;
  280. background-color:{color:header};
  281. bottom:5%;
  282. width:200px;
  283. position:fixed;
  284. border-radius:10px;
  285. -webkit-transition:all 0.6s;
  286. -moz-transition:all 0.6s;
  287. -o-transition:all 0.6s;
  288. transition:all 0.6s;
  289. }
  290.  
  291. #links2 {
  292. padding-top:5px;
  293. text-align:left;
  294. -webkit-transition:all 0.6s;
  295. -moz-transition:all 0.6s;
  296. -o-transition:all 0.6s;
  297. transition:all 0.6s;
  298. }
  299.  
  300. #links2:hover {
  301.  
  302. -webkit-transition:all 0.6s;
  303. -moz-transition:all 0.6s;
  304. -o-transition:all 0.6s;
  305. transition:all 0.6s;
  306. }
  307.  
  308.  
  309.  
  310. /*pagination*/
  311. #pagination {
  312. margin:50px 0;
  313. text-transform:lowercase;
  314. font-weight:bold;
  315. text-align:center;
  316. letter-spacing:6px;
  317. -webkit-transition:all 0.6s;
  318. -moz-transition:all 0.6s;
  319. -o-transition:all 0.6s;
  320. transition:all 0.6s;
  321. }
  322.  
  323. #pagination a {
  324. padding:0 15px;
  325. -webkit-transition:all 0.6s;
  326. -moz-transition:all 0.6s;
  327. -o-transition:all 0.6s;
  328. transition:all 0.6s;
  329. }
  330.  
  331. #pagination a:hover {
  332. text-decoration:none;
  333. letter-spacing:2px;
  334. -webkit-transition:all 0.6s;
  335. -moz-transition:all 0.6s;
  336. -o-transition:all 0.6s;
  337. transition:all 0.6s;
  338. }
  339.  
  340. /*container*/
  341. #con {
  342. left:50%;
  343. margin-left:-200px;
  344. position:absolute;
  345. }
  346.  
  347.  
  348.  
  349. /*posts*/
  350.  
  351. #entries {
  352. margin-top:75px;
  353. width:400px;
  354. }
  355.  
  356.  
  357.  
  358. #posts {
  359. width:400px;
  360. {block:IndexPage}
  361. margin-bottom:75px;
  362. {/block:IndexPage}
  363. {block:PermalinkPage}
  364. margin-bottom:50px;
  365. {/block:PermalinkPage}
  366. border-radius:10px;
  367. padding:10px;
  368. background-color:{color:header};
  369. }
  370.  
  371. .shadow {
  372. position:relative;
  373. }
  374.  
  375. .shadow:before, .shadow:after {
  376. z-index: -1;
  377. position: absolute;
  378. content: "";
  379. bottom: 15px;
  380. left: 10px;
  381. width: 50%;
  382. top: 80%;
  383. max-width:300px;
  384. background: #777;
  385. -webkit-box-shadow: 0 15px 10px #777;
  386. -moz-box-shadow: 0 15px 10px #777;
  387. box-shadow: 0 15px 10px #777;
  388. -webkit-transform: rotate(-3deg);
  389. -moz-transform: rotate(-3deg);
  390. -o-transform: rotate(-3deg);
  391. -ms-transform: rotate(-3deg);
  392. transform: rotate(-3deg);
  393. }
  394.  
  395. .shadow:after {
  396. -webkit-transform: rotate(3deg);
  397. -moz-transform: rotate(3deg);
  398. -o-transform: rotate(3deg);
  399. -ms-transform: rotate(3deg);
  400. transform: rotate(3deg);
  401. right: 10px;
  402. left: auto;
  403. }
  404.  
  405.  
  406. #posts img {
  407. max-width:420px;
  408. border-radius:10px;
  409. }
  410.  
  411. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  412. .caption {width:100%;
  413. margin-top:10px;
  414.  
  415. }
  416.  
  417. /*quote*/
  418.  
  419. #titlequote{text-align:justify;
  420. font-size:14px;
  421. line-height:18px;
  422. font-weight:bold;
  423. }
  424. #source {
  425. margin-top:15px;
  426. text-transform:italic;
  427. text-align:center;
  428. margin-left:15px;
  429. background-color:{color:accent};
  430. padding:5px;
  431. border-radius:5px;
  432. max-width:300px;
  433. }
  434.  
  435. /*audio*/
  436.  
  437. .playerbuttonbg {
  438. position: absolute;
  439. left: 20px;
  440. top: 20px;
  441. width: 19px;
  442. height: 19px;
  443. background-color: #ffffff;
  444. padding: 10px;
  445. -webkit-border-radius: 40px;
  446. -moz-border-radius: 40px;
  447. border-radius: 40px;
  448. opacity: .4;
  449. filter: alpha(opacity=40);
  450. -moz-opacity: 0.4;
  451. -khtml-opacity: 0.4;
  452. transition: opacity .7s ease-in-out;
  453. -moz-transition: opacity .7s ease-in-out;
  454. -webkit-transition: opacity .7s ease-in-out;
  455. }
  456.  
  457. .playerbuttonbg:hover {
  458. opacity: 1;
  459. filter: alpha(opacity=100);
  460. -moz-opacity: 1;
  461. -khtml-opacity: 1;
  462. }
  463.  
  464. .newplayerbutton {
  465. position: relative;
  466. width: 19px;
  467. height: 19px;
  468. overflow: hidden;
  469. }
  470.  
  471. .playerbuttonhug {
  472. position: absolute;
  473. top: -18px;
  474. left: -7px;
  475. }
  476.  
  477. .tumblr_audio_player {
  478. height: 90px;
  479. width: 270px;
  480. -moz-transform: scale(0.60, 0.60);
  481. -webkit-transform: scale(0.60, 0.60);
  482. -o-transform: scale(0.60, 0.60);
  483. -ms-transform: scale(0.60, 0.60);
  484. transform: scale(0.60, 0.60);
  485. -moz-transform-origin: top left;
  486. -webkit-transform-origin: top left;
  487. -o-transform-origin: top left;
  488. -ms-transform-origin: top left;
  489. transform-origin: top left;
  490. }
  491.  
  492. .audioimgwrapper {
  493. position: absolute;
  494. left: 0px;
  495. top: 0px;
  496. -webkit-border-radius: 40px;
  497. -moz-border-radius: 40px;
  498. border-radius: 40px;
  499. overflow: hidden;
  500. width: 79px;
  501. height: 79px;
  502. }
  503.  
  504. .audioimgwrapper img {
  505. width: 100%;
  506. height: auto;
  507. -webkit-border-radius: 40px;
  508. -moz-border-radius: 40px;
  509. border-radius: 40px;
  510. }
  511.  
  512. .trackdetails {
  513. width: auto;
  514. display:inline-block;
  515. padding:10px;
  516. border-radius:10px;
  517. background-color:{color:accent};
  518. margin-left: 120px;
  519. min-height: 85px;
  520. }
  521.  
  522. .audiowrapper {
  523. position: relative;
  524. display:inline-block;
  525. }
  526.  
  527.  
  528. /*asks*/
  529. .q {margin-bottom:10px;
  530. text-transform:none;
  531. background:{color:accent};
  532. padding:10px;
  533. border-radius:10px;
  534. }
  535. .as {
  536. font-weight:bold;
  537. text-transform:uppercase;
  538. }
  539.  
  540. .a {
  541. margin-top:10px;
  542. }
  543.  
  544.  
  545. .arrow-down {
  546. width: 0;
  547. height: 0;
  548. border-left: 15px solid transparent;
  549. border-right: 15px solid transparent;
  550. margin-left:25px;
  551. margin-top:-10px;
  552. border-top: 15px solid {color:accent};
  553.  
  554. }
  555.  
  556.  
  557.  
  558.  
  559. /*chat*/
  560.  
  561. .chat ol {
  562. padding:0;
  563. list-style:none;
  564. }
  565. .line {padding:5px 0;}
  566.  
  567. .label {font-weight:bold;
  568. }
  569.  
  570.  
  571.  
  572.  
  573.  
  574. /*permalink and notes*/
  575.  
  576. #permalink {
  577. margin-top:15px;
  578. font-size:9px;
  579. text-transform:uppercase;
  580. }
  581. #permalink a {margin-right:10px;
  582. }
  583.  
  584.  
  585. .tags {
  586. word-break:break-all;
  587. text-align:right;
  588. font-size:9px;
  589. opacity:0;
  590. -webkit-transition:all 0.6s;
  591. -moz-transition:all 0.6s;
  592. -o-transition:all 0.6s;
  593. transition:all 0.6s;
  594. }
  595.  
  596. #posts:hover .tags {
  597. opacity:1;
  598. -webkit-transition:all 0.6s;
  599. -moz-transition:all 0.6s;
  600. -o-transition:all 0.6s;
  601. transition:all 0.6s;
  602. }
  603.  
  604. .pagenotes {
  605. {block:IndexPage}
  606. display: none!important;
  607. {/block:IndexPage}
  608. width:400px;
  609. text-align:left;
  610.  
  611. }
  612. .pagenotes img {
  613. display:none!important;}
  614. .pagenotes li {
  615. list-style-type:none;
  616. padding:5px 0px;
  617. text-align:left;
  618. margin:0 0 0 -40px;
  619. }
  620.  
  621.  
  622. #cred {
  623. position:fixed;
  624. bottom:10px;
  625. right:15px;
  626. font-size:10px;
  627. padding:5px;
  628. color:{color:text};
  629. transition-duration: 0.8s;
  630. -moz-transition-duration: 0.8s;
  631. -webkit-transition-duration: 0.8s;
  632. -o-transition-duration: 0.8s;
  633. }
  634.  
  635. #cred:hover {
  636. border-radius:100%;
  637. background-color:{color:accent};
  638. transition-duration: 0.8s;
  639. -moz-transition-duration: 0.8s;
  640. -webkit-transition-duration: 0.8s;
  641. -o-transition-duration: 0.8s;
  642. }
  643.  
  644.  
  645.  
  646. {CustomCSS}
  647.  
  648.  
  649. </style>
  650.  
  651.  
  652.  
  653. </head>
  654.  
  655. <body>
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662. <div id="con">
  663.  
  664. <div id="sidebar" class="shadow">
  665. <div id="secondtitle">{text:secondtitle}</div>
  666. <div id="links2">
  667. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  668. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  669. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}
  670. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a> {/block:ifLink4}
  671. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a> {/block:ifLink5}
  672. </div>
  673.  
  674. </div>
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681. <div id="header" class="shadow">
  682. <div id="secondtitle">{text:secondtitle}</div>
  683. <div id="links">
  684. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  685. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  686. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}
  687. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a> {/block:ifLink4}
  688. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a> {/block:ifLink5}
  689. </div>
  690.  
  691. <div id="description">{Description}</div>
  692.  
  693.  
  694.  
  695. </div>
  696.  
  697.  
  698.  
  699.  
  700.  
  701. <div id="entries">
  702.  
  703. {block:Posts}
  704. <div id="posts" class="shadow">
  705.  
  706.  
  707. {block:Quote}
  708.  
  709.  
  710. <div id="titlequote">“{Quote}”</div>
  711. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  712. {/block:Quote}
  713.  
  714.  
  715.  
  716. {block:Text}
  717.  
  718. {block:Title}
  719. <div id="title">{Title}</div>{/block:Title}
  720. {Body}
  721. {/block:Text}
  722.  
  723. {block:Link}
  724. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  725. {/block:Link}
  726.  
  727. {block:Chat}
  728. {block:Title}
  729. <h1>{Title}</h1>
  730. {/block:Title}
  731. <div class="chat">
  732. <ol>{block:Lines}
  733. <li class="line {Alt}">
  734. {block:Label}
  735. <span class="label">
  736. {Label}</span>
  737. {/block:Label}{Line}</li>
  738. {/block:Lines}
  739. </ol></div>
  740. {/block:Chat}
  741.  
  742. {block:Photo}
  743. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  744. {/block:Photo}
  745.  
  746. {block:Photoset}
  747. {Photoset-400}
  748. {/block:Photoset}
  749.  
  750. {block:Video}
  751. {Video-400}
  752. {/block:Video}
  753.  
  754.  
  755. {block:AudioPlayer}
  756. <div class="audiowrapper">
  757. {block:AlbumArt}
  758. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  759. {/block:AlbumArt}
  760.  
  761. <div class="playerbuttonbg">
  762. <div class="newplayerbutton">
  763. <div class="playerbuttonhug">
  764.  
  765. {AudioPlayerWhite}
  766.  
  767. </div>
  768. </div>
  769. </div>
  770.  
  771. <div class="trackdetails">
  772.  
  773. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  774. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  775. {block:Album}Album: {Album}{/block:Album}<br/>
  776. {PlayCountWithLabel}
  777.  
  778. </div>
  779. </div>
  780. {/block:AudioPlayer}
  781.  
  782. {block:Answer}
  783. <div class="q">
  784. <div class="as">{Asker} said: </div>
  785. {Question}</div>
  786. <div class="arrow-down"></div>
  787. <div class="a">{Answer}</div>
  788. {/block:Answer}
  789.  
  790.  
  791. {block:IfNotHiddenCaptions}
  792. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  793. {/block:IfNotHiddenCaptions}
  794.  
  795. {block:IfHiddenCaptions}
  796. {block:PermalinkPage} <div id="permalink">
  797. <a href="{Permalink}" >{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}</a>
  798. </div>{/block:PermalinkPage}
  799. {/block:IfHiddenCaptions}
  800.  
  801. {block:Date}
  802. <div id="permalink">
  803. <a href="{Permalink}" >{12Hour}:{Minutes} {AmPm}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  804. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  805. </div>
  806. {/block:Date}
  807.  
  808.  
  809.  
  810. </div>
  811.  
  812.  
  813.  
  814. {block:PostNotes}
  815. <div class="pagenotes">
  816. {PostNotes}
  817. </div>
  818. {/block:PostNotes}
  819.  
  820.  
  821.  
  822. {/block:Posts}
  823.  
  824. <div id="pagination">
  825. {block:Pagination}
  826. {block:PreviousPage}
  827. <a href="{PreviousPage}">&larr; previous </a>
  828. {/block:PreviousPage}
  829.  
  830.  
  831. {block:NextPage}
  832. <a href="{NextPage}">next &rarr;</a>
  833. {/block:NextPage}
  834. {/block:Pagination}
  835. </div>
  836.  
  837.  
  838.  
  839. </div>
  840.  
  841. </div>
  842.  
  843.  
  844. {block:ContentSource}
  845. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  846. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  847. {/block:SourceLogo}
  848. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  849. {/block:ContentSource}
  850.  
  851. <div id="cred"><a href="http://nemesisthemes.tumblr.com" title="nemesisthemes"><i class="fa fa-code"></i></div>
  852.  
  853. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement