Advertisement
yLii

listionary 03 +tags

Jan 10th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.21 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.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121. // use value of search field to filter
  122. var $quicksearch = $('#quicksearch').keyup( debounce( function() {
  123. qsRegex = new RegExp( $quicksearch.val(), 'gi' );
  124. $container.isotope();
  125. }, 200 ) );
  126.  
  127.  
  128.  
  129. // debounce so filtering doesn't happen every millisecond
  130. function debounce( fn, threshold ) {
  131. var timeout;
  132. return function debounced() {
  133. if ( timeout ) {
  134. clearTimeout( timeout );
  135. }
  136. function delayed() {
  137. fn();
  138. timeout = null;
  139. }
  140. setTimeout( delayed, threshold || 100 );
  141. };
  142. };
  143.  
  144.  
  145.  
  146.  
  147. // bind sort button click
  148. $('.sort-by-button-group').on( 'click', 'button', function() {
  149. var sortValue = $(this).attr('data-sort-value');
  150. $container.isotope({ sortBy: sortValue });
  151. });
  152.  
  153. // change is-checked class on buttons
  154. $('.button-group').each( function( i, buttonGroup ) {
  155. var $buttonGroup = $( buttonGroup );
  156. $buttonGroup.on( 'click', 'button', function() {
  157. $buttonGroup.find('.is-checked').removeClass('is-checked');
  158. $( this ).addClass('is-checked');
  159. });
  160. });
  161.  
  162.  
  163.  
  164.  
  165.  
  166. }); //ending main function
  167.  
  168. $(document).ready(isotope);
  169. </script>
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  178.  
  179.  
  180.  
  181. <!-- images/ files upload -->
  182. <meta name="image:Background" content="" />
  183. <meta name="image:Header" content="" />
  184.  
  185. <meta name="image:Cursor" content="https://static.tumblr.com/iuvoef7/jeMol18eo/small_white_cursor.png" />
  186. <meta name="image:Custom Font" content="https://static.tumblr.com/iuvoef7/mNnojgowh/jellyka_bees_antique_handwriting.ttf" />
  187.  
  188.  
  189.  
  190. <!-- background colours -->
  191. <meta name="color:Background" content="#fbfbfb" />
  192. <meta name="color:Header Background" content="#fbfbfb" />
  193.  
  194.  
  195. <!-- font colours -->
  196. <meta name="color:Header Font" content="#000000" />
  197. <meta name="color:Body Font" content="#000000" />
  198.  
  199.  
  200.  
  201. <meta name="color:Text highlight" content="#bbbbbb" />
  202. <meta name="color:Scrollbar" content="#fed3f2" />
  203.  
  204. <!-- tumblr preset fonts -->
  205. <meta name="font:Header Font" content="Arial" />
  206. <meta name="font:Body Font" content="Baskerville" />
  207. <meta name="font:Sidebar Font" content="Baskerville" />
  208.  
  209.  
  210. <!-- booleans --> <!-- 1=yes, 0=no -->
  211. <meta name="if:Head Space" content="1" />
  212. <meta name="if:Infinite Scroll" content="1" />
  213.  
  214.  
  215. <meta name="select:Content Width" content="30vw" />
  216. <meta name="select:Content Width" content="10vw" />
  217. <meta name="select:Content Width" content="20vw" />
  218. <meta name="select:Content Width" content="40vw" />
  219. <meta name="select:Content Width" content="50vw" />
  220. <meta name="select:Content Width" content="60vw" />
  221. <meta name="select:Content Width" content="70vw" />
  222. <meta name="select:Content Width" content="80vw" />
  223. <meta name="select:Content Width" content="90vw" />
  224. <meta name="select:Content Width" content="100vw" />
  225.  
  226.  
  227.  
  228.  
  229. <meta name="select:Fade Opacity" content="0.9" />
  230. <meta name="select:Fade Opacity" content="0.1" />
  231. <meta name="select:Fade Opacity" content="0.2" />
  232. <meta name="select:Fade Opacity" content="0.3" />
  233. <meta name="select:Fade Opacity" content="0.4" />
  234. <meta name="select:Fade Opacity" content="0.5" />
  235. <meta name="select:Fade Opacity" content="0.6" />
  236. <meta name="select:Fade Opacity" content="0.7" />
  237. <meta name="select:Fade Opacity" content="0.8" />
  238. <meta name="select:Fade Opacity" content="1.0" />
  239.  
  240.  
  241.  
  242.  
  243.  
  244. <!-- main -->
  245. <meta name="text:Number of Columns" content="1" />
  246. <meta name="text:Horizontal Post Height" content="300px" />
  247. <meta name="text:Space between Header and Content" content="0px" />
  248. <meta name="text:Gutter Width" content="200" />
  249. <meta name="text:Photoset Gutter Width" content="1" />
  250. <!-- header and footer -->
  251. <meta name="text:Header Height" content="250px" />
  252. <meta name="text:Header Width" content="100%" />
  253. <meta name="text:Header Top and Bottom Gap" content="0px" />
  254. <meta name="text:Footer Height" content="100px" />
  255.  
  256. <!-- fonts -->
  257. <meta name="text:Header Font" content="Jellyka"/>
  258. <meta name="text:Header Font Size" content="50px" />
  259. <meta name="text:Body Font" content="Lora" />
  260. <meta name="text:Body Font Size" content="10px" />
  261. <meta name="text:Custom Font Name" content="Jellyka" />
  262. <!--fonts-->
  263. <link href='https://fonts.googleapis.com/css?family={text:Body Font}' rel='stylesheet' type='text/css'>
  264. <link href='https://fonts.googleapis.com/css?family={text:Header Font}' rel='stylesheet' type='text/css'>
  265. <link href='https://fonts.googleapis.com/css?family={text:Sidebar Font}' rel='stylesheet' type='text/css'>
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272. <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" />
  273.  
  274.  
  275.  
  276.  
  277.  
  278. <style type="text/css">
  279.  
  280.  
  281. @font-face {font-family:"{text:Custom Font Name}";src:url('{image:Custom Font}');}
  282.  
  283.  
  284.  
  285. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  286. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  287. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  288.  
  289. .fade-in {
  290. opacity:0; /* make things invisible upon start */
  291. -webkit-animation:fadeIn ease-in-out 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  292. -moz-animation:fadeIn ease-in-out 1;
  293. animation:fadeIn ease-in-out 1;
  294.  
  295. -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  296. -moz-animation-fill-mode:forwards;
  297. animation-fill-mode:forwards;
  298.  
  299. -webkit-animation-duration:1s;
  300. -moz-animation-duration:1s;
  301. animation-duration:1s;
  302. }
  303.  
  304.  
  305.  
  306.  
  307. .iframe-controls--desktop {
  308. position:fixed;
  309. top:0px;
  310. right:0px;
  311. z-index:9999999999;
  312. opacity:0.75 !important;
  313. filter:invert(100%);
  314. -webkit-filter:invert(100%);
  315. -webkit-transform:scale(0.7,0.7);
  316. -webkit-transform-origin: 100% 0%;
  317. -ms-transform-origin:100% 0%;
  318. -ms-transform:scale(0.7,0.7);
  319. transform:scale(0.7,0.7);
  320. transform-origin:100% 0%;
  321. }
  322.  
  323.  
  324.  
  325.  
  326.  
  327. ::-webkit-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  328. ::-webkit-scrollbar-thumb { background-color: {color:Scrollbar}; -webkit-border-radius: 2ex;}
  329. ::-moz-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  330. ::-moz-scrollbar-thumb { background-color: {color:Scrollbar}; -moz-border-radius: 2ex; border:10px; }
  331. ::-o-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  332. ::-o-scrollbar-thumb { background-color: {color:Scrollbar}; -o-border-radius: 2ex; }
  333.  
  334.  
  335. /*
  336. ::-webkit-scrollbar {
  337. width:17px;
  338. height:17px;
  339. }
  340. ::-webkit-scrollbar {
  341. background-color:rgb(255,255,255);
  342. }
  343. ::-webkit-scrollbar-track {
  344. border:8px solid rgb(255,255,255);
  345. background-color:rgb(230,230,230);
  346. }
  347. ::-webkit-scrollbar-thumb {
  348. border:8px solid rgb(255,255,255);
  349. background-color:rgb(144,144,144);
  350. min-height:24px;
  351. min-width:24px;
  352. }
  353. */
  354.  
  355.  
  356.  
  357. ::selection {background:{color:Text highlight} ;color: #fff;}
  358. ::-moz-selection {background:{color:Text highlight};color: #fff;}
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365. a, a:hover, a:visited {cursor:url('{image:Cursor}'), crosshair; text-decoration:none;color:inherit;}
  366. ul, li {list-style-type: none; font-size:9px; line-height:10px; }
  367. button:focus {outline:0;}
  368. a, a:hover, a:visited, li, button, button:hover {cursor:url('{image:Cursor}'), crosshair; border:none; background:transparent;}
  369. p {text-align:center; margin:0px; }
  370. input {border:none;}
  371. input:focus {outline:0;}
  372. html {width:100%; font-family:serif; cursor:url('{image:Cursor}'), crosshair;}
  373.  
  374.  
  375.  
  376. body {
  377. cursor:url('{image:Cursor}'), crosshair;
  378. background: {color:Background} url('{image:Background}');
  379. background-size:cover;
  380. background-attachment:fixed;
  381. width:100%;
  382. font-family:{text:Body Font}, {font:Body Font}, Georgia, 'Times New Roman', Times, serif;
  383. color:{color:Body Font};
  384. }
  385.  
  386.  
  387. #wrapper {
  388. cursor:url('{image:Cursor}'), crosshair;
  389. {block:IndexPage}
  390. {block:IfNotHorizontal} overflow-x:hidden; {block:IfNotHorizontal}
  391. {block:IfHorizontal} overflow-y:hidden; {/block:IfHorizontal}
  392. {/block:IndexPage}
  393.  
  394. {block:PermalinkPage}
  395. height:100vh;
  396. width:100vw;
  397. {/block:PermalinkPage}
  398. }
  399.  
  400.  
  401.  
  402.  
  403. #header{
  404. cursor:url('{image:Cursor}'), crosshair;
  405. background:{color:Header Background} url('{image:Header}');
  406. background-repeat:no-repeat;
  407. background-size:cover;
  408. background-position:center center;
  409. background-attachment:fixed;
  410. color:{color:Header Font};
  411. font-family:{text:Header Font}, {font:Header Font}, Georgia, 'Times New Roman', Times, serif;
  412. height:{text:Header Height};
  413. position:relative;
  414.  
  415. width:{text:Header Width}; left:0; right:0; top:0; bottom:0; margin:auto;
  416. margin-top:{text:Header Top and Bottom Gap};
  417. margin-bottom:{text:Header Top and Bottom Gap};
  418. text-align:center;
  419. z-index:5;
  420. }
  421.  
  422.  
  423.  
  424. #content-wrapper {
  425. {block:IndexPage}
  426. min-height:calc(100vh - {text:Header Height} - (2*{text:Header Top and Bottom Gap}) - {text:Footer Height} - 5vh);
  427. {block:IfNotHorizontal}
  428. width:100%;
  429. margin-top:{text:Space between Header and Content};
  430. {/block:IfNotHorizontal}
  431.  
  432. {block:IfHorizontal}
  433. {block:IfNotSidebar}
  434. margin-left:{text:Space between Header and Content};
  435. {/block:IfNotSidebar}
  436. {block:IfSidebar}
  437. margin-left:270px;
  438. {/block:IfSidebar}
  439. height:100vh;
  440. min-width:100%;
  441.  
  442. {block:IfNotHeadspace}
  443. top:0;
  444. {/block:IfNotHeadspace}
  445. {/block:IfHorizontal}
  446. {/block:IndexPage}
  447.  
  448. {block:PermalinkPage}
  449. height:100vh;
  450. width:100vw;
  451. {/block:PermalinkPage}
  452. }
  453.  
  454.  
  455.  
  456.  
  457. #content {
  458. width:{select:Content Width};
  459. position:absolute; margin:auto;
  460. }
  461.  
  462.  
  463.  
  464. .box {
  465. opacity:{select:Fade Opacity};
  466. cursor:url('{image:Cursor}'), crosshair;
  467. font-family:'{text:Body Font}', '{font:Body Font}', Georgia, 'Times New Roman', Times, serif;
  468. font-size:{text:Body Font Size};
  469. position:relative;
  470. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  471.  
  472.  
  473.  
  474.  
  475. opacity:{select:Fade Opacity};
  476. -webkit-transition: opacity 0.8s ease-in-out;
  477. -moz-transition: opacity 0.8s ease-in-out;
  478. transition: opacity 0.8s ease-in-out;
  479. }
  480.  
  481.  
  482.  
  483. .box:hover {opacity:1.0;}
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490. .text {
  491. {block:IfNotHorizontal}height:auto;
  492. {block:IfCropTextPost}max-height:300px;{/block:IfCropTextPost}
  493. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  494. white-space: nowrap;
  495. overflow:hidden;
  496. {/block:IfNotHorizontal}
  497.  
  498. {block:IfHorizontal}
  499. height:{text:Horizontal Post Height};
  500. width:{text:Horizontal Post Height};
  501. line-height:10px;
  502. {/block:IfHorizontal}
  503. display:block;
  504. overflow:hidden;
  505.  
  506.  
  507.  
  508. }
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516. #footer {
  517. width:100%;
  518. position:relative;
  519. height:{block:IfManualInfiniteScroll}100px{/block:IfManualInfiniteScroll} {block:IfNotManualInfiniteScroll}{text:Footer Height}{/block:IfNotManualInfiniteScroll};
  520. bottom:0px;
  521. z-index:10;
  522.  
  523. {block:IfHorizontal}
  524. position:fixed;
  525. {block:IfHorizontal}
  526.  
  527.  
  528.  
  529. }
  530.  
  531.  
  532. .pagination {
  533. z-index:50;
  534. {block:IfNotHorizontal}
  535. margin-top:50px;
  536. margin-bottom:50px;
  537. {/block:IfNotHorizontal}
  538.  
  539. {block:IfHorizontal}
  540. margin-top:0px;
  541. {/block:IfHorizontal}
  542.  
  543. }
  544.  
  545.  
  546. .load-more {
  547. z-index:100;
  548. font-family:'{text:Body Font}';
  549. left:50vw;
  550. border:0;
  551. padding-top:2vh;
  552. padding-bottom:2vh;
  553. padding-left:10vw;
  554. padding-right:10vw;
  555. background:#f0f0f0;
  556. color:#9f9f9f;
  557. -webkit-transition: 0.8s ease-in-out;
  558. -moz-transition: 0.8s ease-in-out;
  559. transition: 0.8s ease-in-out;
  560.  
  561. }
  562.  
  563.  
  564. .load-more:hover {
  565. background:{color:Links};
  566. color:{color:Background};
  567.  
  568. }
  569.  
  570. .load-more:focus {
  571. border:none;
  572. }
  573.  
  574.  
  575. #infscr-loading{
  576.  
  577.  
  578. {block:IfNotHorizontal}
  579. position:absolute;
  580. margin-left:50%;
  581. margin-right:50%;
  582. bottom:0px;
  583. {/block:IfNotHorizontal}
  584.  
  585. {block:IfHorizontal}
  586. position:fixed;
  587. right:0px;
  588. top:50%;
  589. bottom:50%;
  590. {/block:IfHorizontal}
  591.  
  592. }
  593.  
  594.  
  595. #infscr-loading img{
  596. width:10px;
  597. opacity:0.5;
  598. }
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606. @media screen and (max-width: 480px) {
  607. body {
  608. background-color: {color:Background};
  609. }
  610. }
  611.  
  612. .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;}
  613.  
  614. .isotope-item {z-index: 2;}
  615. .isotope-hidden.isotope-item {pointer-events: none;z-index: 1;}
  616. .isotope, .isotope .isotope-item {-webkit-transition: 0.8s ease-in-out;-moz-transition: 0.8s ease-in-out;transition: 0.8s ease-in-out;}
  617. .isotope {-webkit-transition-property: height, width;-moz-transition-property: height, width;transition-property: height, width;}
  618. .isotope .isotope-item {-webkit-transition-property:-webkit-transform, opacity;- moz-transition-property:-moz-transform, opacity; transition-property: transform, opacity;}
  619. #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; }
  620. #filters:hover, #quicksearch:hover {opacity:1;}
  621.  
  622.  
  623. .hide {display:none; }
  624. .active {display:block;}
  625.  
  626.  
  627.  
  628.  
  629.  
  630. </style>
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639. </head>
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649. <body style="cursor:url('{image:Cursor}'), crosshair !important; ">
  650. <div id="wrapper">
  651.  
  652. {block:IndexPage}
  653.  
  654. <div id="header" style="{block:IfHorizontal} calc(((100vh - {text:Horizontal Post Height})/2) - 2*{text:Header Top and Bottom Gap}); {/block:IfHorizontal}">
  655.  
  656. {block:IfHeadSpace}
  657. <a href="{BlogURL}" style="font-size:{text:Header Font Size};"> <div style="
  658. padding-top:calc(({text:Header Height} - {text:Header Font Size})/2);">{Title} </div></a>
  659.  
  660.  
  661. {/block:IfHeadSpace}
  662. </div>
  663.  
  664.  
  665.  
  666. {/block:IndexPage}
  667.  
  668.  
  669.  
  670. <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>
  671.  
  672. <div class="button-group sort-by-button-group">
  673. <p style="padding-bottom:20px; opacity:0.1;"><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> </p>
  674.  
  675.  
  676.  
  677.  
  678.  
  679. <div id="content-wrapper">
  680. <div id="content" class="fade-in">
  681. {block:Posts}
  682.  
  683.  
  684. <div class="box {block:Text}text{/block:Text} {block:HasTags}{block:Tags}{Tag}{/block:Tags}{/block:HasTags}"
  685. style="opacity:0.00001;margin-bottom:calc({text:Gutter Width}px);" >
  686.  
  687. <center>
  688. {block:Text}
  689. <u><a href="{Permalink}">{Title}</a></u>
  690. <div class="name">{Body}</div>
  691. <div id="tags" style="position:absolute; opacity:0;">{block:HasTags}{block:Tags}{Tag} &nbsp; {/block:Tags}{/block:HasTags}</div>
  692. {/block:Text}
  693. </center>
  694.  
  695. </div> <!--box-->
  696.  
  697.  
  698.  
  699.  
  700.  
  701. {/block:Posts}
  702. </div> <!--content -->
  703. </div> <!--content wrapper -->
  704.  
  705.  
  706. </div> <!--button-group -->
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717. <div id="footer">
  718. <div class="navigation">
  719.  
  720.  
  721. <p id="page_nav">
  722. <a id="next" href="{NextPage}" style="float:right; right:2px; bottom:50vh; position:fixed;" ><i class="fa fa-long-arrow-right"></i></a>
  723.  
  724.  
  725. <a href="{PreviousPage}" style="float:left; left:2px; bottom:50vh; position:fixed;" ><i class="fa fa-long-arrow-left"></i></a>
  726. </p>
  727.  
  728. </div>
  729.  
  730.  
  731. </div> <!--footer -->
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743.  
  744. </div> <!--wrapper-->
  745.  
  746.  
  747.  
  748.  
  749. </body>
  750.  
  751. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement