Advertisement
yLii

Infinite Isotope 23

Jan 8th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.68 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.  
  284.  
  285.  
  286. ::selection {background: #d83e5c;color: #fff;}
  287. ::-moz-selection {background: #d83e5c;color: #fff;}
  288.  
  289.  
  290.  
  291.  
  292. html {
  293. width:100%;
  294. }
  295.  
  296.  
  297.  
  298. body {
  299. cursor:url(''), crosshair;
  300. background: {color:Background};
  301. width:100%;
  302. font-family:'{text:Body Font}';
  303.  
  304.  
  305.  
  306. }
  307.  
  308.  
  309. {block:IfHeadSpace}
  310. .headspace{
  311. width:100%;
  312. height:21vh;
  313. padding-top:10vh;
  314. text-align:center;
  315. vertical-align:middle;
  316. font-size:50px;
  317. {/block:IfHeadSpace}
  318. font-family:{text:Header Font};
  319. }
  320.  
  321. .header {
  322.  
  323. }
  324.  
  325.  
  326. #content {
  327. {block:IfNotHorizontal}
  328. width:{select:Content Width};
  329. {select:Float};
  330. {/block:IfNotHorizontal}
  331. {block:IfHorizontal}
  332. height:{select:Content Width};
  333. max-height:100vh;
  334. vertical-align:middle;
  335.  
  336.  
  337. {/block:IfHorizontal}
  338.  
  339.  
  340.  
  341. }
  342.  
  343.  
  344.  
  345.  
  346.  
  347. a, a:hover, a:visited {
  348. cursor:inherit;
  349. text-decoration:none;
  350. color:inherit;
  351. }
  352.  
  353.  
  354. #nav {
  355. float: left;
  356. margin-top: 20px;
  357. position: fixed;
  358. z-index:1000;
  359. right:0px;
  360. margin-right:auto;
  361. position:fixed;
  362. }
  363.  
  364. #nav a {
  365. text-decoration: none;
  366. font-size: 15px;
  367. line-height: 25px;
  368. color: #595959;
  369. }
  370.  
  371. #nav a:hover {
  372. color: #393939;
  373. }
  374.  
  375. #nav a:active {
  376. color: #151515;
  377. }
  378.  
  379.  
  380. .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {display:none;}
  381. #infscr-loading {display:none;}
  382. .navigation {display:none!important;}
  383.  
  384.  
  385.  
  386. .isotope-item {
  387. z-index: 2;
  388. }
  389.  
  390. .isotope-hidden.isotope-item {
  391. pointer-events: none;
  392. z-index: 1;
  393. }
  394.  
  395. .isotope,
  396. .isotope .isotope-item {
  397. /* change duration value to whatever you like */
  398. -webkit-transition-duration: 0.8s;
  399. -moz-transition-duration: 0.8s;
  400. transition-duration: 0.8s;
  401. }
  402.  
  403. .isotope {
  404. -webkit-transition-property: height, width;
  405. -moz-transition-property: height, width;
  406. transition-property: height, width;
  407. }
  408.  
  409. .isotope .isotope-item {
  410. -webkit-transition-property: -webkit-transform, opacity;
  411. -moz-transition-property: -moz-transform, opacity;
  412. transition-property: transform, opacity;
  413. }
  414.  
  415.  
  416.  
  417. .box {
  418. cursor:inherit;
  419. margin-bottom:{text:Gutter Width}px;
  420. font-family:'{text:Body Font}';
  421. font-size:10px;
  422. {block:IfNotHorizontal}
  423. float: left;
  424. width:{select:Post Width};
  425. {/block:IfNotHorizontal}
  426.  
  427. {block:IfHorizontal}
  428. width:400px;
  429. {/block:IfHorizontal}
  430.  
  431.  
  432. {block:IfFade}
  433. opacity:{select:Fade Opacity};
  434. -webkit-transition-duration: 0.8s;
  435. -moz-transition-duration: 0.8s;
  436. transition-duration: 0.8s;
  437. {/block:IfFade}
  438.  
  439. }
  440.  
  441.  
  442.  
  443. .box:hover {
  444. {block:IfFade}
  445. opacity:1.0;
  446. -webkit-transition-duration: 0.8s;
  447. -moz-transition-duration: 0.8s;
  448. transition-duration: 0.8s;
  449. {/block:IfFade}
  450. }
  451.  
  452.  
  453.  
  454. .text {
  455. font-size:10%;
  456. }
  457.  
  458. .photo {
  459.  
  460. }
  461.  
  462. .photoset{
  463.  
  464. }
  465.  
  466. {block:IfHorizontal}
  467. {block:ifStackPhotoset}
  468. .photoset-wrap {}
  469. .photoset-wrap img { display: none; width:100%; }
  470. .photoset-wrap img:first-child { display: block; width:100%; }
  471. {/block:ifStackPhotoset}
  472. {/block:IfHorizontal}
  473.  
  474. {block:ifStackPhotoset}
  475. .photoset-wrap {}
  476. .photoset-wrap img { display: none; width:100%; }
  477. .photoset-wrap img:first-child { display: block; width:100%; }
  478. {/block:ifStackPhotoset}
  479.  
  480. .photocount, .photocount a {
  481. right:0px;
  482. bottom:0px;
  483. position:absolute;
  484. font-size:10px;
  485. font-family:;
  486. color:{color:Background};
  487. }
  488.  
  489.  
  490.  
  491.  
  492.  
  493. #vignette, .vignette{opacity:0!important;}.lightbox-caption {color:#000;}
  494. #tumblr_lightbox,.tmblr-lightbox{background:rgba(255,255,255,0.8)!important;}
  495. #tumblr_lightbox img, .lightbox-image {box-shadow:none!important;border-radius:0px!important;}
  496.  
  497.  
  498.  
  499.  
  500.  
  501. .pagination {
  502. padding-top:5vh;
  503. height:20vh;
  504. width:100vw;
  505. bottom:0px;
  506. }
  507.  
  508. .load-more {
  509. font-family:'{text:Link Font}';
  510. left:50vw;
  511. margin-top:7vh;
  512. border:0;
  513. padding-top:2vh;
  514. padding-bottom:2vh;
  515. padding-left:10vw;
  516. padding-right:10vw;
  517. background:#f0f0f0;
  518. color:#9f9f9f;
  519. -webkit-transition-duration: 0.8s;
  520. -moz-transition-duration: 0.8s;
  521. transition-duration: 0.8s;
  522.  
  523. }
  524.  
  525.  
  526. .load-more:hover {
  527. background:{color:Links};
  528. color:{color:Background};
  529. -webkit-transition-duration: 0.8s;
  530. -moz-transition-duration: 0.8s;
  531. transition-duration: 0.8s;
  532. }
  533.  
  534.  
  535.  
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542. {block:ifSidebar}
  543. {/block:ifSidebar}
  544. .sidebar {
  545. {select:SideFloat}:0px;
  546. float:{select:SideFloat};
  547. width:calc(100% - {select:Content Width} );
  548. background-color:cyan;
  549.  
  550. }
  551.  
  552.  
  553.  
  554.  
  555. .portrait {
  556. vertical-align:middle;
  557. border-radius:35px;
  558. opacity:0.7;
  559. -webkit-transition-duration: 0.8s;
  560. -moz-transition-duration: 0.8s;
  561. transition-duration: 0.8s;
  562. }
  563.  
  564.  
  565. .portrait:hover {
  566. opacity:1.0;
  567. border-radius:0px;
  568. -webkit-transition-duration: 0.8s;
  569. -moz-transition-duration: 0.8s;
  570. transition-duration: 0.8s;
  571.  
  572.  
  573. }
  574.  
  575.  
  576.  
  577. </style>
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588. </head>
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601. <body>
  602.  
  603.  
  604.  
  605.  
  606. {block:IfHeadSpace}
  607. <div class="headspace"><a href="{BlogURL}" class="header">{Title}</a></div>
  608. {/block:IfHeadSpace}
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615. <div id="content">
  616. {block:Posts}
  617.  
  618.  
  619. <!-- {block:Text}
  620. <div class="box text">
  621. {Title}
  622. {Body}
  623. </div>
  624. {/block:Text} -->
  625.  
  626.  
  627.  
  628. {block:Photo}
  629.  
  630. <a href="#">
  631. <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" />
  632. </a>
  633. {/block:Photo}
  634.  
  635.  
  636. {block:Photoset}
  637. <div class="box">
  638.  
  639.  
  640. {block:ifNotStackPhotoset}
  641. <!--preset code to abide by pxu -->
  642. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  643.  
  644. {block:Photos}
  645. <div class="photo-data">
  646. <div class="pxu-photo">
  647. <img src="{PhotoURL-HighRes}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  648. </div>
  649. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}">
  650. </a>
  651. </div>
  652. {/block:Photos}
  653. </div>
  654. {block:ifNotStackPhotoset}
  655.  
  656.  
  657.  
  658. {block:ifStackPhotoset}
  659. {block:IndexPage}
  660. <div class="photoset-wrap">
  661. {block:Photos}
  662. <!-- <a href="#"> for some reason loads all images in photoset-->
  663. <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" />
  664. <!-- </a> -->
  665.  
  666. {/block:Photos}
  667. <div class="photocount"><a href="{Permalink}">{PhotoCount}</a></div>
  668. </div>
  669. {/block:IndexPage}
  670. {/block:ifStackPhotoset}
  671.  
  672.  
  673.  
  674.  
  675. {block:PermalinkPage}
  676. <center>{Photoset}</center>
  677. {/block:PermalinkPage}
  678.  
  679.  
  680. {block:ifCaptions}
  681. {Caption}
  682. {/block:ifCaptions}
  683.  
  684. </div>
  685. {/block:Photoset}
  686.  
  687.  
  688.  
  689.  
  690. {/block:Posts}
  691. </div>
  692.  
  693.  
  694.  
  695. {block:ifSidebar}
  696. {block:IndexPage}
  697. <div class="sidebar">
  698.  
  699. <center><img src="{PortraitURL-64}" class="portrait" /></center>
  700.  
  701. </div>
  702. {block:IndexPage}
  703. {/block:ifSidebar}
  704.  
  705.  
  706.  
  707. <div class="navigation">
  708. {block:Pagination}
  709. {block:NextPage}
  710. <p id="page_nav"><a style="float:right" href="{NextPage}" id="next">Older ?</a>
  711. {/block:NextPage}
  712. {block:PreviousPage}
  713. <a style="float:left" href="{PreviousPage}">? Newer</a></p>
  714. {/block:PreviousPage}
  715. {/block:Pagination}
  716. </div>
  717.  
  718.  
  719. {block:ifManualInfiniteScroll}
  720. {block:Pagination}
  721. <div class="pagination">
  722. <center><button class="load-more">load more</button></center>
  723. </div>
  724. {/block:Pagination}
  725. {/block:ifManualInfiniteScroll}
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734. </body>
  735. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement