Advertisement
yLii

listionary 04

Jan 10th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html style="cursor:url('{image:Cursor}'), crosshair !important;">
  3. <head>
  4. <title>{Title}</title>
  5.  
  6.  
  7. <!--jquery-->
  8. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/bXomx943d/jquery-1.7.1.min.js"></script>
  9. <!-- isotope -->
  10. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/pGOokx1ys/isotope.js"></script>
  11. <!--horizontal horiz-->
  12. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/XcXokx1w3/isotope-horiz.js"></script>
  13. <!--infinite scroll -->
  14. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/tIEmx9449/jquery.infinitescroll.min.js"></script>
  15. <!--smooth scrolling -->
  16. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.6/SmoothScroll.min.js"></script>
  17. <!-- smoothstate
  18. <script src="https://rawgit.com/miguel-perez/smoothState.js/master/demos/csstricks/assets/js/jquery.smoothState.min.js"></script> -->
  19. <!-- images Loaded -->
  20. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/9ACokx21m/imagesloaded.js"></script>
  21. <!--mousewheel -->
  22. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/Qt9okx233/mousewheel.js"></script>
  23. <!-- style my tooltips -->
  24. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/iIZol19jf/jquery.style-my-tooltips.js"></script>
  25. <script type="text/css" src="https://static.tumblr.com/iuvoef7/pqtol19jl/style-my-tooltips.css"></script>
  26. <!-- font awesome -->
  27. <script type="text/javascript" src="https://static.tumblr.com/iuvoef7/Mmpokx241/fontawesome.js"></script>
  28. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
  29. <!--Responsive photosets-->
  30. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  31.  
  32. <!-- <script src="https://static.tumblr.com/iuvoef7/M7sok4zc0/photoset.js"></script> -->
  33.  
  34. <script src="https://static.tumblr.com/iuvoef7/6Smoskpjg/photoset06.js"></script>
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. <script>
  43. //main function, called isotope
  44. var isotope = $(function(){
  45. // filter items when filter link is clicked
  46. // quick search regex
  47. var qsRegex;
  48. var buttonFilter;
  49. var $container = $('#content');
  50. var $boxes = $('.box').css('opacity','0');
  51.  
  52.  
  53. $container.imagesLoaded(function(){
  54. $container.isotope({
  55. itemSelector : '.box',
  56. layoutMode : 'masonry',
  57. masonry: {
  58. gutter: 100
  59. },
  60. getSortData: {
  61. name: '.name'
  62. },
  63. filter: function() {
  64. var $this = $(this);
  65. var searchResult = qsRegex ? $this.text().match( qsRegex ) : true;
  66. var buttonResult = buttonFilter ? $this.is( buttonFilter ) : true;
  67. return searchResult && buttonResult;
  68. }
  69. });
  70. $('.box').css('opacity','0.9');
  71.  
  72.  
  73. });
  74.  
  75.  
  76.  
  77. //infinite scroll and callback
  78. $container.infinitescroll({
  79. navSelector : '#page_nav',
  80. nextSelector : '#page_nav a',
  81. itemSelector : '.box',
  82. errorCallback: function(){$('.load-more').hide();},
  83.  
  84. bufferPx : 1500,
  85. loading: {
  86. msgText: "<em></em>",
  87. finishedMsg: ' ',
  88. img: 'https://i.imgur.com/qkKy8.gif'
  89. }
  90. },
  91.  
  92.  
  93. // call Isotope as a callback
  94. function ( newElements ) {
  95. var $newElems = jQuery( newElements ).hide(); // hide to begin with
  96.  
  97.  
  98.  
  99. // ensure that images load before adding to masonry layout
  100. $newElems.imagesLoaded(function(){
  101. $newElems.fadeIn(); // fade in when ready
  102. $container.isotope( 'insert', $newElems );
  103. });
  104.  
  105.  
  106.  
  107.  
  108. }); //end isotope as callback
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. $('#filters').on( 'click', 'button', function() {
  116. window.scrollTo(0,0);
  117. buttonFilter = $( this ).attr('data-filter');
  118. window.scrollTo(0,0);
  119. $container.isotope();
  120. window.scrollTo(0,0);
  121. return false
  122. });
  123.  
  124.  
  125.  
  126. // bind sort button click
  127. $('.sort-by-button-group').on( 'click', 'button', function() {
  128. var sortValue = $(this).attr('data-sort-value');
  129. $container.isotope({ sortBy: sortValue });
  130. });
  131.  
  132. // change is-checked class on buttons
  133. $('.button-group').each( function( i, buttonGroup ) {
  134. var $buttonGroup = $( buttonGroup );
  135. $buttonGroup.on( 'click', 'button', function() {
  136. $buttonGroup.find('.is-checked').removeClass('is-checked');
  137. $( this ).addClass('is-checked');
  138. });
  139. });
  140.  
  141.  
  142.  
  143.  
  144. // use value of search field to filter
  145. var $quicksearch = $('#quicksearch').keyup( debounce( function() {
  146. qsRegex = new RegExp( $quicksearch.val(), 'gi' );
  147. $container.isotope();
  148. }, 200 ) );
  149.  
  150.  
  151.  
  152. // debounce so filtering doesn't happen every millisecond
  153. function debounce( fn, threshold ) {
  154. var timeout;
  155. return function debounced() {
  156. if ( timeout ) {
  157. clearTimeout( timeout );
  158. }
  159. function delayed() {
  160. fn();
  161. timeout = null;
  162. }
  163. setTimeout( delayed, threshold || 100 );
  164. };
  165. };
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174. }); //ending main function
  175.  
  176. $(document).ready(isotope);
  177. </script>
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  186.  
  187.  
  188.  
  189. <!-- images/ files upload -->
  190. <meta name="image:Background" content="" />
  191. <meta name="image:Header" content="" />
  192.  
  193. <meta name="image:Cursor" content="https://static.tumblr.com/iuvoef7/jeMol18eo/small_white_cursor.png" />
  194. <meta name="image:Custom Font" content="https://static.tumblr.com/iuvoef7/mNnojgowh/jellyka_bees_antique_handwriting.ttf" />
  195.  
  196.  
  197.  
  198. <!-- background colours -->
  199. <meta name="color:Background" content="#fbfbfb" />
  200. <meta name="color:Header Background" content="#fbfbfb" />
  201.  
  202.  
  203. <!-- font colours -->
  204. <meta name="color:Header Font" content="#000000" />
  205. <meta name="color:Body Font" content="#000000" />
  206.  
  207.  
  208.  
  209. <meta name="color:Text highlight" content="#bbbbbb" />
  210. <meta name="color:Scrollbar" content="#fed3f2" />
  211.  
  212. <!-- tumblr preset fonts -->
  213. <meta name="font:Header Font" content="Arial" />
  214. <meta name="font:Body Font" content="Baskerville" />
  215. <meta name="font:Sidebar Font" content="Baskerville" />
  216.  
  217.  
  218. <!-- booleans --> <!-- 1=yes, 0=no -->
  219. <meta name="if:Head Space" content="1" />
  220. <meta name="if:Infinite Scroll" content="1" />
  221.  
  222.  
  223. <meta name="select:Content Width" content="30vw" />
  224. <meta name="select:Content Width" content="10vw" />
  225. <meta name="select:Content Width" content="20vw" />
  226. <meta name="select:Content Width" content="40vw" />
  227. <meta name="select:Content Width" content="50vw" />
  228. <meta name="select:Content Width" content="60vw" />
  229. <meta name="select:Content Width" content="70vw" />
  230. <meta name="select:Content Width" content="80vw" />
  231. <meta name="select:Content Width" content="90vw" />
  232. <meta name="select:Content Width" content="100vw" />
  233.  
  234.  
  235.  
  236.  
  237. <meta name="select:Fade Opacity" content="0.9" />
  238. <meta name="select:Fade Opacity" content="0.1" />
  239. <meta name="select:Fade Opacity" content="0.2" />
  240. <meta name="select:Fade Opacity" content="0.3" />
  241. <meta name="select:Fade Opacity" content="0.4" />
  242. <meta name="select:Fade Opacity" content="0.5" />
  243. <meta name="select:Fade Opacity" content="0.6" />
  244. <meta name="select:Fade Opacity" content="0.7" />
  245. <meta name="select:Fade Opacity" content="0.8" />
  246. <meta name="select:Fade Opacity" content="1.0" />
  247.  
  248.  
  249.  
  250.  
  251.  
  252. <!-- main -->
  253. <meta name="text:Number of Columns" content="1" />
  254. <meta name="text:Horizontal Post Height" content="300px" />
  255. <meta name="text:Space between Header and Content" content="0px" />
  256. <meta name="text:Gutter Width" content="200" />
  257. <meta name="text:Photoset Gutter Width" content="1" />
  258. <!-- header and footer -->
  259. <meta name="text:Header Height" content="250px" />
  260. <meta name="text:Header Width" content="100%" />
  261. <meta name="text:Header Top and Bottom Gap" content="0px" />
  262. <meta name="text:Footer Height" content="100px" />
  263.  
  264. <!-- fonts -->
  265. <meta name="text:Header Font" content="Jellyka"/>
  266. <meta name="text:Header Font Size" content="50px" />
  267. <meta name="text:Body Font" content="Lora" />
  268. <meta name="text:Body Font Size" content="10px" />
  269. <meta name="text:Custom Font Name" content="Jellyka" />
  270. <!--fonts-->
  271. <link href='https://fonts.googleapis.com/css?family={text:Body Font}' rel='stylesheet' type='text/css'>
  272. <link href='https://fonts.googleapis.com/css?family={text:Header Font}' rel='stylesheet' type='text/css'>
  273. <link href='https://fonts.googleapis.com/css?family={text:Sidebar Font}' rel='stylesheet' type='text/css'>
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280. <link rel="shortcut icon" href="{Favicon}"><link rel="alternate" type="application/rss+xml" href="{RSS}"><link href="https://static.tumblr.com/wgijwsy/k1Hm9ei8b/normalize.css" rel="stylesheet" type="text/css" />
  281.  
  282.  
  283.  
  284.  
  285.  
  286. <style type="text/css">
  287.  
  288.  
  289. @font-face {font-family:"{text:Custom Font Name}";src:url('{image:Custom Font}');}
  290.  
  291.  
  292.  
  293. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  294. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  295. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  296.  
  297. .fade-in {
  298. opacity:0; /* make things invisible upon start */
  299. -webkit-animation:fadeIn ease-in-out 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  300. -moz-animation:fadeIn ease-in-out 1;
  301. animation:fadeIn ease-in-out 1;
  302.  
  303. -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  304. -moz-animation-fill-mode:forwards;
  305. animation-fill-mode:forwards;
  306.  
  307. -webkit-animation-duration:1s;
  308. -moz-animation-duration:1s;
  309. animation-duration:1s;
  310. }
  311.  
  312.  
  313.  
  314.  
  315. .iframe-controls--desktop {
  316. position:fixed;
  317. top:0px;
  318. right:0px;
  319. z-index:9999999999;
  320. opacity:0.75 !important;
  321. filter:invert(100%);
  322. -webkit-filter:invert(100%);
  323. -webkit-transform:scale(0.7,0.7);
  324. -webkit-transform-origin: 100% 0%;
  325. -ms-transform-origin:100% 0%;
  326. -ms-transform:scale(0.7,0.7);
  327. transform:scale(0.7,0.7);
  328. transform-origin:100% 0%;
  329. }
  330.  
  331.  
  332.  
  333.  
  334.  
  335. ::-webkit-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  336. ::-webkit-scrollbar-thumb { background-color: {color:Scrollbar}; -webkit-border-radius: 2ex;}
  337. ::-moz-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  338. ::-moz-scrollbar-thumb { background-color: {color:Scrollbar}; -moz-border-radius: 2ex; border:10px; }
  339. ::-o-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  340. ::-o-scrollbar-thumb { background-color: {color:Scrollbar}; -o-border-radius: 2ex; }
  341.  
  342.  
  343. /*
  344. ::-webkit-scrollbar {
  345. width:17px;
  346. height:17px;
  347. }
  348. ::-webkit-scrollbar {
  349. background-color:rgb(255,255,255);
  350. }
  351. ::-webkit-scrollbar-track {
  352. border:8px solid rgb(255,255,255);
  353. background-color:rgb(230,230,230);
  354. }
  355. ::-webkit-scrollbar-thumb {
  356. border:8px solid rgb(255,255,255);
  357. background-color:rgb(144,144,144);
  358. min-height:24px;
  359. min-width:24px;
  360. }
  361. */
  362.  
  363.  
  364.  
  365. ::selection {background:{color:Text highlight} ;color: #fff;}
  366. ::-moz-selection {background:{color:Text highlight};color: #fff;}
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373. a, a:hover, a:visited {cursor:url('{image:Cursor}'), crosshair; text-decoration:none;color:inherit;}
  374. ul, li {list-style-type: none; font-size:9px; line-height:10px; }
  375. button:focus {outline:0;}
  376. a, a:hover, a:visited, li, button, button:hover {cursor:url('{image:Cursor}'), crosshair; border:none; background:transparent;}
  377. p {text-align:center; margin:0px; }
  378. input {border:none;}
  379. input:focus {outline:0;}
  380. html {width:100%; font-family:serif; cursor:url('{image:Cursor}'), crosshair;}
  381.  
  382.  
  383.  
  384. body {
  385. cursor:url('{image:Cursor}'), crosshair;
  386. background: {color:Background} url('{image:Background}');
  387. background-size:cover;
  388. background-attachment:fixed;
  389. width:100%;
  390. font-family:{text:Body Font}, {font:Body Font}, Georgia, 'Times New Roman', Times, serif;
  391. color:{color:Body Font};
  392. }
  393.  
  394.  
  395. #wrapper {
  396. cursor:url('{image:Cursor}'), crosshair;
  397. {block:IndexPage}
  398. {block:IfNotHorizontal} overflow-x:hidden; {block:IfNotHorizontal}
  399. {block:IfHorizontal} overflow-y:hidden; {/block:IfHorizontal}
  400. {/block:IndexPage}
  401.  
  402. {block:PermalinkPage}
  403. height:100vh;
  404. width:100vw;
  405. {/block:PermalinkPage}
  406. }
  407.  
  408.  
  409.  
  410.  
  411. #header{
  412. cursor:url('{image:Cursor}'), crosshair;
  413. background:{color:Header Background} url('{image:Header}');
  414. background-repeat:no-repeat;
  415. background-size:cover;
  416. background-position:center center;
  417. background-attachment:fixed;
  418. color:{color:Header Font};
  419. font-family:{text:Header Font}, {font:Header Font}, Georgia, 'Times New Roman', Times, serif;
  420. height:{text:Header Height};
  421. position:relative;
  422.  
  423. width:{text:Header Width}; left:0; right:0; top:0; bottom:0; margin:auto;
  424. margin-top:{text:Header Top and Bottom Gap};
  425. margin-bottom:{text:Header Top and Bottom Gap};
  426. text-align:center;
  427. z-index:5;
  428. }
  429.  
  430.  
  431.  
  432. #content-wrapper {
  433. {block:IndexPage}
  434. min-height:calc(100vh - {text:Header Height} - (2*{text:Header Top and Bottom Gap}) - {text:Footer Height} - 5vh);
  435. {block:IfNotHorizontal}
  436. width:100%;
  437. margin-top:{text:Space between Header and Content};
  438. {/block:IfNotHorizontal}
  439.  
  440. {block:IfHorizontal}
  441. {block:IfNotSidebar}
  442. margin-left:{text:Space between Header and Content};
  443. {/block:IfNotSidebar}
  444. {block:IfSidebar}
  445. margin-left:270px;
  446. {/block:IfSidebar}
  447. height:100vh;
  448. min-width:100%;
  449.  
  450. {block:IfNotHeadspace}
  451. top:0;
  452. {/block:IfNotHeadspace}
  453. {/block:IfHorizontal}
  454. {/block:IndexPage}
  455.  
  456. {block:PermalinkPage}
  457. height:100vh;
  458. width:100vw;
  459. {/block:PermalinkPage}
  460. }
  461.  
  462.  
  463.  
  464.  
  465. #content {
  466. width:{select:Content Width};
  467. position:absolute; margin:auto;
  468. }
  469.  
  470.  
  471.  
  472. .box {
  473. opacity:{select:Fade Opacity};
  474. cursor:url('{image:Cursor}'), crosshair;
  475. font-family:'{text:Body Font}', '{font:Body Font}', Georgia, 'Times New Roman', Times, serif;
  476. font-size:{text:Body Font Size};
  477. position:relative;
  478. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  479.  
  480.  
  481.  
  482.  
  483. opacity:{select:Fade Opacity};
  484. -webkit-transition: opacity 0.8s ease-in-out;
  485. -moz-transition: opacity 0.8s ease-in-out;
  486. transition: opacity 0.8s ease-in-out;
  487. }
  488.  
  489.  
  490.  
  491. .box:hover {opacity:0.9;}
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498. .text {
  499. {block:IfNotHorizontal}height:auto;
  500. {block:IfCropTextPost}max-height:300px;{/block:IfCropTextPost}
  501. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  502. white-space: nowrap;
  503. overflow:hidden;
  504. {/block:IfNotHorizontal}
  505.  
  506. {block:IfHorizontal}
  507. height:{text:Horizontal Post Height};
  508. width:{text:Horizontal Post Height};
  509. line-height:10px;
  510. {/block:IfHorizontal}
  511. display:block;
  512. overflow:hidden;
  513.  
  514.  
  515.  
  516. }
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524. #footer {
  525. width:100%;
  526. position:relative;
  527. height:{block:IfManualInfiniteScroll}100px{/block:IfManualInfiniteScroll} {block:IfNotManualInfiniteScroll}{text:Footer Height}{/block:IfNotManualInfiniteScroll};
  528. bottom:0px;
  529. z-index:10;
  530.  
  531. {block:IfHorizontal}
  532. position:fixed;
  533. {block:IfHorizontal}
  534.  
  535.  
  536.  
  537. }
  538.  
  539.  
  540. .pagination {
  541. z-index:50;
  542. {block:IfNotHorizontal}
  543. margin-top:50px;
  544. margin-bottom:50px;
  545. {/block:IfNotHorizontal}
  546.  
  547. {block:IfHorizontal}
  548. margin-top:0px;
  549. {/block:IfHorizontal}
  550.  
  551. }
  552.  
  553.  
  554. .load-more {
  555. z-index:100;
  556. font-family:'{text:Body Font}';
  557. left:50vw;
  558. border:0;
  559. padding-top:2vh;
  560. padding-bottom:2vh;
  561. padding-left:10vw;
  562. padding-right:10vw;
  563. background:#f0f0f0;
  564. color:#9f9f9f;
  565. -webkit-transition: 0.8s ease-in-out;
  566. -moz-transition: 0.8s ease-in-out;
  567. transition: 0.8s ease-in-out;
  568.  
  569. }
  570.  
  571.  
  572. .load-more:hover {
  573. background:{color:Links};
  574. color:{color:Background};
  575.  
  576. }
  577.  
  578. .load-more:focus {
  579. border:none;
  580. }
  581.  
  582.  
  583. #infscr-loading{
  584.  
  585.  
  586. {block:IfNotHorizontal}
  587. position:absolute;
  588. margin-left:50%;
  589. margin-right:50%;
  590. bottom:0px;
  591. {/block:IfNotHorizontal}
  592.  
  593. {block:IfHorizontal}
  594. position:fixed;
  595. right:0px;
  596. top:50%;
  597. bottom:50%;
  598. {/block:IfHorizontal}
  599.  
  600. }
  601.  
  602.  
  603. #infscr-loading img{
  604. width:10px;
  605. opacity:0.5;
  606. }
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614. @media screen and (max-width: 480px) {
  615. body {
  616. background-color: {color:Background};
  617. }
  618. }
  619.  
  620. .navigation { {block:IfInfiniteScroll}display:none!important{/block:IfInfiniteScroll} {block:IfNotInfiniteScroll}display:block{/block:IfNotInfiniteScroll}; font-family:'{text:Body Font}'; font-size:12px; opacity:0.5;}
  621.  
  622. .isotope-item {z-index: 2;}
  623. .isotope-hidden.isotope-item {pointer-events: none;z-index: 1;}
  624. .isotope, .isotope .isotope-item {-webkit-transition: 0.8s ease-in-out;-moz-transition: 0.8s ease-in-out;transition: 0.8s ease-in-out;}
  625. .isotope {-webkit-transition-property: height, width;-moz-transition-property: height, width;transition-property: height, width;}
  626. .isotope .isotope-item {-webkit-transition-property:-webkit-transform, opacity;- moz-transition-property:-moz-transform, opacity; transition-property: transform, opacity;}
  627. #filters, #quicksearch {opacity:0.4;-webkit-transition: 0.8s ease-in-out;-moz-transition: 0.8s ease-in-out;transition: 0.8s ease-in-out; }
  628. #filters:hover, #quicksearch:hover {opacity:1;}
  629.  
  630.  
  631. .hide {display:none; }
  632. .active {display:block;}
  633.  
  634.  
  635.  
  636.  
  637.  
  638. </style>
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647. </head>
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657. <body style="cursor:url('{image:Cursor}'), crosshair !important; ">
  658. <div id="wrapper">
  659.  
  660. {block:IndexPage}
  661.  
  662. <div id="header" style="{block:IfHorizontal} calc(((100vh - {text:Horizontal Post Height})/2) - 2*{text:Header Top and Bottom Gap}); {/block:IfHorizontal}">
  663.  
  664. {block:IfHeadSpace}
  665. <a href="{BlogURL}" style="font-size:{text:Header Font Size};"> <div style="
  666. padding-top:calc(({text:Header Height} - {text:Header Font Size})/2);">{Title} </div></a>
  667.  
  668.  
  669. {/block:IfHeadSpace}
  670. </div>
  671.  
  672.  
  673.  
  674. {/block:IndexPage}
  675.  
  676.  
  677.  
  678. <p><input type="text" id="quicksearch" autocomplete="off" style="background:rgba(251,251,251, 0); color:#a8a8a8; text-align:center; font-size:11px; " placeholder= "Search"/></p>
  679.  
  680. <div >
  681.  
  682. </div>
  683.  
  684.  
  685. <div id="filters" class="button-group sort-by-button-group">
  686. <p style="padding-bottom:20px; opacity:0.25;">
  687. <button class="button is-checked" data-sort-value="original-order"><i class="far fa-clock" style="font-size:13px;"></i></button> <button class="button" data-sort-value="name"><i class="fas fa-sort-alpha-down" style="font-size:13px;"></i></button>
  688. <button data-filter="*" title="all"><i class="fa fa-snowflake-o" style="font-size:13px;"></i></button>
  689. <button data-filter=".chinese" title="texts">字</button>
  690. <button data-filter=".english" title="texts">E</button>
  691. </p>
  692. </div>
  693.  
  694.  
  695.  
  696.  
  697.  
  698. <div id="content-wrapper">
  699. <div id="content" class="fade-in">
  700. {block:Posts}
  701.  
  702.  
  703. <div class="box {block:Text}text{/block:Text} {block:HasTags}{block:Tags}{Tag}{/block:Tags}{/block:HasTags}"
  704. style="opacity:0.00001;margin-bottom:calc({text:Gutter Width}px);" >
  705.  
  706. <center>
  707. {block:Text}
  708. <u><a href="{Permalink}">{Title}</a></u>
  709. <div class="name">{Body}</div>
  710. <div id="tags" style="position:absolute; opacity:0;">{block:HasTags}{block:Tags}{Tag} &nbsp; {/block:Tags}{/block:HasTags}</div>
  711. {/block:Text}
  712. </center>
  713.  
  714. </div> <!--box-->
  715.  
  716.  
  717.  
  718.  
  719.  
  720. {/block:Posts}
  721. </div> <!--content -->
  722. </div> <!--content wrapper -->
  723.  
  724.  
  725. </div> <!--button-group -->
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736. <div id="footer">
  737. <div class="navigation">
  738.  
  739.  
  740. <p id="page_nav">
  741. <a id="next" href="{NextPage}" style="float:right; right:2px; bottom:50vh; position:fixed;" ><i class="fa fa-long-arrow-right"></i></a>
  742.  
  743.  
  744. <a href="{PreviousPage}" style="float:left; left:2px; bottom:50vh; position:fixed;" ><i class="fa fa-long-arrow-left"></i></a>
  745. </p>
  746.  
  747. </div>
  748.  
  749.  
  750. </div> <!--footer -->
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763. </div> <!--wrapper-->
  764.  
  765.  
  766.  
  767.  
  768. </body>
  769.  
  770. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement