Advertisement
gryffindor

Wonderland #11

Aug 17th, 2014
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.86 KB | None | 0 0
  1.  
  2. <!--theme #11: wonderland by aeternothemes/gryffindour/bia
  3. I worked so hard on it, theres a lot of optional stuff, i hope you all enjoy
  4. respect my rules its all I ask
  5. any questions you can ask me
  6. base code by Farahmir -->
  7.  
  8. <!DOCTYPE html>
  9. <head>
  10.  
  11. <script type="text/javascript"
  12. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  13. <script>
  14. $(document).ready(function() {
  15. //
  16. $('a.poplight[href^=#]').click(function() {
  17. var popID = $(this).attr('rel'); //Get Popup Name
  18. var popURL = $(this).attr('href'); //Get Popup href to define size
  19. var query= popURL.split('?');
  20. var dim= query[1].split('&');
  21. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  22. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  23. var popMargTop = ($('#' + popID).height() + 80) / 2;
  24. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  25. //Apply Margin to Popup
  26. $('#' + popID).css({
  27. 'margin-top' : -popMargTop,
  28. 'margin-left' : -popMargLeft
  29. });
  30. $('body').append('<div id="fade"></div>');
  31. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  32. return false;
  33. });
  34. $('a.close, #fade').live('click', function() {
  35. $('#fade , .popup_block').fadeOut(function() {
  36. $('#fade, a.close').remove(); //fade them both out
  37. });
  38. return false;
  39. });
  40. });
  41. </script>
  42.  
  43. <title>{Title}</title>
  44.  
  45. <link rel="shortcut icon" href="{Favicon}">
  46. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  47. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  48.  
  49. <!--Default Variables-->
  50.  
  51.  
  52. <meta name="color:background" content="#ffffff"/>
  53. <meta name="color:text" content="#000000"/>
  54. <meta name="color:link" content="#888888"/>
  55. <meta name="color:hover" content="#ffffff"/>
  56. <meta name="color:title" content="##555555"/>
  57. <meta name="color:Description background" content="#f3f3f3"/>
  58. <meta name="color:descrip hover" content="#3b3b3b">
  59. <meta name="color:Description font" content="#9d9d9d"/>
  60. <meta name="color:scrollbar" content="#eeee"/>
  61. <meta name="color:links" content="fffdfd"/>
  62. <meta name="color:linkborder" content="#383838"/>
  63. <meta name="color:linkhover" content="#000000"/>
  64. <meta name="color:linkborderhover" content="#000000"/>
  65.  
  66. <meta name="text:Ask" content="" />
  67. <meta name="text:URL" content="" />
  68. <meta name="text:PopUpLinks" content="" />
  69.  
  70. <meta name="text:Link 1 URL" content="" />
  71. <meta name="text:Link 1" content="" />
  72. <meta name="text:Link 2 URL" content="" />
  73. <meta name="text:Link 2" content="" />
  74. <meta name="text:Link 3 URL" content="" />
  75. <meta name="text:Link 3" content="" />
  76. <meta name="text:Link 4 URL" content="" />
  77. <meta name="text:Link 4" content="" />
  78.  
  79.  
  80. <meta name="if:Pop Up Ask" content="1" />
  81. <meta name="if:Pop Up Link" content="1" />
  82. <meta name="if:500px Posts" content="1"/>
  83. <meta name="if:Tags Hover" content="1">
  84. <meta name="if:show caption" content="1">
  85. <meta name="if:lazy load" content="1"/>
  86.  
  87.  
  88.  
  89.  
  90. <!---LAZY LOAD--->
  91. {block:IfLazyLoad}
  92. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  93. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  94. <script type="text/javascript" charset="utf-8">
  95. var $j = jQuery.noConflict();
  96. $j(function() {
  97. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  98. $j("img").lazyload({
  99. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  100. effect: "fadeIn",
  101. });
  102. });
  103. </script>
  104. {/block:IfLazyLoad}
  105.  
  106.  
  107.  
  108.  
  109. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:400,700,900,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
  110. <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700' rel='stylesheet' type='text/css'>
  111. <!-- jquery for tooltips-->
  112.  
  113.  
  114.  
  115. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  116.  
  117. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  118.  
  119. <script>
  120.  
  121. (function($){
  122.  
  123. $(document).ready(function(){
  124.  
  125. $("a[title]").style_my_tooltips({
  126.  
  127. tip_follows_cursor:true,
  128.  
  129. tip_delay_time:30,
  130.  
  131. tip_fade_speed:300,
  132.  
  133. attribute:"title"
  134.  
  135. });
  136.  
  137. });
  138.  
  139. })(jQuery);
  140.  
  141. </script>
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. <!--CSS customization here. -->
  149.  
  150. <style type="text/css">
  151.  
  152. #s-m-t-tooltip{
  153. position:absolute;
  154. max-width:400px;
  155. letter-spacing:1px;
  156. font-size:8px;
  157. margin:15px;
  158. padding:6px 6px;
  159. border:1px solid{color:text};
  160. opacity:7px;
  161. border-radius:2px;
  162. z-index:999;
  163. background:{color:background};
  164. color:{color:text};
  165. text-transform:uppercase;
  166. -webkit-transition:all 0.3s;
  167. -moz-transition:all 0.3s;
  168. -ms-transition:all 0.3s;
  169. -o-transition:all 0.3s;
  170. -transition:all 0.3s;
  171. display:inline-block;
  172.  
  173.  
  174. }
  175.  
  176.  
  177.  
  178. /*basics*/
  179. blockquote {padding:5px 0 5px 30px;
  180. border-left:1px solid {color:text};
  181. margin-left:30px;
  182. }
  183.  
  184. body {
  185. background:{color:background};
  186. color:{color:text};
  187. font-family:"Helvetica Neue", sans-serif;
  188. font-size:11px;
  189. text-align:justify;
  190. margin:0;
  191. line-height:16px;}
  192.  
  193. h1 {
  194. font-size:12px;
  195. letter-spacing:2px;
  196. text-align:center;
  197. color:{color:title};
  198.  
  199. }
  200. blockquote {
  201. padding:5px 0 5px 30px;
  202. border-left:1px solid {color:text};
  203. margin-left:30px;
  204. }
  205. #title {
  206. font-size:10px;
  207. line-height:13px;
  208. font-weight:bold;
  209. margin-bottom:10px;
  210. text-transform:uppercase;
  211. text-align:center;
  212. }
  213.  
  214. a {
  215. color:{color:link};
  216. text-decoration:none;
  217. transition-duration: 0.3s;
  218. -webkit-transition:all 0.3s;
  219. -moz-transition:all 0.3s;
  220. -ms-transition:all 0.3s;
  221. -o-transition:all 0.3s;
  222. transition:all 0.3s;
  223. }
  224.  
  225. a:hover {
  226. cursor: url(http://media.tumblr.com/tumblr_m2umkqvNUT1qfamg6.gif), auto;
  227. text-shadow:2px 2px 2px #aaaaaa;
  228. -webkit-transition:all 0.3s;
  229. -moz-transition:all 0.3s;
  230. -ms-transition:all 0.3s;
  231. -o-transition:all 0.3s;
  232. transition:all 0.3s;
  233. }
  234.  
  235.  
  236.  
  237.  
  238. img{opacity:1;
  239. border:none;
  240. text-decoration:none}
  241.  
  242.  
  243. small {
  244. font-size:9px;}
  245.  
  246. big {
  247. font-size:12px;}
  248.  
  249.  
  250. pre {
  251. white-space: pre-wrap;
  252. white-space: -moz-pre-wrap;
  253. white-space: -pre-wrap;
  254. white-space: -o-pre-wrap;
  255. word-wrap: break-word;
  256. }
  257.  
  258.  
  259.  
  260. /*---header---*/
  261.  
  262.  
  263. #header {
  264. position:fixed;
  265. margin-left:38px;
  266. margin-top:0px;
  267. z-index:999;
  268. height:25%;
  269. background:#fff;
  270. width:550px;
  271. text-align:center;
  272.  
  273. }
  274.  
  275.  
  276.  
  277.  
  278. .links {
  279. text-align:center;
  280. font-size:25px;
  281. letter-spacing:20px;
  282. margin-top:20px;
  283. margin-left:-75px;
  284. opacity:0;
  285. position:relative;
  286. z-index:2;
  287. -moz-transition-duration:0.6s;
  288. -webkit-transition-duration:0.6s;
  289. -o-transition-duration:0.6s;
  290.  
  291. }
  292.  
  293.  
  294. .links a {
  295. height: 15px;
  296. width: 15px;
  297. -moz-border:100%;
  298. -webkit-border:100%;
  299. border:100%;
  300. border: 1px {color:linkborder} solid;
  301. background:{color:links};
  302. display: inline-block;
  303. -moz-transition-duration: .6s;
  304. -webkit-transition-duration: .6s;
  305. -o-transition-duration: .6s;
  306. }
  307. .links a:hover {
  308. background:{color:linkhover};
  309. border:1px solid {color:linkborderhover};
  310. -moz-transition-duration:.6s;
  311. -webkit-transition-duration:.6s;
  312. -o-transition-duration:.6s;
  313. }
  314.  
  315. #header:hover .links {
  316. opacity:1;
  317. -moz-transition-duration:0.8s;
  318. -webkit-transition-duration:0.8s;
  319. -o-transition-duration:0.8s;
  320. }
  321.  
  322.  
  323.  
  324.  
  325. .description{
  326. font-size:10.5px;
  327. font-family:arial;
  328. text-transform:lowercase;
  329. letter-spacing:1px;
  330. line-height:12px;
  331. width:400px;
  332. font-style: italic;
  333.  
  334. text-align:center;
  335.  
  336. margin-top:50px;
  337. margin-left:20px;
  338.  
  339. opacity:0;
  340. position:relative;
  341. z-index:2;
  342. -moz-transition-duration:0.6s;
  343. -webkit-transition-duration:0.6s;
  344. -o-transition-duration:0.6s;
  345.  
  346. }
  347.  
  348. .description a {
  349. font-style: italic;
  350. color:{color:description font} ;
  351. }
  352.  
  353. #header:hover .description {
  354. opacity:1;
  355. -moz-transition-duration:0.8s;
  356. -webkit-transition-duration:0.8s;
  357. -o-transition-duration:0.8s;
  358.  
  359. }
  360.  
  361.  
  362. .blogt {
  363. color:{color:title};
  364. font-size:24px;
  365. font-family: Helvetica;
  366. font-weight:300;
  367. text-transform:uppercase;
  368. text-align:center;
  369. letter-spacing:5px;
  370. position:relative;
  371.  
  372. margin-top:-20px;
  373. margin-left:-90px;
  374.  
  375. z-index:1;
  376. opacity:1;
  377. -moz-transition-duration:0.8s;
  378. -webkit-transition-duration:0.8s;
  379. -o-transition-duration:0.8s;
  380.  
  381.  
  382. }
  383.  
  384. #header:hover .blogt {
  385. opacity:0;
  386. -moz-transition-duration:0.6s;
  387. -webkit-transition-duration:0.6s;
  388. -o-transition-duration:0.6s;
  389. }
  390.  
  391.  
  392.  
  393.  
  394. .jump_page {
  395. margin:35px 0px 20px 0px;
  396. padding:5px 8px 5px 8px;
  397. background-color: #ffffff;
  398. color:#000;
  399. font-family:century gothic;
  400. font-size:11px;
  401. text-decoration:none;
  402. }
  403.  
  404. .current_page, .jump_page:hover {
  405. padding:5px 8px 5px 8px;
  406. background-color: #ffe;
  407. color: #000;
  408. font-family:century gothic;
  409. font-size:11px;
  410. text-decoration:none;
  411. }
  412.  
  413. /*container*/
  414. #con {
  415. left:50%;
  416. margin-left:-250px;
  417. position:absolute;
  418. }
  419.  
  420.  
  421.  
  422. /*posts*/
  423.  
  424. #entries {
  425. {block:ifnot500pxposts}
  426. width:400px;
  427. margin-top:230px;
  428. margin-left:70px;
  429. {/block:ifnot500pxposts}
  430. {block:if500pxposts}
  431. width:500px;
  432. margin-top:140px;
  433. margin-left:38px;
  434. {/block:if500pxposts}
  435. }
  436.  
  437.  
  438.  
  439. #posts {
  440. {block:ifnot500pxposts}
  441. width:400px;
  442. {/block:ifnot500pxposts}
  443. {block:if500pxposts}
  444. width:500px;
  445. {/block:if500pxposts}
  446.  
  447. {block:IndexPage}
  448. margin-bottom:75px;
  449. {/block:IndexPage}
  450. {block:PermalinkPage}
  451. margin-bottom:50px;
  452. {/block:PermalinkPage}
  453.  
  454.  
  455. }
  456. #posts img {
  457. {block:ifnot500pxposts}
  458. max-width:400px;
  459. {/block:ifnot500pxposts}
  460. {block:if500pxposts}
  461. max-width:500px;
  462. {/block:if500pxposts}
  463. }
  464.  
  465. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  466. .caption {width:100%;
  467. margin-top:10px;
  468.  
  469. }
  470.  
  471. /*quote*/
  472.  
  473. #titlequote{
  474. text-align:left;
  475. font-size:11px;
  476. line-height:13px;
  477. font-weight:bold;
  478. width:400px;
  479. {block:if500px}
  480. width:500px;
  481. {/block:if500px}
  482. }
  483. #source {
  484. margin-top:15px;
  485. margin-left:15px;
  486. width:400px;
  487. {block:if500px}
  488. width:500px;
  489. {/block:if500px}
  490. }
  491.  
  492.  
  493.  
  494. /*chat*/
  495.  
  496. .chat ol {
  497. padding:0;
  498. list-style:none;
  499. }
  500. .line {padding:5px 0;}
  501.  
  502. .label {font-weight:bold;
  503. }
  504.  
  505.  
  506.  
  507.  
  508.  
  509. /*permalink and notes*/
  510.  
  511. #permalink {
  512.  
  513.  
  514. width:400px;
  515. letter-spacing:1px;
  516. text-align:center;
  517. margin-top:5px;
  518. font-size:9px;
  519. padding:5px;
  520. height:20px;
  521.  
  522. }
  523.  
  524. #permalink a {margin-right:10px;
  525. font-style:italic;
  526. }
  527.  
  528. .tags {
  529. word-break:break-all;
  530. font-size:9px;
  531. color:{color:tags};
  532. background-color:{color:background};
  533. text-align:center;
  534. font-family:helvetica;
  535. text-transform:none;
  536. padding:5px 5px 5px 5px;
  537. {block:ifTagsHover}
  538. opacity:0;
  539. -webkit-transition:all 0.5s;
  540. -moz-transition:all 0.5s;
  541. -ms-transition:all 0.5s;
  542. -o-transition:all 0.5s;
  543. transition:all 0.5s;
  544. {/block:ifTagsHover}
  545. }
  546.  
  547. #posts:hover .tags {
  548. background-color:{color:background};
  549. {block:ifTagsHover}
  550. opacity:1;
  551. -webkit-transition:all 0.5s;
  552. -moz-transition:all 0.5s;
  553. -ms-transition:all 0.5s;
  554. -o-transition:all 0.5s;
  555. transition:all 0.5s;
  556. {/block:ifTagsHover}
  557. }
  558.  
  559. .pagenotes {
  560. {block:IndexPage}
  561. display: none!important;
  562. {/block:IndexPage}
  563. {block:ifnot500pxposts}
  564. width:400px;
  565. {/block:ifnot500pxposts}
  566. {block:if500pxposts}
  567. width:500px;
  568. {/block:if500pxposts}
  569. }
  570. .pagenotes img {
  571. display:none!important;}
  572. .pagenotes li {
  573. list-style-type:none;
  574. padding:5px 0px;
  575. text-align:left;
  576. margin:0 0 0 -40px;
  577. }
  578.  
  579.  
  580. #credit {
  581. bottom:8px;
  582. right:3px;
  583. font-size:15px;
  584. position:fixed;
  585. font-family:arial;
  586. text-transform: lowercase;
  587. letter-spacing: 1px;
  588. -moz-transition-duration:0.7s;
  589. -webkit-transition-duration:0.7s;
  590. -o-transition-duration:0.7s;
  591. }
  592. #credit a {
  593. color:{color:text};
  594. text-shadow: 0 0 4px rgba( 0, 0, 0, 0.5);
  595. -moz-transition-duration:0.7s;
  596. -webkit-transition-duration:0.7s;
  597. -o-transition-duration:0.7s;
  598. }
  599.  
  600.  
  601. #fade { /*--Transparent background layer--*/
  602. display: none; /*--hidden by default--*/
  603. background: #000;
  604. position: fixed; top: 0;
  605. margin-left:0px;
  606. margin-top:0px;
  607. width: 100%; height: 100%;
  608. opacity: 0.98;
  609. z-index: 9999;
  610.  
  611.  
  612. }
  613. .popup_block{
  614. display: none; /*--hidden by default--*/
  615. background: #fff;
  616. padding: 10px;
  617. border: 0px ;
  618. float: center;
  619. position: fixed;
  620. top: 50%; left: 55%;
  621. z-index: 99999;
  622. font-size:13px;
  623. line-height:16px;
  624. font-family:helvetica;
  625. letter-spacing:1px;
  626. color:#000;
  627. text-transform:none;
  628. font-size:12px;
  629. }
  630. img.btn_close {
  631. float: right;margin: -20px -20px 0 0;
  632. }
  633. /*--Making IE6 Understand Fixed Positioning--*/
  634. *html #fade {
  635. position: absolute;
  636. }
  637. *html .popup_block {
  638. position: absolute;
  639. }
  640.  
  641. #player {
  642. width:30px;
  643. height:30px;
  644. overflow:hidden;
  645. -moz-border-radius: 30px;
  646. -webkit-border-radius: 30px;
  647. border-radius: 30px;
  648. position:absolute;
  649. margin-top:45px;
  650. margin-bottom:45px;
  651. opacity: 0.7;
  652. filter:alpha(opacity=70);
  653. -moz-opacity: 0.7;
  654. -khtml-opacity: 0.7;
  655. }
  656.  
  657. #albumart { float:left; margin:0px 7px;}
  658.  
  659. #asks {
  660. padding:6px;
  661. font-family:cambria;
  662. letter-spacing:2px;
  663. text-align:left;
  664. font-style:italic;
  665. border:2.5px {color:border} solid;
  666. color:{color:text};
  667. background-color:{color:background}
  668. }
  669.  
  670.  
  671. {CustomCSS}
  672.  
  673. </style>
  674.  
  675.  
  676.  
  677. </head>
  678.  
  679. <body>
  680.  
  681.  
  682. <div id="con">
  683.  
  684.  
  685. <div id="header">
  686.  
  687. <div class="description">{Description}</div>
  688.  
  689. <div class="links">
  690.  
  691.  
  692. <a href="{text:Link 1 URL}" title="{text:Link 1}"></a>
  693.  
  694.  
  695. {block:ifNotPopUpAsk}
  696. {block:iflink2}<a href="{text:link 2 url}" title="{text:Link 2}"> </a>{/block:iflink2}
  697. {/block:ifNotPopUpAsk}
  698.  
  699. {block:ifPopUpAsk}
  700. <a href="#?w=500" rel="02" class="poplight" title="{text:Link 2}"></a>
  701. {/block:ifPopUpAsk}
  702.  
  703.  
  704. <a href="{text:Link 3 URL}" title="{text:Link 3}"></a>
  705.  
  706.  
  707.  
  708. {block:ifNotPopUpLink}
  709. {block:iflink4}<a href="{text:link 4 url}" title="{text:Link 4}"> </a>{/block:iflink4}
  710. {/block:ifNotPopUplink}
  711.  
  712. {block:ifPopUpLink}
  713. <a href="#?w=500" rel="03" class="poplight" title="{text:Link 4}"></a>
  714. {/block:ifPopUpLink}
  715.  
  716. </div>
  717. <div class="blogt">{Title}</div>
  718.  
  719.  
  720.  
  721.  
  722. </div>
  723.  
  724.  
  725.  
  726.  
  727. <div id="entries">
  728.  
  729. {block:Posts}
  730. <div id="posts">
  731.  
  732.  
  733.  
  734.  
  735.  
  736. {block:Quote}
  737.  
  738.  
  739. <div id="titlequote">“{Quote}”</div>
  740. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  741. {/block:Quote}
  742.  
  743.  
  744. {block:Text}
  745.  
  746. {block:Title}
  747. <div id="title">{Title}</div>{/block:Title}
  748. {Body}
  749. {/block:Text}
  750.  
  751. {block:Link}
  752. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  753. {/block:Link}
  754.  
  755. {block:Chat}
  756. {block:Title}
  757. <h1>{Title}</h1>
  758. {/block:Title}
  759. <div class="chat">
  760. <ol>{block:Lines}
  761. <li class="line {Alt}">
  762. {block:Label}
  763. <span class="label">
  764. {Label}</span>
  765. {/block:Label}{Line}</li>
  766. {/block:Lines}
  767. </ol></div>
  768. {/block:Chat}
  769.  
  770. {block:Photo}
  771.  
  772. {block:ifnot500pxposts}
  773. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  774. {/block:ifnot500pxposts}
  775. {block:if500pxposts}
  776. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  777. {/block:if500pxposts}
  778.  
  779. {/block:Photo}
  780.  
  781.  
  782. {block:Photoset}
  783. {block:ifnot500pxposts}
  784. {Photoset-400}
  785. {/block:ifnot500pxposts}
  786. {block:if500pxposts}
  787. {Photoset-500}
  788. {/block:if500pxposts}
  789. {/block:Photoset}
  790.  
  791. {block:Video}
  792. {block:ifnot500pxposts}
  793. {Video-400}
  794. {/block:ifnot500pxposts}
  795. {block:if500pxposts}
  796. {Video-500}
  797. {/block:if500pxposts}
  798. {/block:Video}
  799.  
  800. {block:Audio}
  801. <div id= "audioplayer">{AudioPlayerWhite}</div>
  802. {block:AlbumArt}
  803. <img src="{AlbumArtURL}" width="100">
  804. {/block:AlbumArt}
  805. {/block:Audio}
  806.  
  807. {block:Answer}<div id="asks"><span style="text-transform:uppercase;font-size:9px;font-style:italic;"> {Asker}: </span>{Question}</div><left> <font face="cambria">{Answer}</font>{/block:Answer}
  808.  
  809.  
  810.  
  811.  
  812. {block:IfShowCaption}
  813. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  814. {/block:IfShowCaption}
  815. {block:IfNotShowCaption}
  816. {block:PermalinkPage}
  817. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  818. {/block:PermalinkPage}
  819. {/block:IfNotShowCaption}
  820.  
  821.  
  822. {block:Date}
  823. <div id="permalink">
  824. <a href="{Permalink}" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix}</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} <a href="{ReblogURL}" target="_blank">reblog</a></span>
  825. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  826. </div>
  827. {/block:Date}
  828.  
  829.  
  830.  
  831.  
  832. </div>
  833.  
  834.  
  835. {block:PostNotes}
  836. <div class="pagenotes">
  837. {PostNotes}
  838. </div>
  839. {/block:PostNotes}
  840.  
  841.  
  842. {/block:Posts}
  843.  
  844. <div id="pagination">
  845. {block:Pagination}
  846. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&laquo;</a>{/block:PreviousPage}
  847. {block:JumpPagination length="5"}
  848. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  849. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  850. {block:NextPage}<a href="{NextPage}" class="jump_page">&raquo;</a>{/block:NextPage}
  851. {/block:Pagination}
  852.  
  853.  
  854. </div>
  855.  
  856.  
  857.  
  858. </div>
  859.  
  860. </div>
  861.  
  862.  
  863. {block:ContentSource}
  864. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  865. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  866. {/block:SourceLogo}
  867. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  868. {/block:ContentSource}
  869.  
  870. </body>
  871.  
  872.  
  873.  
  874. <div id="credit"><a href="http://aeternothemes.tumblr.com/" title="aeterno themes"> △</a></center></div>
  875.  
  876.  
  877.  
  878. <div id="03" class="popup_block">
  879.  
  880. {text:PopUpLinks}
  881.  
  882. </div>
  883.  
  884.  
  885.  
  886.  
  887. <div id="02" class="popup_block">
  888.  
  889. <Center><b>{text:Ask}</b><br><br><iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/{text:URL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  890. </center></div>
  891.  
  892. </div></div></div></div></div></div></div></div></div></div>
  893.  
  894.  
  895. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement