Advertisement
ammetrine

Liar 2.0 Theme by Moondhrop

Mar 13th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <script src=“http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js”></script>
  4. <script>
  5. (function($){
  6. $(document).ready(function(){
  7. $(“[title],a[title],img[title]”).style_my_tooltips({
  8. tip_follows_cursor:true,
  9. tip_delay_time:90,
  10. tip_fade_speed:600,
  11. attribute:“title”
  12. });
  13. });
  14. })(jQuery);
  15. </script>
  16.  
  17. <link href="https://fonts.googleapis.com/css?family=Tinos" rel="stylesheet">
  18. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  19. <script type="text/javascript"
  20. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  21. <script>
  22. $(document).ready(function() {
  23. //
  24. $('a.poplight[href^=#]').click(function() {
  25. var popID = $(this).attr('rel'); //Get Popup Name
  26. var popURL = $(this).attr('href'); //Get Popup href to define size
  27. var query= popURL.split('?');
  28. var dim= query[1].split('&');
  29. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  30. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  31. var popMargTop = ($('#' + popID).height() + 80) / 2;
  32. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  33. //Apply Margin to Popup
  34. $('#' + popID).css({
  35. 'margin-top' : -popMargTop,
  36. 'margin-left' : -popMargLeft
  37. });
  38. $('body').append('<div id="fade"></div>');
  39. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  40. return false;
  41. });
  42. $('a.close, #fade').live('click', function() {
  43. $('#fade , .popup_block').fadeOut(function() {
  44. $('#fade, a.close').remove(); //fade them both out
  45. });
  46. return false;
  47. });
  48. });
  49. </script>
  50.  
  51.  
  52.  
  53.  
  54. <title>{Title}</title>
  55.  
  56. <link rel="shortcut icon" href="{Favicon}">
  57. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  58. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  59.  
  60.  
  61. <meta name="image:Background" content=""/>
  62. <meta name="color:Background" content="#ffffff"/>
  63. <meta name="color:Border" content="#E3CBC3"/>
  64. <meta name="color:Blog Title" content="#e3cbc3"/>
  65. <meta name="color:Description" content="#000000" />
  66. <meta name="color:Text" content="#000000"/>
  67. <meta name="color:Link" content="#E3CBC3"/>
  68. <meta name="color:Link Hover" content="#000000"/>
  69. <meta name="color:Navlink" content="#E3CBC3"/>
  70. <meta name="color:Navlink Hover" content="#000000"/>
  71. <meta name="color:Perma" content="#E3CBC3"/>
  72. <meta name="color:Perma Hover" content="#000000"/>
  73. <meta name="color:Scrollbar" content="#E3CBC3"/>
  74. <meta name="color:Credit BG" content="#ffffff"/>
  75.  
  76. <meta name="if:Show Custom Link 1" content="1"/>
  77. <meta name="if:Show Custom Link 2" content="1"/>
  78. <meta name="if:Show Custom Link 3" content="1"/>
  79.  
  80.  
  81. <meta name="text:Link 1 URL" content="" />
  82. <meta name="text:Link 2 URL" content="" />
  83. <meta name="text:Link 3 URL" content="" />
  84. <meta name="text:Link 1 Tooltip" content="" />
  85. <meta name="text:Link 2 Tooltip" content="" />
  86. <meta name="text:Link 3 Tooltip" content="" />
  87.  
  88.  
  89. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  90.  
  91.  
  92. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  93. <script>
  94. (function($){
  95. $(document).ready(function(){
  96. $("[title]").style_my_tooltips({
  97. tip_follows_cursor:true,
  98. tip_delay_time:0,
  99. tip_fade_speed:0
  100. }
  101. );
  102. });
  103. })(jQuery);
  104. </script>
  105.  
  106.  
  107. <link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  108.  
  109.  
  110. <style type="text/css">
  111. /** basic tooltip from tutorial-baby**/
  112. .tooltip{
  113. display:inline;
  114. position:relative;
  115. }
  116. #s-m-t-tooltip{
  117. max-width:300px; /*how big the tooltip can be at most*/
  118. border-radius: 0px; /*change your border radius*/
  119. padding:3px 4px 5px 4px; /*padding inside tooltip*/
  120. margin:20px 7px -2px 20px; /*distance from word*/
  121. background-color:#ffffff;/*background color*/
  122. font-size:9px; /*tooltip font size*/
  123. letter-spacing:2px; /*tooltip letter spacing*/
  124. text-transform:normal; /*makes the tooltip title uppercase*/
  125. color:{color:Text}; /*tooltip font color*/
  126. z-index:9999999999;
  127. }
  128.  
  129. #top {
  130. height:100px;
  131. width:100%;
  132. top:0;
  133. background-color:{color:Border};
  134. z-index:999;
  135. position:fixed;}
  136.  
  137. #left {
  138. width:240px;
  139. height:100%;
  140. background-color:{color:Border};
  141. z-index:999;
  142. left:0;
  143. position:fixed;}
  144.  
  145. #bottom {
  146. height:100px;
  147. width:100%;
  148. bottom:0;
  149. background-color:{color:Border};
  150. z-index:999;
  151. position:fixed;}
  152.  
  153. #right {
  154. width:240px;
  155. height:100%;
  156. right:0;
  157. background-color:{color:Border};
  158. z-index:999;
  159. position:fixed;}
  160.  
  161. ::-webkit-scrollbar-thumb{
  162. background-color:{color:scrollbar};
  163. border:1px solid {color:background};
  164. height:6px;
  165. }
  166.  
  167. ::-webkit-scrollbar {
  168. height:6px;
  169. width:4px;
  170. background-color:{color:background};
  171. }
  172.  
  173. #s-m-t-tooltip{
  174. position:absolute;
  175. margin-top: 15px;
  176. z-index:9999;
  177. background:{color:background};
  178. }
  179.  
  180.  
  181. body {
  182. background:{color:Background};
  183. color:{color:text};
  184. font-family: 'Tinos', serif;
  185. font-size:11px;
  186. text-align:center;
  187. margin:0;
  188. line-height:16px;
  189.  
  190.  
  191. background-color:{color:Background};
  192. background-image:url('{image:background}');
  193. background-attachment:fixed;
  194.  
  195. }
  196.  
  197.  
  198. a {
  199. color:{color:link};
  200. text-decoration:none;
  201. -webkit-transition: all 0.2s ease-in-out;
  202. -moz-transition: all 0.2s ease-in-out;
  203. -o-transition: all 0.2s ease-in-out;
  204. }
  205.  
  206.  
  207. #sidebar {
  208. text-align:right;
  209. position:fixed;
  210. right:280px;
  211. top:120px;
  212. width:170px;
  213. height:auto;
  214. padding:10px;
  215. z-index:999;
  216. background:transparent;
  217.  
  218. {block:if1column}
  219. width:auto;
  220. right:360px;
  221. {/block:if1column}
  222.  
  223. {block:if2column}
  224. width:auto;
  225. right:140px;
  226. {/block:if2column}
  227. }
  228.  
  229.  
  230. #blogt {
  231. margin-top:10px;
  232. font-size:22px;
  233. font-family: 'Tinos', serif;
  234. text-transform:normal;
  235. color:{color:Blog Title};
  236. padding-bottom:7px;
  237. }
  238.  
  239.  
  240. .navlinks {
  241. margin-top:0px;
  242. line-height:16px;
  243. text-transform:lowercase;
  244. position:relative;
  245. font-family: 'Tinos', serif;
  246. font-size:11px;
  247. padding-top:7px;
  248. padding-left:0px;
  249. margin-right:-5px;
  250. padding-bottom:-3px;
  251. }
  252.  
  253.  
  254. .navlinks a {
  255. color:{color:Navlink};
  256. margin-right:5px;
  257. margin-bottom:5px;
  258. display:inline-block;
  259. }
  260.  
  261.  
  262. .navlinks a:hover {
  263. color:{color:Navlink Hover};
  264. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  265. -webkit-transition:all 0.3s ease-in-out;
  266. -moz-transition:all 0.3s ease-in-out;
  267. transition:all 0.3s ease-in-out;
  268. }
  269.  
  270.  
  271. #description {
  272. margin-top:0px;
  273. color:{color:Description};
  274. font-family: 'Tinos', serif;
  275. }
  276.  
  277.  
  278. #con {
  279. left:50%;
  280. margin-left:-250px;
  281. position:absolute;
  282. }
  283.  
  284.  
  285. #entries {
  286. margin-top:120px;
  287. width:630px;
  288. margin-left:-140px;
  289.  
  290. {block:PermalinkPage}
  291. width:500px;
  292. margin-right:30px;
  293. {/block:PermalinkPage}
  294. }
  295.  
  296.  
  297. .posts {
  298. background:transparent;
  299. width:200px;
  300. float:left;
  301. margin-right:40px;
  302. padding:25px 25px 0px 25px;
  303. {block:IndexPage}
  304. margin-bottom:40px;
  305. {/block:IndexPage}
  306.  
  307.  
  308. {block:PermalinkPage}
  309. width:500px;
  310. margin-bottom:30px;
  311. position:relative;
  312. float:left;
  313. {/block:PermalinkPage}
  314. }
  315.  
  316.  
  317. .posts img {
  318. max-width:250px;
  319. }
  320.  
  321. .posts img, .posts li, .posts blockquote {max-width: 100%;}
  322. .caption {width:100%;
  323. margin-top:10px;
  324.  
  325. }
  326.  
  327. #title {
  328. font-size:12px;
  329. line-height:18px;
  330. margin-bottom:7px;
  331. text-transform:normal;
  332. text-align:center;
  333. text-decoration:underline;
  334. }
  335.  
  336.  
  337. .text {
  338. font-size:11px;
  339. font-family: 'Tinos', serif;
  340. }
  341.  
  342.  
  343. .text a:hover {
  344. text-decoration:underline;
  345. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  346. -webkit-transition:all 0.3s ease-in-out;
  347. -moz-transition:all 0.3s ease-in-out;
  348. transition:all 0.3s ease-in-out;
  349. }
  350.  
  351.  
  352. #quote{
  353. text-align:left;
  354. font-size:14px;
  355. line-height:18px;
  356. font-weight:bold;
  357. }
  358.  
  359.  
  360. #quote a:hover {
  361. text-decoration:underline;
  362. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  363. -webkit-transition:all 0.3s ease-in-out;
  364. -moz-transition:all 0.3s ease-in-out;
  365. transition:all 0.3s ease-in-out;
  366. }
  367.  
  368.  
  369. #quotesource {
  370. margin-top:15px;
  371. margin-left:15px;
  372.  
  373. }
  374.  
  375.  
  376. .player {
  377. width:25px;
  378. height:25px;
  379. overflow:hidden;
  380. position:absolute;
  381. margin-left:12px;
  382. margin-top:12px;
  383. background:white;
  384. }
  385.  
  386.  
  387. .audioinfo {
  388. margin-left:70px;
  389. }
  390.  
  391.  
  392. .albumart {
  393. position:absolute;
  394. {block:IndexPage}
  395. width:60px;
  396. height:60px;
  397. {/block:IndexPage}
  398. {block:PermalinkPage}
  399. width:60px;
  400. height:60px;
  401. {/block:PermalinkPage}
  402. }
  403.  
  404.  
  405. .albumart img {
  406. float:left;
  407. {block:IndexPage}
  408. width:60px;
  409. height:60px;
  410. {/block:IndexPage}
  411. {block:PermalinkPage}
  412. width:60px;
  413. height:60px;
  414. {/block:PermalinkPage}
  415. }
  416.  
  417.  
  418. .question {
  419. margin-bottom:0px;
  420. padding-bottom:5px;
  421. border-bottom:solid 1px {color:Text};
  422. }
  423.  
  424. .asker {
  425. font-weight:bold;
  426. }
  427.  
  428.  
  429. .answer {
  430. margin-top:-10px;
  431. }
  432.  
  433.  
  434. .chat ol {
  435. padding:0;
  436. list-style:none;
  437. }
  438.  
  439.  
  440. .line {
  441. padding:5px 0;
  442. }
  443.  
  444.  
  445. .label {
  446. font-weight:bold;
  447. }
  448.  
  449. #permalink {
  450. margin-top:3px;
  451. margin-bottom:5px;
  452. font-size:11px;
  453. text-align:center;
  454. font-style:italic;
  455. padding:3px;
  456. background:transparent;
  457. border-radius:0px;
  458. }
  459.  
  460.  
  461. #permalink a {
  462. margin-left:10px;
  463. color:{color:Perma};
  464. padding:3px;
  465. }
  466.  
  467.  
  468. #permalink a:hover {
  469. padding:3px;
  470. color:{color:Perma Hover};
  471. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  472. -webkit-transition:all 0.3s ease-in-out;
  473. -moz-transition:all 0.3s ease-in-out;
  474. transition:all 0.3s ease-in-out;
  475. }
  476.  
  477.  
  478. .pagination {
  479. display:none;
  480. }
  481.  
  482.  
  483. .popup_block{
  484. display:none;
  485. background:#fff;
  486. padding:20px;
  487. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  488. float:left;
  489. position:fixed;
  490. top:50%;left:50%;
  491. z-index: 99999;
  492. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  493. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  494. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  495. }
  496.  
  497. *html #fade {position: absolute;}
  498. *html .popup_block {position: absolute;}
  499. #fade {
  500. display:none;
  501. position:fixed;
  502. left:0px;
  503. top:0px;
  504. width:100%;
  505. height:100%;
  506. z-index:9999;
  507. background:#000; /* change to #fff for solid white */
  508. opacity:0.5; /* change to opacity:1; */
  509. }
  510.  
  511.  
  512. .notes {
  513. padding-left:20px;
  514. font-size:11px;
  515. }
  516.  
  517. .pagination {
  518. display: none;
  519. }
  520.  
  521.  
  522. #credit {
  523. position:fixed;
  524. right:5px;
  525. bottom:5px;
  526. background:transparent;
  527. padding-top:5px;
  528. padding-right:5px;
  529. padding-left:5px;
  530. padding-bottom:2px;
  531. font-size:12px;
  532. font-family: 'Tinos', serif;
  533. z-index:9999;
  534. }
  535.  
  536. #credit a{
  537. color:#666;
  538. }
  539.  
  540. {CustomCSS}
  541. </style>
  542.  
  543. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  544.  
  545. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  546.  
  547. <script>
  548. $(function(){
  549. var $container = $('#entries');
  550. $container.imagesLoaded(function(){
  551. $container.masonry({
  552. itemSelector: '.posts',
  553. });
  554. });
  555. $container.infinitescroll({
  556. itemSelector : ".posts",
  557. navSelector : "div.pagination",
  558. nextSelector : ".pagination a#next",
  559. loadingImg : "",
  560. loadingText : "<em></em>",
  561. bufferPx : 10000,
  562. extraScrollPx: 12000,
  563. },
  564. // trigger Masonry as a callback
  565. function( newElements ) {
  566. var $newElems = $( newElements ).css({ opacity: 0 });
  567. // ensure that images load before adding to masonry layout
  568. $newElems.imagesLoaded(function(){
  569. $newElems.animate({ opacity: 1 });
  570. $container.masonry( 'appended', $newElems, true );
  571. });
  572. }
  573. );
  574. });
  575. </script>
  576.  
  577.  
  578. </head>
  579.  
  580. <body>
  581.  
  582. <div id="top"></div>
  583. <div id="right"></div>
  584. <div id="bottom"></div>
  585. <div id="left"></div>
  586.  
  587. <div id="con">
  588.  
  589. <div id="credit"><a href="http://moondhrop.tumblr.com/">☾</a></div>
  590.  
  591. <div id="sidebar">
  592.  
  593. <div id="blogt">{Title}</div>
  594. <div id="description">{Description}</div>
  595.  
  596. <div class="navlinks">
  597. <a href="/" title=home>.01</a>
  598. <a href="#?w=400" rel="box1" class="poplight" title=mail>.02</a>
  599. <a href="/archive" title=archive>.03</a>
  600. {block:ifShowCustomlink1}<a href="{text:Link 1 URL}" title={text:Link 1 Tooltip}>.04</a>{/block:ifShowCustomLink1}
  601. {block:ifShowCustomlink2}<a href="{text:Link 2 URL}" title={text:Link 2 Tooltip}>.05{/block:ifShowCustomLink2}
  602. {block:ifShowCustomlink3}<a href="{text:Link 3 URL}" title={text:Link 3 Tooltip}>.06</a>{/block:ifShowCustomLink3}
  603. <a href="http://moondhrop.tumblr.com" target="_blank" title=credit><i class="fa fa-copyright"></i>
  604. </a>
  605. </div>
  606.  
  607. </div>
  608.  
  609.  
  610. <div id="entries">
  611.  
  612. {block:Posts}
  613.  
  614. <div class="posts">
  615.  
  616. {block:Quote}
  617. <div class="quote">
  618. '<strong><i>{Quote}</i></strong>'
  619. </div>
  620. {block:Source}
  621. <br><div class="quotesource">— {Source}</div>
  622. {/block:Source}
  623.  
  624. {block:IndexPage}
  625. <div id="permalink">
  626. {timeago}
  627. <a href="{Permalink}" >
  628. {NoteCount}</a>
  629. <a href="{ReblogURL}">rblg</a>
  630. </div>
  631. {/block:IndexPage}
  632. {/block:Quote}
  633.  
  634.  
  635. {block:Text}
  636. {block:Title}
  637. <div id="title">{Title}</div>
  638. {/block:Title}
  639. <div class="text">
  640. {Body}
  641. </div>
  642.  
  643. {block:IndexPage}
  644. <div id="permalink">
  645. {timeago}
  646. <a href="{Permalink}" >
  647. {NoteCount}</a>
  648. <a href="{ReblogURL}">rblg</a>
  649. </div>
  650. {/block:IndexPage}
  651. {/block:Text}
  652.  
  653.  
  654. {block:Link}
  655. <div id="title">
  656. <a href="{URL}">{Name}</a>
  657. </div>
  658. {block:Description}{Description}{/block:Description}
  659.  
  660. {block:IndexPage}
  661. <div id="permalink">
  662. {timeago}
  663. <a href="{Permalink}" >
  664. {NoteCount}</a>
  665. <a href="{ReblogURL}">rblg</a>
  666. </div>
  667. {/block:IndexPage}
  668. {/block:Link}
  669.  
  670.  
  671. {block:Chat}
  672. {block:Title}
  673. <h1>{Title}</h1>
  674. {/block:Title}
  675. <div class="chat">
  676. <ol>{block:Lines}
  677. <li class="line {Alt}">
  678. {block:Label}
  679. <span class="label">
  680. {Label}</span>
  681. {/block:Label}{Line}</li>
  682. {/block:Lines}
  683. </ol>
  684. </div>
  685.  
  686. {block:IndexPage}
  687. <div id="permalink">
  688. {timeago}
  689. <a href="{Permalink}" >
  690. {NoteCount}</a>
  691. <a href="{ReblogURL}"</a>
  692. </div>
  693. {/block:IndexPage}
  694. {/block:Chat}
  695.  
  696.  
  697. {block:Photo}
  698. {block:IndexPage}
  699. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></a>
  700.  
  701. <div id="permalink">
  702. {timeago}
  703. <a href="{Permalink}" >
  704. {NoteCount}</a>
  705. <a href="{ReblogURL}">rblg</a>
  706. </div>
  707. {/block:IndexPage}
  708.  
  709. {block:PermalinkPage}
  710. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  711. <br>
  712. {/block:PermalinkPage}
  713. {/block:Photo}
  714.  
  715.  
  716. {block:Photoset}
  717. <center>
  718. {block:Photos}
  719. {block:indexpage}
  720. <a href="{permalink}"><img src="{PhotoURL-500}" width="468px"/></a>
  721. {/block:indexpage}
  722. {block:permalinkpage}
  723. <img src="{PhotoURL-500}"/>
  724. {/block:permalinkpage}
  725. {/block:Photos}
  726. </center>
  727. <div id="permalink">
  728. {timeago}
  729. <a href="{Permalink}">
  730. {NoteCount}</a>
  731. <a href="{ReblogURL}">rblg</a>
  732. </div>
  733. {/block:Photoset}
  734.  
  735.  
  736. {block:Video}
  737. {Video-250}
  738.  
  739. {block:IndexPage}
  740. <div id="permalink">
  741. {timeago}
  742. <a href="{Permalink}" >
  743. {NoteCount}</a>
  744. <a href="{ReblogURL}">rblg</a>
  745. </div>
  746. {/block:IndexPage}
  747. {/block:Video}
  748.  
  749.  
  750. {block:Audio}
  751. {block:AlbumArt}
  752. <div class="albumart">
  753. <img src="{AlbumArtURL}">
  754. </div>
  755. {/block:AlbumArt}
  756. <div class="player">{AudioPlayerWhite}</div>
  757.  
  758. <div class="audioinfo">
  759. Title: {block:TrackName}{TrackName}{/block:TrackName}<br>
  760.  
  761. Artist: {block:Artist}{Artist}{/block:Artist}<br>
  762.  
  763. Plays: {block:PlayCount}{FormattedPlayCount}{/block:PlayCount}
  764.  
  765. {block:IndexPage}
  766. <div id="permalink">
  767. {timeago}
  768. <a href="{Permalink}" >
  769. {NoteCount}</a>
  770. <a href="{ReblogURL}">rblg</a>
  771. </div>
  772. {/block:IndexPage}
  773. </div>
  774. {/block:Audio}
  775.  
  776.  
  777. {block:Answer}
  778. <div class="question">
  779. <div class="asker">{Asker} said: </div>
  780. {Question}
  781. </div>
  782. <div class="answer"><br><i>{Answer}</i></div>
  783.  
  784. {block:IndexPage}
  785. <div id="permalink">
  786. {timeago}
  787. <a href="{Permalink}" >
  788. {NoteCount}</a>
  789. <a href="{ReblogURL}">rblg</a>
  790. </div>
  791. {/block:IndexPage}
  792. {/block:Answer}
  793.  
  794.  
  795.  
  796. {block:PermalinkPage}
  797. <div class="notes">
  798. {block:Date}{Caption} posted {TimeAgo}{/block:Date}
  799. {block:NoteCount} with {NoteCount} notes {/block:NoteCount}
  800. {block:RebloggedFrom}
  801. via <a href="{ReblogParentURL}">{ReblogParentName}</a>,
  802. {/block:RebloggedFrom}
  803. {block:ContentSource}originally from <a href="{SourceURL}">{SourceTitle} </a>{/block:ContentSource}
  804. <br>{block:hastags}{block:tags}#<a href="/tagged/{Tag}">{Tag}</a> &nbsp;&nbsp; {/block:tags}{/block:hastags}
  805. <br>{PostNotes}
  806. </div>
  807. {/block:PermalinkPage}
  808.  
  809. </div>
  810. {/block:Posts}
  811.  
  812. <div class="pagination">
  813. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> &middot;{/block:PreviousPage} {block:NextPage}<a href="{NextPage}" id="next">next</a>{/block:NextPage}{/block:Pagination}
  814. </div>
  815.  
  816.  
  817.  
  818. </div>
  819.  
  820. </div>
  821.  
  822. </body>
  823.  
  824. <div id="box1" class="popup_block">
  825. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  826.  
  827. </div>
  828.  
  829.  
  830. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement