dansmilth

Fansite Theme #5

Oct 6th, 2015
4,616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!----------- FANSITE THEME 5 by clumhood :> ------------>
  5.  
  6. <title>{Title}</title>
  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.  
  12. <!--------DEFAULT VARIABLES-------->
  13.  
  14. <meta name="color:background" content="#ffffff"/>
  15. <meta name="color:text" content="#000000"/>
  16. <meta name="color:links" content="#626262"/>
  17. <meta name="color:links hover" content="#a5a5a5"/>
  18. <meta name="color:navigation" content="#000000"/>
  19. <meta name="color:nav links" content="#ffffff"/>
  20. <meta name="color:nav links hover" content="#d31e1e"/>
  21. <meta name="color:question" content="#f8f8f8"/>
  22. <meta name="color:scrollbar" content="#000000"/>
  23. <meta name="color:scrollbar background" content="#ffffff"/>
  24. <meta name="color:sidebar" content="#ffffff"/>
  25. <meta name="color:titles" content="#000000"/>
  26. <meta name="color:titles bg" content="#ffffff"/>
  27. <meta name="color:titles border" content="#eeeeee"/>
  28. <meta name="color:description bg" content="#000000"/>
  29. <meta name="color:description text" content="#6b6b6b"/>
  30. <meta name="color:content background" content="#f8f8f8"/>
  31. <meta name="color:posts background" content="#ffffff"/>
  32. <meta name="color:events date" content="#eeeeee"/>
  33.  
  34.  
  35. <meta name="image:header" content=""/>
  36. <meta name="image:sidebar" content=""/>
  37.  
  38. <meta name="text:link 1 title" content="link"/>
  39. <meta name="text:link 1 url" content=""/>
  40. <meta name="text:link 2 title" content="link"/>
  41. <meta name="text:link 2 url" content=""/>
  42. <meta name="text:link 3 title" content="link"/>
  43. <meta name="text:link 3 url" content=""/>
  44. <meta name="text:link 4 title" content="link"/>
  45. <meta name="text:link 4 url" content=""/>
  46.  
  47.  
  48. <!----------------SCRIPTS---------------->
  49.  
  50. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  51. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  52. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  53. <script>
  54. (function($){
  55. $(document).ready(function(){
  56. $("[title]").style_my_tooltips({
  57. tip_follows_cursor:true,
  58. tip_delay_time:200,
  59. tip_fade_speed:300
  60. });
  61. });
  62. })(jQuery);
  63. </script>
  64.  
  65. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  66.  
  67. <link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
  68.  
  69. <script type="text/javascript">
  70. WebFontConfig = {
  71. google: { families: [ 'Roboto:400,400italic,500,500italic,700,700italic,900,900italic:latin' ] }
  72. };
  73. (function() {
  74. var wf = document.createElement('script');
  75. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  76. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  77. wf.type = 'text/javascript';
  78. wf.async = 'true';
  79. var s = document.getElementsByTagName('script')[0];
  80. s.parentNode.insertBefore(wf, s);
  81. })(); </script>
  82.  
  83. <style type="text/css">
  84.  
  85. /*----------SCROLLBAR---------*/
  86.  
  87. ::-webkit-scrollbar {
  88. background-color: {color:scrollbar bg};
  89. height:8px;
  90. width:5px;
  91. }
  92.  
  93. ::-webkit-scrollbar-thumb:vertical {
  94. background-color:{color:scrollbar};
  95. height:50px;
  96. }
  97.  
  98. ::-webkit-scrollbar-thumb:horizontal {
  99. background-color:{color:scrollbar bg};
  100. height:8px;
  101. }
  102.  
  103. /*----------TOOLTIPS---------*/
  104.  
  105. #s-m-t-tooltip {
  106. max-width:300px;
  107. margin:15px;
  108. padding:5px;
  109. border:1px solid #eeeeee;
  110. border-radius:0px;
  111. background:#ffffff;
  112. color:{color:text};
  113. z-index:999999;
  114. font-size:7px;
  115. font-style:none;
  116. letter-spacing:2px;
  117. font-family:arial;
  118. text-transform:uppercase;
  119. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  120. }
  121.  
  122. /*----------BASICS---------*/
  123.  
  124. body {
  125. background:{color:background};
  126. color:{color:text};
  127. font-family:'roboto', sans-serif;
  128. font-size:11px;
  129. line-height:150%;
  130. margin:0;
  131. text-align:left;
  132. }
  133.  
  134. small {
  135. font-size:11px;
  136. }
  137.  
  138. a {
  139. color:{color:links};
  140. text-decoration:none;
  141. }
  142.  
  143. a:hover {
  144. color:{color:links hover};
  145. transition:1s;
  146. -webkit-transition:1s;
  147. -moz-transition:1s;
  148. -o-transition:1s;
  149. }
  150.  
  151. img {
  152. opacity:1;
  153. text-decoration:none;
  154. }
  155.  
  156. h1 {
  157. font-size:14px;
  158. font-weight:bold;
  159. font-family:arial;
  160. line-height:150%;
  161. text-transform:uppercase;
  162. }
  163.  
  164. blockquote {
  165. padding-left:10px;
  166. margin:10px;
  167. border-left:1px solid #eee;
  168. }
  169.  
  170. /*----------HEADER---------*/
  171.  
  172. .header {
  173. width:100%;
  174. background:{color:navigation};
  175. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  176. }
  177.  
  178.  
  179. .links {
  180. text-align:center;
  181. padding:30px;
  182. text-transform:uppercase;
  183. font-size:15px;
  184. font-weight:bold;
  185. }
  186.  
  187. .links a {
  188. color:{color:nav links};
  189. margin-right:40px;
  190. }
  191.  
  192. .links a:hover {
  193. color:{color:nav links hover};
  194. }
  195.  
  196. /*----------SIDEBAR---------*/
  197.  
  198. .sidebar {
  199. position:absolute;
  200. background:{color:sidebar};
  201. width:350px;
  202. margin-top:50px;
  203. margin-left:20px;
  204. box-shadow:0px 3px 10px rgba(0,0,0,.15)
  205. }
  206.  
  207.  
  208. .cat {
  209. padding:20px;
  210. }
  211.  
  212. .cti {
  213. text-transform:uppercase;
  214. font-size:15px;
  215. font-weight:bold;
  216. padding:10px;
  217. border:1px solid {color:titles border};
  218. margin-bottom:20px;
  219. color:{color:titles};
  220. background:{color:titles bg};
  221. }
  222.  
  223. .welcome {
  224. background:{color:description bg};
  225. color:{color:description text};
  226. text-align:justify;
  227. padding:20px;
  228. margin:5px;
  229. margin-top:0px;
  230. font-size:12px;
  231. }
  232.  
  233.  
  234. .projects {
  235. padding:5px;
  236. text-align:left;
  237. margin-top:0px;
  238.  
  239. }
  240.  
  241. .projects img {
  242. padding:5px;
  243. width:100px;
  244. float:left;
  245. margin-right:10px;
  246. border:1px solid #eee;
  247.  
  248. }
  249.  
  250. .pinfo {
  251. height:150px;
  252. margin-top:50px;
  253. }
  254.  
  255.  
  256. .date {
  257. float:left;
  258. padding:10px;
  259. margin-right:10px;
  260. background:{color:events date};
  261. text-transform:uppercase;
  262. font-weight:bold;
  263. }
  264.  
  265. .e {
  266. padding:10px;
  267. border-bottom:1px solid #eee;
  268. }
  269.  
  270.  
  271. .affiliates {
  272. width:300px;
  273. padding:5px;
  274. text-align:left;
  275. text-transform:uppercase;
  276. font-size:9px;
  277. letter-spacing:1px;
  278. margin-top:20px;
  279. }
  280.  
  281. .affiliates img {
  282. padding:5px;
  283. width:50px;
  284.  
  285.  
  286. }
  287.  
  288. .sinfo {
  289. margin:20px;
  290. text-align:justify;
  291. }
  292.  
  293.  
  294. /*----------PAGINATION---------*/
  295.  
  296. #pagi {
  297. margin-top:40px;
  298. margin-left:750px;
  299. font-family:'roboto', sans-serif;
  300. text-transform:uppercase;
  301. font-size:20px;
  302. font-weight:bold;
  303. padding:20px;
  304. }
  305.  
  306. /*----------POSTS---------*/
  307.  
  308. .container {
  309. width:1060px;
  310. margin-left:calc(50% - 550px);
  311. background:{color:content background};
  312. padding:20px;
  313. margin-top:-10px;
  314. box-shadow:0px 3px 10px rgba(0,0,0,.15)
  315. }
  316.  
  317.  
  318. .entries {
  319. margin-top:50px;
  320. width:500px;
  321. margin-left:500px;
  322. background:#f8f8f8;
  323.  
  324. }
  325.  
  326. .posts {
  327. width:500px;
  328. margin-bottom:70px;
  329. background:{color:posts background};
  330. padding:20px;
  331. box-shadow:0px 3px 10px rgba(0,0,0,.15)
  332. }
  333.  
  334.  
  335. /*----------QUOTE---------*/
  336.  
  337. .quote {
  338. padding:10px;
  339. font-size:15px;
  340. }
  341.  
  342. .quotesource {
  343. padding:10px;
  344. text-align:center;
  345. }
  346.  
  347. /*----------CHAT---------*/
  348.  
  349. .chat {
  350. line-height:150%;
  351. list-style:none;
  352. }
  353.  
  354. .line.odd {
  355. padding:10px;
  356. background:#f8f8f8;
  357. }
  358.  
  359. .line.even {
  360. padding:10px;
  361. }
  362.  
  363. .label {
  364. text-transform:uppercase;
  365. font-size:10px;
  366. letter-spacing:1px;
  367. font-weight:bold;
  368. }
  369.  
  370. /*----------AUDIO---------*/
  371.  
  372. .cover {
  373. position:relative;
  374. z-index:1;
  375. max-width:100px;
  376. padding:10px;
  377. float:left;
  378. }
  379.  
  380. .playbutton {
  381. width:20px;
  382. height:30px;
  383. overflow:hidden;
  384. position:relative;
  385. z-index:2;
  386.  
  387. }
  388.  
  389.  
  390. .playbox {
  391. background-color:#000;
  392. position:absolute;
  393. z-index:2;
  394. padding:15px 24px 13px 16px;
  395. margin-top:30px;
  396. margin-left:30px;
  397. opacity:0.5;
  398. }
  399.  
  400. .trackdetails {
  401. padding:10px;
  402. width:auto;
  403. height:100px;
  404. margin-top:10px;
  405. margin-left:100px;
  406. }
  407.  
  408. /*----------ASK---------*/
  409.  
  410. .question {
  411. padding:10px;
  412. background:{color:question};
  413. }
  414.  
  415.  
  416. .asker {
  417. text-transform:uppercase;
  418. }
  419.  
  420. .answer {
  421. margin:10px;
  422. }
  423.  
  424. /*----------INFO---------*/
  425.  
  426. .info {
  427. padding:10px;
  428. border-top:1px solid #eee;
  429. margin-top:25px;
  430. font-family:arial;
  431. }
  432.  
  433.  
  434. .tags {
  435. margin-left:10px;
  436. margin-top:-10px;
  437. }
  438.  
  439. .tags a {
  440. margin-right:10px;
  441. font-family:arial;
  442. }
  443.  
  444. /*----------POST NOTES---------*/
  445.  
  446. ol.notes {
  447. padding:0px;
  448. margin:25px 0px 0px -10px;
  449. list-style-type:none;
  450. }
  451.  
  452. ol.notes li.note {
  453. padding:10px;
  454. }
  455.  
  456. ol.notes li.note img.avatar {
  457. vertical-align:-4px;
  458. margin-right:10px;
  459. width:16px;
  460. height:16px;
  461. }
  462.  
  463. ol.notes li.note span.action {
  464. font-weight:none;
  465. }
  466.  
  467. ol.notes li.note .answer_content {
  468. font-weight:normal;
  469. }
  470.  
  471. ol.notes li.note blockquote {
  472. padding:4px 10px;
  473. margin:10px 0px 0px 25px;
  474. }
  475.  
  476. ol.notes li.note blockquote a {
  477. text-decoration:none;
  478. }
  479.  
  480. /*----------CREDIT---------*/
  481.  
  482. .credit {
  483. font-size:8px;
  484. position:fixed;
  485. font-weight:bold;
  486. bottom:5px;
  487. right:15px;
  488. z-index:10;
  489. text-align:right;
  490. letter-spacing:1px;
  491. padding:2px;
  492. }
  493.  
  494. .credit a {
  495. color:{color:links};
  496. text-decoration:none;
  497. }
  498.  
  499. .credit a:hover {
  500. color:{color:links hover};
  501. text-decoration:none;
  502. }
  503.  
  504. </style>
  505. </head>
  506.  
  507. <body>
  508.  
  509. <div class="credit">
  510. <a title="theme" href="http://clumhood.tumblr.com/" target="_blank">CH</a></div>
  511.  
  512.  
  513. <div class="header">
  514.  
  515. <div class="links">
  516. <a href="/"><i class="fa fa-home"></i>&nbsp; Home</a>
  517. <a href="/ask"><i class="fa fa-envelope"></i>&nbsp; Inbox</a>
  518. <a href="{text:link 1 url}"><i class="fa fa-list"></i>&nbsp; {text:link 1 title}</a>
  519. <a href="{text:link 2 url}"><i class="fa fa-pencil-square-o"></i>&nbsp; {text:link 2 title}</a>
  520. <a href="{text:link 3 url}"><i class="fa fa-heart"></i>&nbsp; {text:link 3 title}</a>
  521. <a href="{text:link 4 url}"><i class="fa fa-star"></i>&nbsp; {text:link 4 title}</a>
  522. </div>
  523.  
  524.  
  525. </div>
  526.  
  527. <center><img src="{image:header}"></center>
  528.  
  529. <div class="container">
  530.  
  531. <div class="sidebar">
  532.  
  533.  
  534.  
  535. <!-- WELCOME -->
  536.  
  537. <div class="cat">
  538. <div class="cti">Welcome<i class="fa fa-home" style="float:right;"></i></div>
  539. <center><img src="{image:sidebar}"></center>
  540. <div class="welcome">{Description}</div>
  541. </div>
  542.  
  543.  
  544. <!-- UPCOMING EVENTS -->
  545.  
  546. <div class="cat">
  547. <div class="cti">Upcoming events<i class="fa fa-calendar" style="float:right;"></i></div>
  548.  
  549. <div class="date">September 10</div><div class="e">02 Academy, London</div><br>
  550.  
  551. <div class="date">September 11</div><div class="e">KoKo, London</div><br>
  552.  
  553. <div class="date">September 27</div><div class="e">Life is Beautiful</div><br>
  554.  
  555. <div class="date">September 30</div><div class="e">Badlands: San Diego</div><br>
  556.  
  557. </div>
  558.  
  559.  
  560. <!-- PROJECTS -->
  561.  
  562. <div class="cat">
  563. <div class="cti">Projects<i class="fa fa-camera-retro" style="float:right;"></i></div>
  564.  
  565.  
  566. <div class="projects">
  567.  
  568. <img src="http://static.tumblr.com/zy3qjic/0GRnvsvra/4.png">
  569. <div class="pinfo"><ul> <b>Room 93</b><br>
  570. <b>Label</b>: Astralwerks<br>
  571. <b>Purchase</b>: <a href="https://itunes.apple.com/us/album/room-93-ep/id930637389">iTunes</a> | <a href="http://www.amazon.com/Room-93-EP-Halsey/dp/B00T4LLK46/ref=sr_1_1?ie=UTF8&qid=1434666411&sr=8-1&keywords=room+93+halsey">Amazon</a><br>
  572. <b>Released</b>: October 27th, 2014</ul></div>
  573.  
  574.  
  575. <img src="http://static.tumblr.com/zy3qjic/kRBnvsw8u/5.png">
  576. <div class="pinfo"><ul> <b>Badlands</b><br>
  577. <b>Label</b>: Astralwerks<br>
  578. <b>Purchase</b>: <a href="https://itunes.apple.com/us/album/badlands-deluxe/id999626332">iTunes</a> | <a href="http://www.iamhalsey.com/badlands">Official</a><br>
  579. <b>Released</b>: August 28th, 2015</ul></div>
  580.  
  581.  
  582. <img src="http://static.tumblr.com/zy3qjic/RnKnvswhd/6.png">
  583. <div class="pinfo">
  584. <ul> <b>Badlands Tour</b><br>
  585. <b>Status</b>: Headliner<br>
  586. <b>Purchase</b>: <a href="http://badlandstour.com">Official Website</a><br>
  587. <b>Dates</b>: Sept 30 - March 09<br>
  588. </ul></div>
  589.  
  590. <img src="http://static.tumblr.com/zy3qjic/KkRnvswmo/7.png">
  591. <div class="pinfo">
  592. <ul> <b>The Madness Tour</b><br>
  593. <b>Status</b>: Special guest<br>
  594. <b>Purchase</b>: <a href="http://iamhalsey.com/tour">Official Website</a><br>
  595. <b>Dates</b>: Nov 27 - Dec 19<br>
  596. </ul></div>
  597.  
  598. </div></div>
  599.  
  600.  
  601. <!-- AFFILIATES -->
  602.  
  603. <div class="cat">
  604. <div class="cti">Affiliates<i class="fa fa-link" style="float:right;"></i></div>
  605.  
  606. <div class="affiliates">
  607.  
  608. <center><a href="http://url.tumblr.com/" title="url"><img src="http://static.tumblr.com/zy3qjic/OeDnvsxch/8.png"/></a>
  609. <a href="http://url.tumblr.com/" title="url"><img src="http://static.tumblr.com/zy3qjic/OeDnvsxch/8.png"/></a>
  610. <a href="http://url.tumblr.com/" title="url"><img src="http://static.tumblr.com/zy3qjic/OeDnvsxch/8.png"/></a>
  611. <a href="http://url.tumblr.com/" title="url"><img src="http://static.tumblr.com/zy3qjic/OeDnvsxch/8.png"/></a></center>
  612.  
  613.  
  614. </div>
  615. </div>
  616.  
  617.  
  618. <!-- MEMBERS -->
  619.  
  620. <div class="cat">
  621. <div class="cti">Members<i class="fa fa-user" style="float:right;"></i></div>
  622.  
  623. {block:GroupMembers}
  624. <table style="margin-top:0px;">
  625. {block:GroupMember}
  626. <tr>
  627. <td style="width:40px;">
  628. <img src="{GroupMemberPortraitURL-40}" width="40px;" height="auto;" style="margin-right: 10px; padding: 5px; border: 1px solid #f1f1f1">
  629. </td>
  630. <td style="width:290px; height:auto;">
  631. <div id="m" style="margin-bottom:10px;">
  632. <a href="{GroupMemberURL}" style="font-weight:bold; text-transform:uppercase; font-family:arial; letter-spacing:0px; font-size:8px;">{GroupMemberName}</a><br>{GroupMemberTitle}</div>
  633.  
  634. </tr>
  635. {/block:GroupMember}
  636. </table>
  637. {/block:GroupMembers}
  638. </div>
  639.  
  640.  
  641. <!-- MEMBERS -->
  642.  
  643. <div class="cat">
  644. <div class="cti">About the site<i class="fa fa-at" style="float:right;"></i></div>
  645. <div class="sinfo">
  646. <b>About:</b> Halsey<br>
  647. <b>Admin:</b> <a href="http://clumhood.tumblr.com">Graziella</a> <br>
  648. <b>Designed by:</b> <a href="http://clumhood.tumblr.com/">Graziella</a><br>
  649. <b>Online:</b> <br>
  650. <b>Visits:</b> <br><br>
  651.  
  652. Our site claims no credit for any images posted on this site unless stated otherwise. Images and information on this blog are copyright to their respectful owners.
  653. </div>
  654.  
  655.  
  656.  
  657. </div>
  658.  
  659. </div>
  660.  
  661. <div class="entries">
  662.  
  663. {block:Posts}
  664.  
  665. <div class="posts">
  666.  
  667. {block:Text}
  668. <h1>{block:Title}{Title}{/block:Title}</h1>
  669. {Body}{/block:Text}
  670.  
  671.  
  672. {block:Photo}
  673. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  674. {block:Caption}{Caption}{/block:Caption}
  675. {/block:Photo}
  676.  
  677.  
  678. {block:Photoset}
  679. {Photoset-500}
  680. {block:Caption}{Caption}{/block:Caption}
  681. {/block:Photoset}
  682.  
  683.  
  684. {block:Quote}
  685. <div class="quote">"{Quote}"</div>
  686. {block:Source}<div class="quotesource"> — {Source}</div>
  687. {/block:Source}{/block:Quote}
  688.  
  689.  
  690. {block:Link}
  691. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  692. {block:Description}{Description}{/block:Description}
  693. {/block:Link}
  694.  
  695.  
  696. {block:Chat}
  697. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  698. {/block:Chat}
  699.  
  700.  
  701. {block:Audio}
  702.  
  703. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  704.  
  705. {block:AlbumArt}
  706. <img src="{AlbumArtURL}" class="cover">
  707. {/block:AlbumArt}
  708.  
  709.  
  710. <div class="trackdetails"><br>
  711. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  712.  
  713. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  714.  
  715. <b>PLAYS:</b> {FormattedPlayCount}</div>
  716.  
  717.  
  718. {block:Caption}
  719. <div class="caption">{Caption}</div>
  720. {/block:Caption}
  721. {/block:Audio}
  722.  
  723.  
  724. {block:Video}
  725. {Video-500}
  726. {block:Caption}{Caption}{/block:Caption}
  727. {/block:Video}
  728.  
  729.  
  730. {block:Answer}
  731. <div class="question">
  732. <div class="asker"><b>{Asker} said:</b></div>
  733. {Question}</div>
  734. <div class="answer">
  735. {Answer}</div>
  736. {/block:Answer}
  737.  
  738.  
  739. <div class="info">
  740. {block:Date}
  741. <b>Posted</b> <a href="{Permalink}">{TimeAgo}</a> <b>by</b> <a href="{PostAuthorURL}">{PostAuthorName}</a>
  742. {/block:Date}
  743. <br>
  744. <b>With</b> <a href="{Permalink}">{NoteCountWithLabel}</a>
  745. &nbsp;&nbsp;
  746.  
  747. <a href="{ReblogURL}" target="_blank" class="details"><i class="fa fa-repeat"></i></a>
  748.  
  749. <font style="float:right">
  750. {block:RebloggedFrom}
  751. <a href="{ReblogParentURL}" title="{ReblogParentName}">via </a>
  752. {block:ContentSource}
  753. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}">/ src</a>
  754. {/block:ContentSource}
  755. {/block:RebloggedFrom}
  756. </font style>
  757.  
  758.  
  759. </div>
  760.  
  761.  
  762. {block:HasTags}
  763. <div class="tags">
  764. {block:Tags}
  765. #<a href="{TagURL}">{Tag}</a>
  766. {/block:Tags}
  767. </div>
  768. {/block:HasTags}
  769.  
  770. </div>
  771.  
  772.  
  773. {block:PostNotes}
  774. {PostNotes}
  775. {/block:PostNotes}
  776. {/block:Posts}</div>
  777.  
  778. <div id="pagi">
  779. {block:IndexPage}
  780. <div id="pagination">
  781. {block:Pagination}
  782. {block:JumpPagination length="5"}
  783. {block:CurrentPage}
  784. <span class="current_page">{PageNumber}</span>
  785. {/block:CurrentPage}
  786. {block:JumpPage}
  787. <a class="jump_page" href="{URL}">{PageNumber}</a>
  788. {/block:JumpPage}
  789. {/block:JumpPagination}
  790. {/block:Pagination}
  791. </div>
  792. {/block:IndexPage}
  793. </div>
  794.  
  795. {block:ContentSource}
  796. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  797. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  798. {/block:SourceLogo}
  799. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  800. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  801.  
  802. </body>
Advertisement
Add Comment
Please, Sign In to add comment