Advertisement
yLii

Infinite Isotope 25

Jan 9th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{Title}</title>
  5.  
  6.  
  7. <script src="http://static.tumblr.com/iuvoef7/bXomx943d/jquery-1.7.1.min.js"></script>
  8.  
  9. <!--don't understand why this script doesn't work -->
  10. <script src="http://static.tumblr.com/iuvoef7/hshmx93xt/jquery.isotope.min.js"></script>
  11.  
  12. <!-- for some reason this one works -->
  13. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/2.2.2/isotope.pkgd.min.js"></script>
  14.  
  15. <!--cellsbycolumn-->
  16. <script src="https://raw.githubusercontent.com/metafizzy/isotope-cells-by-column/master/cells-by-column.js"></script>
  17.  
  18. <!--cellsbyrow-->
  19. <script src="https://raw.githubusercontent.com/metafizzy/isotope-cells-by-row/master/cells-by-row.js"></script>
  20.  
  21. <!--fitcolumns-->
  22. <script src="https://raw.githubusercontent.com/metafizzy/isotope-fit-columns/master/fit-columns.js"></script>
  23.  
  24. <!--masonryhorizontal-->
  25. <script src="https://raw.githubusercontent.com/metafizzy/isotope-masonry-horizontal/master/masonry-horizontal.js"></script>
  26.  
  27.  
  28. <!--horizontal horiz-->
  29. <script src="https://raw.githubusercontent.com/metafizzy/isotope-horizontal/master/horizontal.js"></script>
  30.  
  31.  
  32.  
  33. <!--infinite scroll -->
  34. <script src="http://static.tumblr.com/iuvoef7/tIEmx9449/jquery.infinitescroll.min.js"></script>
  35.  
  36.  
  37. <!--smooth scrolling-->
  38. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.6/SmoothScroll.min.js"></script>
  39.  
  40.  
  41. <script>
  42.  
  43. //main function, called isotope
  44.  
  45. var isotope = $(function(){
  46. var $container = $('#content');
  47. $container.imagesLoaded(function(){
  48. $container.isotope({
  49. itemSelector : '.box',
  50. layoutMode : '{select:Layout Type}',
  51. masonry: {
  52. gutter: {text:Gutter Width}
  53. }
  54. {block:ifMasonryHorizontal}
  55. masonryHorizontal: {
  56. rowHeight: 50
  57. }
  58. {/block:ifMasonryHorizontal}
  59. });
  60. });
  61.  
  62.  
  63. //infinite scroll and callback
  64.  
  65.  
  66. $container.infinitescroll({
  67. navSelector : '#page_nav',
  68. nextSelector : '#page_nav a',
  69. itemSelector : '.box',
  70. loading: {
  71. finishedMsg: 'You have reached the end of the internet.',
  72. img: 'http://i.imgur.com/qkKy8.gif'
  73. }
  74. },
  75. // call Isotope as a callback
  76. function ( newElements ) {
  77. var $newElems = jQuery( newElements ).hide(); // hide to begin with
  78. $( newElements ).find('.photo-slideshow').pxuPhotoset({
  79. lightbox: true,
  80. rounded: false,
  81. gutter: ' {text:Gutter Width}px',
  82. borderRadius: '0px',
  83. highRes : true,
  84. captions : true,
  85. photoset: '.photo-slideshow',
  86. photoWrap: '.photo-data',
  87. photo: '.pxu-photo'
  88. });
  89. // ensure that images load before adding to masonry layout
  90. $newElems.imagesLoaded(function(){
  91. $newElems.fadeIn(); // fade in when ready
  92. $container.isotope( 'insert', $newElems );
  93.  
  94.  
  95. });
  96. }
  97.  
  98.  
  99. );
  100.  
  101. {block:ifManualInfiniteScroll}
  102. //manual infinite scroll
  103. $(window).unbind('.infscr');
  104. $('.load-more').click(function(){
  105. $container.infinitescroll('retrieve');
  106. return false
  107. });
  108. {/block:ifManualInfiniteScroll}
  109.  
  110.  
  111. }); //ending main function
  112.  
  113.  
  114.  
  115. $(document).ready(isotope);
  116.  
  117. </script>
  118.  
  119. <!--Responsive photosets-->
  120. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  121. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  122.  
  123. <script>
  124. $(document).ready(function(){
  125. $('.photo-slideshow').pxuPhotoset({
  126. lightbox: true,
  127. rounded: false,
  128. gutter: ' {text:Gutter Width}px',
  129. borderRadius: '0px',
  130. highRes : true,
  131. captions : true,
  132. photoset: '.photo-slideshow',
  133. photoWrap: '.photo-data',
  134. photo: '.pxu-photo'
  135. });
  136. });
  137. </script>
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146. <meta name="image:Background" content="" />
  147. <meta name="image:Lollipop Background" content="" />
  148. <meta name="image:Quote Background" content="" />
  149. <meta name="image:HeaderBackground" content="" />
  150.  
  151. <meta name="color:Background" content="#ffffff" />
  152. <meta name="color:Lightbox Background" content="#fff" />
  153. <meta name="color:Links" content="#619251" />
  154. <meta name="color:Text highlight" content="#d83e5c" />
  155. <meta name="color:Lollipop" content="#000000" />
  156. <meta name="color:Lollipop Hover" content="#b7512e" />
  157. <meta name="color:Hover" content="#b7512e" />
  158. <meta name="color:Scrollbar" content="#fed3f2" />
  159.  
  160. <meta name="font:Header Font" content="Arial" />
  161.  
  162.  
  163.  
  164.  
  165. <meta name="if:Captions" content="0" />
  166. <meta name="if:Fade" content="1" />
  167. <meta name="if:Head Space" content="1" />
  168. <meta name="if:Horizontal" content="0" />
  169. <meta name="if:Infinite Scroll" content="1" />
  170. <meta name="if:Manual Infinite Scroll" content="1" />
  171. <meta name="if:Masonry Horizontal" content="0" />
  172. <meta name="if:Sidebar" content="0" />
  173. <meta name="if:Stack Photoset" content="0" />
  174.  
  175.  
  176. <meta name="select:Content Width" content="30%" />
  177. <meta name="select:Content Width" content="40%" />
  178. <meta name="select:Content Width" content="50%" />
  179. <meta name="select:Content Width" content="60%" />
  180. <meta name="select:Content Width" content="70%" />
  181. <meta name="select:Content Width" content="80%" />
  182. <meta name="select:Content Width" content="90%" />
  183. <meta name="select:Content Width" content="100%" />
  184.  
  185.  
  186. <meta name="select:Fade Opacity" content="0.1" />
  187. <meta name="select:Fade Opacity" content="0.2" />
  188. <meta name="select:Fade Opacity" content="0.3" />
  189. <meta name="select:Fade Opacity" content="0.4" />
  190. <meta name="select:Fade Opacity" content="0.5" />
  191. <meta name="select:Fade Opacity" content="0.6" />
  192. <meta name="select:Fade Opacity" content="0.7" />
  193. <meta name="select:Fade Opacity" content="0.8" />
  194. <meta name="select:Fade Opacity" content="0.9" />
  195. <meta name="select:Fade Opacity" content="1.0" />
  196.  
  197. <meta name="select:Float" content="margin:auto" title="Align Center" />
  198. <meta name="select:Float" content="float:left" title="Align Left" />
  199. <meta name="select:Float" content="float:right" title="Align Right" />
  200.  
  201.  
  202.  
  203.  
  204. <meta name="select:SideFloat" content="left" title="Left Sidebar" />
  205. <meta name="select:SideFloat" content="right" title="Right Sidebar" />
  206.  
  207.  
  208. <meta name="select:Layout Type" content="cellsByColumn" title="Cells by Column" />
  209. <meta name="select:Layout Type" content="cellsByRow" title="Cells by Row" />
  210. <meta name="select:Layout Type" content="fitColumns" title="Fit Columns" />
  211. <meta name="select:Layout Type" content="fitRows" title="Fit Rows" />
  212. <meta name="select:Layout Type" content="horiz" title="Horizontal" />
  213. <meta name="select:Layout Type" content="masonry" title="Masonry" />
  214. <meta name="select:Layout Type" content="masonryHorizontal" title="Masonry Horizontal" />
  215. <meta name="select:Layout Type" content="vertical" title="Vertical" />
  216.  
  217.  
  218.  
  219.  
  220. <!--Post Width in relation to Content Width -->
  221. <meta name="select:Post Width" content="25%" />
  222. <meta name="select:Post Width" content="30%" />
  223. <meta name="select:Post Width" content="32%" />
  224. <meta name="select:Post Width" content="32.75%" />
  225. <meta name="select:Post Width" content="33.33%" />
  226. <meta name="select:Post Width" content="40%" />
  227. <meta name="select:Post Width" content="50%" />
  228. <meta name="select:Post Width" content="60%" />
  229. <meta name="select:Post Width" content="70%" />
  230. <meta name="select:Post Width" content="75%" />
  231. <meta name="select:Post Width" content="80%" />
  232. <meta name="select:Post Width" content="90%" />
  233. <meta name="select:Post Width" content="100%" />
  234.  
  235. <meta name="text:Body Font" content="Open Sans" />
  236. <meta name="text:Header Font" content="Open Sans"/>
  237. <meta name="text:Link Font" content="Open Sans" />
  238. <meta name="text:Gutter Width" content="0" />
  239.  
  240.  
  241. <!--fonts-->
  242. <link href='http://fonts.googleapis.com/css?family={text:Body Font}' rel='stylesheet' type='text/css'>
  243. <link href='http://fonts.googleapis.com/css?family={text:Header Font}' rel='stylesheet' type='text/css'>
  244. <link href='http://fonts.googleapis.com/css?family={text:Link Font}' rel='stylesheet' type='text/css'>
  245.  
  246.  
  247.  
  248.  
  249.  
  250. <link rel="shortcut icon" href="{Favicon}">
  251. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  252. <link href="http://static.tumblr.com/wgijwsy/k1Hm9ei8b/normalize.css" rel="stylesheet" type="text/css" />
  253.  
  254.  
  255.  
  256.  
  257.  
  258. <style type="text/css">
  259. @font-face {font-family:"Accent";src:url('http://static.tumblr.com/m9qxvhq/mc9mhlhm3/accent.ttf');}
  260. @font-face {font-family:"Barkentina";src:url('http://static.tumblr.com/m9qxvhq/CH5mhn23p/barkentina_1.otf');}
  261. @font-face {font-family:"Blake";src:url('http://static.tumblr.com/m9qxvhq/bnRmhedq1/blake2.ttf');}
  262. @font-face {font-family:"Buffet";src:url('http://static.tumblr.com/m9qxvhq/0V2mhl3je/buffet_script.ttf');}
  263.  
  264. @font-face {font-family:"Jellyka";src:url('http://static.tumblr.com/iuvoef7/mNnojgowh/jellyka_bees_antique_handwriting.ttf');}
  265. @font-face {font-family:"Mayo";src:url('http://static.tumblr.com/m9qxvhq/dD6mhcpd0/mayonaise-condensed.otf');}
  266.  
  267.  
  268. @font-face {font-family:"Sachiko";src:url('http://static.tumblr.com/m9qxvhq/UTEmhi6ks/sachiko.ttf');}
  269. @font-face {font-family:"Sugah";src:url('http://static.tumblr.com/m9qxvhq/Dghmhi6ct/frenchsugar.ttf');}
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276. ::-webkit-scrollbar {width: 8px; height: 4px; background: {color:Background}; opacity:0.5;}
  277. ::-webkit-scrollbar-thumb { background-color: {color:Scrollbar}; -webkit-border-radius: 2ex; }
  278. ::-moz-scrollbar {width: 8px; height: 4px; background: {color:Background}; }
  279. ::-moz-scrollbar-thumb { background-color: {color:Scrollbar}; -moz-border-radius: 2ex; }
  280. ::-o-scrollbar {width: 8px; height: 4px; background: {color:Background}; }
  281. ::-o-scrollbar-thumb { background-color: {color:Scrollbar}; -o-border-radius: 2ex; }
  282.  
  283. {block:PermalinkPage}
  284. ::-webkit-scrollbar {width: 8px; height: 4px; background: {color:Background}; opacity:0.5;}
  285. ::-webkit-scrollbar-thumb { background-color: {color:Background}; -webkit-border-radius: 2ex; }
  286. ::-moz-scrollbar {width: 8px; height: 4px; background: {color:Background}; }
  287. ::-moz-scrollbar-thumb { background-color: {color:Background}; -moz-border-radius: 2ex; }
  288. ::-o-scrollbar {width: 8px; height: 4px; background: {color:Background}; }
  289. ::-o-scrollbar-thumb { background-color: {color:Background}; -o-border-radius: 2ex; }
  290. {block:PermalinkPage}
  291.  
  292.  
  293.  
  294.  
  295. ::selection {background: #d83e5c;color: #fff;}
  296. ::-moz-selection {background: #d83e5c;color: #fff;}
  297.  
  298.  
  299.  
  300.  
  301. html {
  302. width:100%;
  303. }
  304.  
  305.  
  306.  
  307. body {
  308. cursor:url(''), crosshair;
  309. background: {color:Background};
  310. width:100%;
  311. font-family:'{text:Body Font}';
  312.  
  313.  
  314. {block:PermalinkPage}
  315. height:100vh;
  316. overflow:hidden;
  317. {/block:PermalinkPage}
  318.  
  319. }
  320.  
  321.  
  322. {block:IfHeadSpace}
  323. .headspace{
  324. width:100%;
  325. height:21vh;
  326. padding-top:10vh;
  327. text-align:center;
  328. vertical-align:middle;
  329. font-size:50px;
  330. {/block:IfHeadSpace}
  331. font-family:{text:Header Font};
  332.  
  333.  
  334.  
  335. }
  336.  
  337. .header {
  338.  
  339. }
  340.  
  341.  
  342. #content {
  343. {block:IfNotHorizontal}
  344. width:{select:Content Width};
  345. {select:Float};
  346. {/block:IfNotHorizontal}
  347. {block:IfHorizontal}
  348. height:{select:Content Width};
  349. max-height:100vh;
  350. vertical-align:middle;
  351. {/block:IfHorizontal}
  352.  
  353. {block:PermalinkPage}
  354. width:100%;
  355. {/block:PermalinkPage}
  356.  
  357. }
  358.  
  359.  
  360.  
  361.  
  362.  
  363. a, a:hover, a:visited {
  364. cursor:inherit;
  365. text-decoration:none;
  366. color:inherit;
  367. }
  368.  
  369.  
  370. #nav {
  371. float: left;
  372. margin-top: 20px;
  373. position: fixed;
  374. z-index:1000;
  375. right:0px;
  376. margin-right:auto;
  377. position:fixed;
  378. }
  379.  
  380. #nav a {
  381. text-decoration: none;
  382. font-size: 15px;
  383. line-height: 25px;
  384. color: #595959;
  385. }
  386.  
  387. #nav a:hover {
  388. color: #393939;
  389. }
  390.  
  391. #nav a:active {
  392. color: #151515;
  393. }
  394.  
  395.  
  396. .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {display:none;}
  397. #infscr-loading {display:none;}
  398. .navigation {display:none!important;}
  399.  
  400.  
  401.  
  402. .isotope-item {
  403. z-index: 2;
  404. }
  405.  
  406. .isotope-hidden.isotope-item {
  407. pointer-events: none;
  408. z-index: 1;
  409. }
  410.  
  411. .isotope,
  412. .isotope .isotope-item {
  413. /* change duration value to whatever you like */
  414. -webkit-transition-duration: 0.8s;
  415. -moz-transition-duration: 0.8s;
  416. transition-duration: 0.8s;
  417. }
  418.  
  419. .isotope {
  420. -webkit-transition-property: height, width;
  421. -moz-transition-property: height, width;
  422. transition-property: height, width;
  423. }
  424.  
  425. .isotope .isotope-item {
  426. -webkit-transition-property: -webkit-transform, opacity;
  427. -moz-transition-property: -moz-transform, opacity;
  428. transition-property: transform, opacity;
  429. }
  430.  
  431.  
  432.  
  433. .box {
  434. cursor:inherit;
  435. margin-bottom:{text:Gutter Width}px;
  436. font-family:'{text:Body Font}';
  437. font-size:10px;
  438. {block:IfNotHorizontal}
  439. float: left;
  440. width:{select:Post Width};
  441. {/block:IfNotHorizontal}
  442.  
  443. {block:IfHorizontal}
  444. width:400px;
  445. {/block:IfHorizontal}
  446.  
  447.  
  448. {block:IfFade}
  449. opacity:{select:Fade Opacity};
  450. -webkit-transition-duration: 0.8s;
  451. -moz-transition-duration: 0.8s;
  452. transition-duration: 0.8s;
  453. {/block:IfFade}
  454.  
  455. }
  456.  
  457.  
  458.  
  459. .box:hover {
  460. {block:IfFade}
  461. opacity:1.0;
  462. -webkit-transition-duration: 0.8s;
  463. -moz-transition-duration: 0.8s;
  464. transition-duration: 0.8s;
  465. {/block:IfFade}
  466. }
  467.  
  468.  
  469. .text {
  470. height: 50vh;
  471. display:block;
  472. text-overflow: ellipsis;
  473. -o-text-overflow: ellipsis;
  474. -ms-text-overflow: ellipsis;
  475. overflow: hidden;
  476. white-space: nowrap;
  477. }
  478.  
  479.  
  480. .permalink-post {
  481. font-size:1.3vh;
  482. height:50vh;
  483. text-align:center;
  484.  
  485. }
  486.  
  487. .permalink-post .text {
  488. overflow:scroll;
  489. }
  490.  
  491. .permalink-post .photo, .permalink-post .photoset {
  492. overflow:hidden;
  493. }
  494.  
  495.  
  496.  
  497. .photo {
  498.  
  499. }
  500.  
  501. .photoset{
  502.  
  503. }
  504.  
  505. {block:IfHorizontal}
  506. {block:ifStackPhotoset}
  507. .photoset-wrap {}
  508. .photoset-wrap img { display: none; width:100%; }
  509. .photoset-wrap img:first-child { display: block; width:100%; }
  510. {/block:ifStackPhotoset}
  511. {/block:IfHorizontal}
  512.  
  513. {block:ifStackPhotoset}
  514. .photoset-wrap {}
  515. .photoset-wrap img { display: none; width:100%; }
  516. .photoset-wrap img:first-child { display: block; width:100%; }
  517. {/block:ifStackPhotoset}
  518.  
  519. .photocount, .photocount a {
  520. right:0px;
  521. bottom:0px;
  522. position:absolute;
  523. font-size:10px;
  524. font-family:;
  525. color:{color:Background};
  526. }
  527.  
  528.  
  529.  
  530.  
  531.  
  532. #vignette, .vignette{opacity:0!important;}.lightbox-caption {color:#000;}
  533. #tumblr_lightbox,.tmblr-lightbox{background:rgba(255,255,255,0.8)!important;}
  534. #tumblr_lightbox img, .lightbox-image {box-shadow:none!important;border-radius:0px!important;}
  535.  
  536.  
  537.  
  538.  
  539.  
  540. .pagination {
  541. padding-top:5vh;
  542. height:20vh;
  543. width:100vw;
  544. bottom:0px;
  545. color:black;
  546. }
  547.  
  548. .load-more {
  549. font-family:'{text:Link Font}';
  550. left:50vw;
  551. margin-top:7vh;
  552. border:0;
  553. padding-top:2vh;
  554. padding-bottom:2vh;
  555. padding-left:10vw;
  556. padding-right:10vw;
  557. background:#f0f0f0;
  558. color:#9f9f9f;
  559. -webkit-transition-duration: 0.8s;
  560. -moz-transition-duration: 0.8s;
  561. transition-duration: 0.8s;
  562.  
  563. }
  564.  
  565.  
  566. .load-more:hover {
  567. background:{color:Links};
  568. color:{color:Background};
  569. -webkit-transition-duration: 0.8s;
  570. -moz-transition-duration: 0.8s;
  571. transition-duration: 0.8s;
  572. }
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581. {block:ifSidebar}
  582. {/block:ifSidebar}
  583. .sidebar {
  584. {select:SideFloat}:0px;
  585. float:{select:SideFloat};
  586. width:calc(100% - {select:Content Width} );
  587. background-color:cyan;
  588.  
  589. }
  590.  
  591.  
  592.  
  593.  
  594. .portrait {
  595. vertical-align:middle;
  596. border-radius:35px;
  597. opacity:0.7;
  598. -webkit-transition-duration: 0.8s;
  599. -moz-transition-duration: 0.8s;
  600. transition-duration: 0.8s;
  601. }
  602.  
  603.  
  604. .portrait:hover {
  605. opacity:1.0;
  606. border-radius:0px;
  607. -webkit-transition-duration: 0.8s;
  608. -moz-transition-duration: 0.8s;
  609. transition-duration: 0.8s;
  610.  
  611.  
  612. }
  613.  
  614.  
  615.  
  616. </style>
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627. </head>
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640. <body>
  641.  
  642.  
  643.  
  644.  
  645. {block:IfHeadSpace}
  646. <div class="headspace"><a href="{BlogURL}" class="header">{Title}</a></div>
  647. {/block:IfHeadSpace}
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654. <div id="content">
  655. {block:Posts}
  656.  
  657. {block:IndexPage}
  658.  
  659. {block:Text}
  660. <div class="box text">
  661. <u><a href="{Permalink}">{Title}</a></u>
  662. {Body}
  663. </div>
  664. {/block:Text}
  665.  
  666.  
  667.  
  668. {block:Photo}
  669.  
  670. <a href="#">
  671. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" class="box photo" onclick="Tumblr.Lightbox.init([{ width: {PhotoWidth-HighRes}, height: {PhotoHeight-HighRes}, low_res: '{PhotoURL-500}', high_res: '{PhotoURL-HighRes}' }]); $('body').toggleClass('tumblr_lightbox_active'); return false" />
  672. </a>
  673. {/block:Photo}
  674.  
  675.  
  676. {block:Photoset}
  677. <div class="box">
  678.  
  679. {block:ifNotStackPhotoset}
  680. <!--preset code to abide by pxu -->
  681. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  682.  
  683. {block:Photos}
  684. <div class="photo-data">
  685. <div class="pxu-photo">
  686. <img src="{PhotoURL-HighRes}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  687. </div>
  688. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}">
  689. </a>
  690. </div>
  691. {/block:Photos}
  692. </div>
  693. {block:ifNotStackPhotoset}
  694.  
  695.  
  696.  
  697. {block:ifStackPhotoset}
  698. {block:IndexPage}
  699. <div class="photoset-wrap">
  700. {block:Photos}
  701. <!-- <a href="#"> for some reason loads all images in photoset-->
  702. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" onclick="Tumblr.Lightbox.init([{ width: {PhotoWidth-HighRes}, height: {PhotoHeight-HighRes}, low_res: '{PhotoURL-500}', high_res: '{PhotoURL-HighRes}' }]); $('body').toggleClass('tumblr_lightbox_active'); return false" />
  703. <!-- </a> -->
  704.  
  705. {/block:Photos}
  706. <div class="photocount"><a href="{Permalink}">{PhotoCount}</a></div>
  707. </div>
  708. {/block:IndexPage}
  709. {/block:ifStackPhotoset}
  710.  
  711.  
  712.  
  713.  
  714. {block:ifCaptions}
  715. {Caption}
  716. {/block:ifCaptions}
  717.  
  718. </div>
  719. {/block:Photoset}
  720.  
  721. {/block:IndexPage}
  722.  
  723.  
  724.  
  725.  
  726. {block:PermalinkPage}
  727.  
  728.  
  729. <div class="permalink-post">
  730.  
  731. {block:Text}
  732. <div class="text">
  733. {Title}
  734. {Body}
  735. </div>
  736. {/block:Text}
  737.  
  738. {block:Photo}
  739. <img src="{PhotoURL-HighRes}" style="width:auto; height:100%; margin:auto"/>
  740. {block:Photo}
  741.  
  742. {block:Photoset}
  743. {Photoset}
  744. {block:Photoset}
  745.  
  746. </div>
  747.  
  748.  
  749. {/block:PermalinkPage}
  750.  
  751.  
  752.  
  753.  
  754. {/block:Posts}
  755. </div>
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771. {block:ifSidebar}
  772. {block:IndexPage}
  773. <div class="sidebar">
  774.  
  775. <center><img src="{PortraitURL-64}" class="portrait" /></center>
  776.  
  777. </div>
  778. {block:IndexPage}
  779. {/block:ifSidebar}
  780.  
  781.  
  782.  
  783. <div class="navigation">
  784. {block:Pagination}
  785. {block:NextPage}
  786. <p id="page_nav"><a style="float:right" href="{NextPage}" id="next">Older ?</a>
  787. {/block:NextPage}
  788. {block:PreviousPage}
  789. <a style="float:left" href="{PreviousPage}">? Newer</a></p>
  790. {/block:PreviousPage}
  791. {/block:Pagination}
  792. </div>
  793.  
  794.  
  795. {block:ifManualInfiniteScroll}
  796. {block:Pagination}
  797. <div class="pagination">
  798. <center><button class="load-more">load more</button></center>
  799. </div>
  800. {/block:Pagination}
  801. {/block:ifManualInfiniteScroll}
  802.  
  803.  
  804.  
  805. {block:PermalinkPage}
  806. {block:PermalinkPagination}
  807. {block:PreviousPost} <a href="{PreviousPost}" style="float:right; right:0px; bottom:0px; position:fixed;"> Older </a>{/block:PreviousPost}
  808. {block:NextPost}<a href="{NextPost}" style="float:left; left:0px; bottom:0px; position:fixed;">Newer</a> {/block:NextPost}
  809. {/block:PermalinkPagination}
  810. {block:PermalinkPage}
  811.  
  812.  
  813.  
  814. </body>
  815. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement