Advertisement
yLii

Infinite Isotope 22

Jan 8th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.53 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.  
  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. {block:IfNotHorizontal}
  420. float: left;
  421. width:{select:Post Width};
  422. {/block:IfNotHorizontal}
  423.  
  424. {block:IfHorizontal}
  425. width:400px;
  426. {/block:IfHorizontal}
  427.  
  428. margin-bottom:{text:Gutter Width}px;
  429. {block:IfFade}
  430. opacity:{select:Fade Opacity};
  431. -webkit-transition-duration: 0.8s;
  432. -moz-transition-duration: 0.8s;
  433. transition-duration: 0.8s;
  434. {/block:IfFade}
  435.  
  436. }
  437.  
  438.  
  439.  
  440. .box:hover {
  441. {block:IfFade}
  442. opacity:1.0;
  443. -webkit-transition-duration: 0.8s;
  444. -moz-transition-duration: 0.8s;
  445. transition-duration: 0.8s;
  446. {/block:IfFade}
  447. }
  448.  
  449.  
  450.  
  451. .text {
  452. font-size:10%;
  453. }
  454.  
  455. .photo {
  456.  
  457. }
  458.  
  459. .photoset{
  460.  
  461. }
  462.  
  463. {block:IfHorizontal}
  464. {block:ifStackPhotoset}
  465. .photoset-wrap {}
  466. .photoset-wrap img { display: none; width:100%; }
  467. .photoset-wrap img:first-child { display: block; width:100%; }
  468. {/block:ifStackPhotoset}
  469. {/block:IfHorizontal}
  470.  
  471. {block:ifStackPhotoset}
  472. .photoset-wrap {}
  473. .photoset-wrap img { display: none; width:100%; }
  474. .photoset-wrap img:first-child { display: block; width:100%; }
  475. {/block:ifStackPhotoset}
  476.  
  477. .photocount, .photocount a {
  478. right:0px;
  479. bottom:0px;
  480. position:absolute;
  481. font-size:10px;
  482. font-family:;
  483. color:{color:Background};
  484. }
  485.  
  486.  
  487.  
  488.  
  489.  
  490. #vignette, .vignette{opacity:0!important;}.lightbox-caption {color:#000;}
  491. #tumblr_lightbox,.tmblr-lightbox{background:rgba(255,255,255,0.8)!important;}
  492. #tumblr_lightbox img, .lightbox-image {box-shadow:none!important;border-radius:0px!important;}
  493.  
  494.  
  495.  
  496.  
  497.  
  498. .pagination {
  499. padding-top:5vh;
  500. height:20vh;
  501. width:100vw;
  502. bottom:0px;
  503. }
  504.  
  505. .load-more {
  506. font-family:'{text:Link Font}';
  507. left:50vw;
  508. margin-top:7vh;
  509. border:0;
  510. padding-top:2vh;
  511. padding-bottom:2vh;
  512. padding-left:10vw;
  513. padding-right:10vw;
  514. background:#f0f0f0;
  515. color:#9f9f9f;
  516. -webkit-transition-duration: 0.8s;
  517. -moz-transition-duration: 0.8s;
  518. transition-duration: 0.8s;
  519.  
  520. }
  521.  
  522.  
  523. .load-more:hover {
  524. background:{color:Links};
  525. color:{color:Background};
  526. -webkit-transition-duration: 0.8s;
  527. -moz-transition-duration: 0.8s;
  528. transition-duration: 0.8s;
  529. }
  530.  
  531.  
  532.  
  533.  
  534.  
  535.  
  536.  
  537.  
  538.  
  539. {block:ifSidebar}
  540. {/block:ifSidebar}
  541. .sidebar {
  542. {select:SideFloat}:0px;
  543. float:{select:SideFloat};
  544. width:calc(100% - {select:Content Width} );
  545. background-color:cyan;
  546.  
  547. }
  548.  
  549.  
  550.  
  551.  
  552. .portrait {
  553. vertical-align:middle;
  554. border-radius:35px;
  555. opacity:0.7;
  556. -webkit-transition-duration: 0.8s;
  557. -moz-transition-duration: 0.8s;
  558. transition-duration: 0.8s;
  559. }
  560.  
  561.  
  562. .portrait:hover {
  563. opacity:1.0;
  564. border-radius:0px;
  565. -webkit-transition-duration: 0.8s;
  566. -moz-transition-duration: 0.8s;
  567. transition-duration: 0.8s;
  568.  
  569.  
  570. }
  571.  
  572.  
  573.  
  574. </style>
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585. </head>
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598. <body>
  599.  
  600.  
  601.  
  602.  
  603. {block:IfHeadSpace}
  604. <div class="headspace"><a href="{BlogURL}" class="header">{Title}</a></div>
  605. {/block:IfHeadSpace}
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612. <div id="content">
  613. {block:Posts}
  614.  
  615.  
  616. <!-- {block:Text}
  617. <div class="box text">
  618. {Title}
  619. {Body}
  620. </div>
  621. {/block:Text} -->
  622.  
  623.  
  624.  
  625. {block:Photo}
  626.  
  627. <a href="#">
  628. <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" />
  629. </a>
  630. {/block:Photo}
  631.  
  632.  
  633. {block:Photoset}
  634. <div class="box">
  635.  
  636.  
  637. {block:ifNotStackPhotoset}
  638. <!--preset code to abide by pxu -->
  639. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  640.  
  641. {block:Photos}
  642. <div class="photo-data">
  643. <div class="pxu-photo">
  644. <img src="{PhotoURL-HighRes}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  645. </div>
  646. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}">
  647. </a>
  648. </div>
  649. {/block:Photos}
  650. </div>
  651. {block:ifNotStackPhotoset}
  652.  
  653.  
  654.  
  655. {block:ifStackPhotoset}
  656. {block:IndexPage}
  657. <div class="photoset-wrap">
  658. {block:Photos}
  659. <!-- <a href="#"> for some reason loads all images in photoset-->
  660. <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" />
  661. <!-- </a> -->
  662.  
  663. {/block:Photos}
  664. <div class="photocount"><a href="{Permalink}">{PhotoCount}</a></div>
  665. </div>
  666. {/block:IndexPage}
  667. {/block:ifStackPhotoset}
  668.  
  669.  
  670.  
  671.  
  672. {block:PermalinkPage}
  673. <center>{Photoset}</center>
  674. {/block:PermalinkPage}
  675.  
  676.  
  677. </div>
  678. {/block:Photoset}
  679.  
  680.  
  681.  
  682.  
  683. {/block:Posts}
  684. </div>
  685.  
  686.  
  687.  
  688. {block:ifSidebar}
  689. {block:IndexPage}
  690. <div class="sidebar">
  691.  
  692. <center><img src="{PortraitURL-64}" class="portrait" /></center>
  693.  
  694. </div>
  695. {block:IndexPage}
  696. {/block:ifSidebar}
  697.  
  698.  
  699.  
  700. <div class="navigation">
  701. {block:Pagination}
  702. {block:NextPage}
  703. <p id="page_nav"><a style="float:right" href="{NextPage}" id="next">Older ?</a>
  704. {/block:NextPage}
  705. {block:PreviousPage}
  706. <a style="float:left" href="{PreviousPage}">? Newer</a></p>
  707. {/block:PreviousPage}
  708. {/block:Pagination}
  709. </div>
  710.  
  711.  
  712. {block:ifManualInfiniteScroll}
  713. {block:Pagination}
  714. <div class="pagination">
  715. <center><button class="load-more">load more</button></center>
  716. </div>
  717. {/block:Pagination}
  718. {/block:ifManualInfiniteScroll}
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727. </body>
  728. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement