Belgrravia

All I Want

Jun 11th, 2015
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.73 KB | None | 0 0
  1. <!--
  2. all i want
  3. theme by kalopsiathemes
  4. Please do not
  5. -remove the credit
  6. -steal parts of code
  7. -use as a base
  8.  
  9. Feel free to
  10. -edit parts of the theme
  11. -ask me any questions
  12. -->
  13. <!DOCTYPE html>
  14. <head>
  15. <link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700|Raleway:400,700' rel='stylesheet' type='text/css'>
  16. <title>{Title}</title>
  17. <link rel="shortcut icon" href="{Favicon}">
  18. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  19. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  20.  
  21.  
  22.  
  23. <meta name="color:Background" content="#ffffff"/>
  24. <meta name="color:sidebar" content="#ffffff"/>
  25. <meta name="image:sidebar" content="#ffffff"/>
  26. <meta name="color:link" content="#090909"/>
  27. <meta name="color:link hover" content="#090909"/>
  28. <meta name="color:title" content="#090909"/>
  29. <meta name="color:text" content="#090909"/>
  30. <meta name="image:Background" content=""/>
  31. <meta name="color:shadow" content="#b5b4b4"/>
  32.  
  33. <meta name="if:500px posts" content="0"/>
  34. <meta name="if:400px posts" content="1"/>
  35. <meta name="if:250px posts" content="0"/>
  36.  
  37.  
  38. <meta name="text:link1" content="">
  39. <meta name="text:link1url" content="" />
  40. <meta name="text:link2" content="">
  41. <meta name="text:link2url" content="" />
  42. <meta name="text:link3" content="">
  43. <meta name="text:link3url" content="" />
  44. <meta name="text:link4" content="">
  45. <meta name="text:link4url" content="" />
  46. <meta name="text:link5" content="">
  47. <meta name="text:link5url" content="" />
  48.  
  49. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  50. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  51.  
  52. <script>
  53.  
  54. (function($){
  55.  
  56. $(document).ready(function(){
  57.  
  58. $("a[title]").style_my_tooltips({
  59.  
  60. tip_follows_cursor:true,
  61.  
  62. tip_delay_time:30,
  63.  
  64. tip_fade_speed:300,
  65.  
  66. attribute:"title"
  67.  
  68. });
  69.  
  70. });
  71.  
  72. })(jQuery);
  73.  
  74. </script>
  75.  
  76. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  77. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  78.  
  79.  
  80.  
  81. <script type="text/javascript"
  82. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  83.  
  84. <script>
  85.  
  86.  
  87.  
  88. $(document).ready(function() {
  89.  
  90. //
  91.  
  92.  
  93.  
  94. //When you click on a link with class of poplight and the href starts with a #
  95.  
  96. $('a.poplight[href^=#]').click(function() {
  97.  
  98. var popID = $(this).attr('rel'); //Get Popup Name
  99.  
  100. var popURL = $(this).attr('href'); //Get Popup href to define size
  101.  
  102.  
  103.  
  104. //Pull Query & Variables from href URL
  105.  
  106. var query= popURL.split('?');
  107.  
  108. var dim= query[1].split('&');
  109.  
  110. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  111.  
  112.  
  113.  
  114. //Fade in the Popup and add close button
  115.  
  116.  
  117. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  118.  
  119. var popMargTop = ($('#' + popID).height() + 80) / 2;
  120.  
  121. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  122.  
  123.  
  124.  
  125. //Apply Margin to Popup
  126.  
  127. $('#' + popID).css({
  128.  
  129. 'margin-top' : -popMargTop,
  130.  
  131. 'margin-left' : -popMargLeft
  132.  
  133. });
  134.  
  135.  
  136.  
  137. //Fade in Background
  138.  
  139. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  140.  
  141. $('#fade').css({'filter' : 'alpha(opacity=80)'}).delay(300).fadeIn(600); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  142.  
  143. $('#' + popID).delay(200).fadeIn(600).css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/wi2dwmg/NM2nabjsv/close.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  144.  
  145. return false;
  146.  
  147. });
  148.  
  149.  
  150.  
  151. //Close Popups and Fade Layer
  152.  
  153. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  154.  
  155. $('#fade , .popup_block').fadeOut(function() {
  156.  
  157. $('#fade, a.close').remove(); //fade them both out
  158.  
  159. });
  160.  
  161. return false;
  162.  
  163. });
  164.  
  165.  
  166.  
  167.  
  168.  
  169. });
  170.  
  171. </script>
  172.  
  173.  
  174.  
  175.  
  176.  
  177. <style type="text/css">
  178.  
  179. #s-m-t-tooltip {max-width:400px;
  180. padding:2px;
  181. margin:10px 0px 0px 10px;
  182. padding:2px 4px;
  183. background-color:{color:text};
  184. text-transform:uppercase;
  185. font-size:7px;
  186. letter-spacing:2px;
  187. font-weight:700;
  188. color:{color:background};
  189. z-index:999999999;
  190. }
  191.  
  192. ::-webkit-scrollbar {height: 0px;
  193. width: 3px;
  194. -webkit-border-radius: 0px;
  195. background-color:{color:background}}
  196. ::-webkit-scrollbar-thumb{background-color:{color:text};
  197. }
  198.  
  199. html, body {margin:0;padding:0;height:100%;}
  200.  
  201. body {
  202. background-color:{color:background};
  203. color:{color:text};
  204. font-size:9px;
  205. margin:0;
  206. font-family: 'PT Sans', sans-serif;
  207. background-image: url("{image:background}");
  208. background-repeat:repeat;
  209. background-position: bottom;
  210. background-attachment: fixed;
  211. }
  212.  
  213.  
  214.  
  215.  
  216. #posts {
  217. {block:If500pxposts}
  218. width:500px;
  219. {/block:If500pxposts}
  220. {block:If400pxposts}
  221. width:400px;
  222. {/block:If400pxposts}
  223. {block:If250pxposts}
  224. width:250px;
  225. {/block:If250pxposts}
  226. margin-top:100px;
  227. }
  228.  
  229. #posts img {
  230. {block:If500pxposts}
  231. max-width:500px;
  232. {/block:If500pxposts}
  233. {block:If400pxposts}
  234. max-width:400px;
  235. {/block:If400pxposts}
  236. {block:If250pxposts}
  237. max-width:250px;
  238. {/block:If250pxposts}
  239. }
  240.  
  241.  
  242. #posts, #posts img,#posts p {
  243. font-size:11px;
  244. color:{color:text};
  245. }
  246.  
  247. #posts p {
  248. margin:10px;
  249. }
  250.  
  251. ul.chat {
  252. margin:10px;
  253. padding-top:10px;
  254. }
  255.  
  256. .entries {
  257. {block:If500pxposts}
  258. width:500px;
  259. {/block:If500pxposts}
  260. {block:If400pxposts}
  261. width:400px;
  262. {/block:If400pxposts}
  263. {block:If250pxposts}
  264. width:250px;
  265. {/block:If250pxposts}
  266. background-color:{color:sidebar};
  267. box-shadow: 1px 1px 1px {color:shadow};
  268. }
  269.  
  270. .entries blockquote {
  271. margin:10px;
  272. }
  273.  
  274. small {
  275. font-size:10px;
  276. }
  277.  
  278. big {
  279. font-size:12px;
  280. }
  281.  
  282.  
  283. h2 {
  284. font-size:14px;
  285. color:{color:title};
  286. text-align:center;
  287. margin:10px;
  288. font-weight:700;
  289. text-transform:uppercase;
  290. }
  291.  
  292. h1 {
  293. font-size:9px;
  294. Text-align:center;
  295. letter-spacing:1px;
  296. color:{color:text};
  297. }
  298.  
  299. h3 {
  300. font-size:15px;
  301. margin:10px;
  302. margin-top:none;
  303. color:{color:title};
  304. letter-spacing:1px;
  305. }
  306.  
  307.  
  308. #content {
  309. width:100%;
  310. margin:auto;
  311. {block:If500pxposts}
  312. width:500px;
  313. {/block:If500pxposts}
  314. {block:If400pxposts}
  315. width:400px;
  316. {/block:If400pxposts}
  317. {block:If250pxposts}
  318. width:250px;
  319. {/block:If250pxposts}
  320. margin-bottom:50px;
  321. }
  322.  
  323. #sidebar {
  324. {block:If500pxposts}
  325. width:500px;
  326. {/block:If500pxposts}
  327. {block:If400pxposts}
  328. width:400px;
  329. {/block:If400pxposts}
  330. {block:If250pxposts}
  331. width:250px;
  332. {/block:If250pxposts}
  333. margin:auto;
  334. margin-top:100px;
  335. text-align:center;
  336. word-wrap:break-word;
  337. padding-top:15px;
  338. padding-bottom:15px;
  339. background-color:{color:sidebar};
  340. box-shadow: 1px 1px 1px {color:shadow};
  341. }
  342.  
  343.  
  344. #nav {
  345. text-transform:lowercase;
  346. font-size:11px;
  347. margin-top:5px;
  348. display:inline;
  349. }
  350.  
  351. #nav a {
  352. display:none;
  353. }
  354.  
  355. #sidebarimage img {
  356. width:60px;
  357. height:60px;
  358. border-radius:50px;
  359.  
  360. }
  361.  
  362. #top {
  363. width:100%;
  364. background-color:{color:sidebar};
  365. position:fixed;
  366. top:0px;
  367. }
  368.  
  369. #line {
  370. width:200px;
  371. margin:auto;
  372. height:1px;
  373. margin-top:4px;
  374. background-color:{color:link};
  375. }
  376.  
  377. .click {
  378. font-size:15px;
  379. padding:10px;
  380. color:{color:text};
  381. display:inline-block;
  382. }
  383.  
  384. .click:hover {
  385. cursor:crosshair;
  386. }
  387. .link {
  388. width:5px;
  389. height:5px;
  390. border:1px solid {color:text};
  391. margin-right:1px;
  392. margin-left:2px;
  393. display:inline-block;
  394. }
  395.  
  396. .link:hover {
  397. background-color:{color:text};
  398. cursor:crosshair;
  399. }
  400.  
  401. .entries p {
  402. padding-top:5px;
  403. }
  404.  
  405. #title {
  406. text-align:center;
  407. font-size:12px;
  408. color:{color:title};
  409. margin:auto;
  410. margin-top:5px;
  411. width:195px;
  412. font-family: 'Raleway', sans-serif;
  413. word-wrap:break-word;
  414. }
  415.  
  416. #postinfo {
  417. {block:If500pxposts}
  418. width:500px;
  419. {/block:If500pxposts}
  420. {block:If400pxposts}
  421. width:400px;
  422. {/block:If400pxposts}
  423. {block:If250pxposts}
  424. width:250px;
  425. {/block:If250pxposts}
  426. letter-spacing:1px;
  427. font-size:8px;
  428. padding-top:10px;
  429. padding-bottom:10px;
  430. text-align:center;
  431. text-transform:uppercase;
  432. font-weight:700;
  433. }
  434.  
  435.  
  436. a:link, a:visited {
  437. text-decoration:none;
  438. font-weight:700;
  439. color:{color:link};
  440. }
  441.  
  442. a:hover {
  443. text-decoration:none;
  444. font-weight:700;
  445. cursor: crosshair;
  446. color:{color:link hover};
  447. }
  448.  
  449.  
  450. .pagenotes {
  451. {block:IndexPage}
  452. display: none;
  453. {/block:IndexPage}
  454. {block:If500pxposts}
  455. width:500px;
  456. {/block:If500pxposts}
  457. {block:If400pxposts}
  458. width:400px;
  459. {/block:If400pxposts}
  460. {block:If250pxposts}
  461. width:250px;
  462. {/block:If250pxposts}
  463. margin-top:20px;
  464. text-transform:lowercase;
  465. font-size:9px;
  466. padding-top:10px;
  467. letter-spacing:1px;
  468. background-color:{color:sidebar};
  469. box-shadow: 1px 1px 1px {color:shadow};
  470.  
  471. }
  472.  
  473. #permalink {
  474. font-size:9px;
  475. margin-top:5px;
  476. letter-spacing:1px;
  477. text-transform:uppercase;
  478. }
  479.  
  480. .pagenotes img {
  481. display:none;
  482. }
  483. .pagenotes li {
  484. margin-left:10px;
  485. list-style-type:circle;
  486. padding:5px 0px;
  487. text-align:left;
  488. }
  489. .tags {
  490. {block:If500pxposts}
  491. width:500px;
  492. {/block:If500pxposts}
  493. {block:If400pxposts}
  494. width:400px;
  495. {/block:If400pxposts}
  496. {block:If250pxposts}
  497. width:250px;
  498. {/block:If250pxposts}
  499. font-size:8px;
  500. text-transform:lowercase;
  501. word-wrap:break-word;
  502. padding-top:5px;
  503. text-align:center;
  504.  
  505. }
  506.  
  507. .pagi {
  508. {block:If500pxposts}
  509. width:500px;
  510. {/block:If500pxposts}
  511. {block:If400pxposts}
  512. width:400px;
  513. {/block:If400pxposts}
  514. {block:If250pxposts}
  515. width:250px;
  516. {/block:If250pxposts}
  517. margin:auto;
  518. background-color:{color:sidebar};
  519. text-align:center;
  520. margin-bottom:60px;
  521. color:{color:link};
  522. font-size:10px;
  523. font-family: 'Raleway', sans-serif;
  524. font-weight:700;
  525. text-transform:lowercase;
  526. padding-top:10px;
  527. padding-bottom:10px;
  528. box-shadow: 1px 1px 1px {color:shadow};
  529. }
  530.  
  531. .pagi a {
  532. color:{color:link};
  533. }
  534.  
  535. .pagi a:hover {
  536. color:{color:link hover};
  537. }
  538.  
  539. .links {
  540. {block:If500pxposts}
  541. max-width:500px;
  542. {/block:If500pxposts}
  543. {block:If400pxposts}
  544. max-width:400px;
  545. {/block:If400pxposts}
  546. {block:If250pxposts}
  547. max-width:250px;
  548. {/block:If250pxposts}
  549. }
  550.  
  551.  
  552. .player {
  553. width:50px;
  554. height:25px;
  555. overflow:hidden;
  556. position:absolute;
  557. background:white;}
  558.  
  559. .audioinfo {
  560. margin-left:50px;
  561. font-size:12px;
  562. }
  563.  
  564. .q {
  565. text-align:center;
  566. font-weight:bold;
  567. padding-top:10px;
  568. }
  569.  
  570. .as {
  571. font-weight:bold;
  572. text-transform:uppercase;
  573. margin-bottom:10px;
  574. }
  575.  
  576.  
  577. .a {
  578. margin-top:10px;
  579.  
  580. }
  581.  
  582. .chat ol {
  583. padding:0;
  584. list-style:none;
  585. }
  586.  
  587. .label {font-weight:bold;
  588. }
  589.  
  590. .newplayerbutton {
  591. position: relative;
  592. width: 28px;
  593. height: 27px;
  594. overflow: hidden;
  595.  
  596. }
  597.  
  598. .playerbuttonhug {
  599. position: absolute;
  600. top: -11px;
  601. left: -12px;
  602. }
  603.  
  604.  
  605. .tumblr_audio_player {
  606. border: none;
  607. padding: 0px;
  608. margin: 0px;
  609. height: 50px;
  610. width: 500px;
  611. }
  612.  
  613. .playerbuttonbg {
  614. position: absolute;
  615. z-index:999;
  616. left: 30px;
  617. top: 30px;
  618. width: 28px;
  619. height: 28px;
  620. background-color: #ffffff;
  621. padding: 10px;
  622. -webkit-border-radius: 40px;
  623. -moz-border-radius: 40px;
  624. border-radius: 0px;
  625. opacity: .4;
  626. filter: alpha(opacity=40);
  627. -moz-opacity: 0.4;
  628. -khtml-opacity: 0.4;
  629. transition: opacity .7s ease-in-out;
  630. -moz-transition: opacity .7s ease-in-out;
  631. -webkit-transition: opacity .7s ease-in-out;
  632. }
  633.  
  634. .playerbuttonbg:hover {
  635. opacity: 1;
  636. filter: alpha(opacity=100);
  637. -moz-opacity: 1;
  638. -khtml-opacity: 1;
  639. }
  640.  
  641. .audioimgwrapper {
  642. position: absolute;
  643. padding:10px;
  644. background-color:{color:sidebar background};
  645. left: 0px;
  646. top: 0px;
  647. -webkit-border-radius: 50px;
  648. -moz-border-radius: 50px;
  649. border-radius: 0px;
  650. overflow: hidden;
  651. width: 90px;
  652. height: 88px;
  653. }
  654.  
  655. .audioimgwrapper img {
  656. width: 100%;
  657. height: auto;
  658. -webkit-border-radius: 50px;
  659. -moz-border-radius: 50px;
  660. border-radius: 0px;
  661. }
  662.  
  663. .trackdetails {
  664. width: auto;
  665. display:inline-block;
  666. margin-left: 120px;
  667. line-height:200%;
  668. min-height: 85px;
  669. margin-top:10px;
  670. }
  671.  
  672. .audiowrapper {
  673. position: relative;
  674. display:inline-block;
  675. margin-bottom:20px;
  676. margin-top:10px;
  677. }
  678. #credit {
  679. position:fixed;
  680. color:{color:text};
  681. bottom:2px;
  682. right:1px;
  683. padding:4px;
  684. font-size:12px;
  685. }
  686.  
  687. #credit a {
  688. text-decoration:none;
  689. }
  690.  
  691.  
  692.  
  693. </style>
  694. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  695. <script>
  696. $(document).ready(function(){
  697. $(".click").click(function(){
  698. $("#nav a").fadeToggle(700);
  699. });
  700. });
  701. </script>
  702. </head>
  703. <body>
  704. <div id="top">
  705. <div class="click">&#10006;</div>
  706. <div id="nav">
  707. <a href="{text:link1url}">{text:link1}</a>&nbsp;
  708. <a href="{text:link2url}">{text:link2}</a>&nbsp;
  709. <a href="{text:link3url}">{text:link3}</a>&nbsp;
  710. <a href="{text:link4url}">{text:link4}</a>&nbsp;
  711. <a href="{text:link5url}">{text:link5}</a>&nbsp;</div>
  712. </div></div>
  713. <div id="sidebar">
  714. <a href="/">
  715. <div id="sidebarimage"><img src="{image:sidebar}"></a></div>
  716. <div id="line"></div>
  717. <div id="title">{title}</div>
  718. </div>
  719. </div>
  720.  
  721. <div id="content">
  722. {block:Posts}<div id="posts">
  723.  
  724. <div class="entries">
  725. {block:Text}{block:Title}<p><h3>{Title}</h3></p>{/block:Title}{Body}{/block:Text}
  726.  
  727. {block:Quote}<p><h2>&#147;{Quote}&#148;</h2></p><h1>{Source}</h1>{/block:Quote}
  728.  
  729. {block:Link}<div class="links"><a href="{URL}"><p><h3>{Name}</h3></p></a>
  730.  
  731. {block:Description}<p>{Description}</p>{/block:Description}</div>{/block:Link}
  732.  
  733. {block:Photo} {block:If500pxposts}<img src="{PhotoURL-500}" />{block:Caption}{Caption}{/block:Caption} {/block:If500pxposts}{block:If400pxposts}<img src="{PhotoURL-400}" />{block:Caption}{Caption}{/block:Caption} {/block:If400pxposts}{block:If250pxposts}<img src="{PhotoURL-250}" />{block:Caption}{Caption}{/block:Caption} {/block:If250pxposts}{/block:Photo}
  734.  
  735. {block:Photoset}
  736. {block:If500pxposts}
  737. <center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}
  738. {/block:If500pxposts}
  739. {block:If400pxposts}
  740. <center>{Photoset-400}</center>{block:Caption}{Caption} {/block:If400pxposts}{/block:Caption}
  741.  
  742. {/block:If400pxposts}
  743. {block:If250pxposts}
  744. <center>{Photoset-250}</center>{block:Caption}{Caption} {/block:If400pxposts}{/block:Caption}
  745.  
  746. {/block:If250pxposts}
  747. {/block:Photoset}
  748.  
  749. {block:Chat}<ul class="chat">{block:Title}<p><h3>{Title}</h3></p>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}{Line}</li>{/block:Lines}</ul>{/block:Chat}
  750.  
  751. {block:Video} {block:If500pxposts}{Video-500}{block:Caption}{Caption}{/block:Caption}
  752. {/block:If500pxposts}
  753. {block:If400pxposts}
  754. {Video-400}{block:Caption}{Caption}{/block:Caption}
  755. {/block:If400pxposts}
  756. {block:If250pxposts}
  757. {Video-250}{block:Caption}{Caption}{/block:Caption}
  758. {/block:If250pxposts}{/block:Video}
  759.  
  760. {block:Audio}{block:AudioPlayer}
  761. <div class="audiowrapper">
  762. {block:AlbumArt}
  763. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  764. {/block:AlbumArt}
  765.  
  766. <div class="playerbuttonbg">
  767. <div class="newplayerbutton">
  768. <div class="playerbuttonhug">
  769.  
  770. {AudioPlayerWhite}
  771.  
  772. </div>
  773. </div>
  774. </div>
  775.  
  776. <div class="trackdetails">
  777.  
  778. {block:TrackName}<strong>{TrackName}</strong>{/block:TrackName}<br/>
  779. {block:Artist}<em>{Artist}</em> {/block:Artist}<br/>
  780. {block:Album}{Album}{/block:Album}<br/>
  781. {PlayCountWithLabel}
  782.  
  783. </div>
  784. </div>
  785. {/block:AudioPlayer}{/block:Audio}
  786.  
  787.  
  788. {block:Answer}
  789. <div class="q">
  790. <div class="as">{Asker} inquired: </div>
  791. {Question}</div>
  792. <div class="a">{Answer}</div>
  793. {/block:Answer}
  794.  
  795. {block:Date}<div id="postinfo">{ShortMonth}&nbsp;{DayofMonth}<a href="{permalink}">&nbsp;&#9679;&nbsp;{NoteCount} notes</a>&nbsp;&#9679;&nbsp;<a href="{ReblogURL}">reblog</a>{block:PermalinkPage}{block:RebloggedFrom}&nbsp;&#9679;&nbsp;<a href="{ReblogParentURL}" title="{ReblogParentName}">via&nbsp;</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">&ndash;&nbsp;src&nbsp;</a>{/block:ContentSource}{/block:RebloggedFrom}<br>{block:HasTags}<div class="tags">filed under:{block:Tags}<a href="{TagUrl}">{Tag},&nbsp;</a>{/block:Tags}</div>{/block:HasTags}{/block:PermalinkPage}</div>{/block:Date}
  796. </div>
  797. {block:PostNotes}
  798. <div class="pagenotes">
  799. {PostNotes}
  800. </div>
  801. {/block:PostNotes}
  802. </div>
  803. {/block:Posts}
  804. </div>
  805. </div>
  806. {block:Pagination}
  807. <div class="pagi">
  808. {block:PreviousPage}
  809. <a href="{PreviousPage}">back</a>
  810. {/block:PreviousPage}{block:NextPage}
  811. <a href="{NextPage}">&mdash;&nbsp;forth </a>
  812. {/block:NextPage}
  813. </div>
  814. {/block:Pagination}
  815.  
  816.  
  817.  
  818. {block:ContentSource}
  819. {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  820. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  821. {/block:SourceLogo}
  822. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}
  823. {/block:ContentSource}
  824. <div id="credit">
  825. <a href="http://kalopsiathemes.tumblr.com" title="kalopsiathemes"</div>&#916;</a></div>
  826.  
  827. </body></html>
  828. </html>
Advertisement
Add Comment
Please, Sign In to add comment