dansmilth

Fansite Theme #4

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