UNPKG

uix-kit

Version:

A free web kits for fast web design and development, compatible with Bootstrap v5.

271 lines (168 loc) 9.13 kB
<!DOCTYPE html> <html lang="@@{website_lang}" dir="@@{website_dirLTR}"> <head> <meta charset="@@{website_charset}" /> <title>Gallery Filterable - @@{website_title}</title> @@include('./src/components/_global/include-header.html') </head> <body class="page"> @@include('./src/components/_global/include-loader.html') @@include('./src/components/_global/include-toggle-trigger.html') <div class="uix-wrapper"> <!-- Header Area ============================================= --> <header class="uix-header__container"> <div class="uix-header"> <div class="container"> @@include('./src/components/_global/include-brand.html') @@include('./src/components/_global/include-menu.html') </div> <!-- .container end --> <div class="uix-clearfix"></div> </div> </header> <div class="uix-header__placeholder js-uix-header__placeholder-autoheight"></div> <main id="uix-maincontent"> <!-- Content ====================================================== --> <section class="uix-spacing--s uix-spacing--no-bottom"> <div class="container"> <div class="row"> <div class="col-12"> <h3>Uix Grid Filterable</h3> <p>It allows attaching filters to the grid and it's columns which can be used to filter its data. </p> <hr> </div> </div> <!-- .row end --> </div> <!-- .container end --> </section> <!-- Content ====================================================== --> <section> <div class="container uix-t-c"> <div class="row"> <div class="col-12"> <div class="uix-nav uix-nav--separation" id="js-uix-navfilter-1"> <ul> <li class="current-cat"><a data-group="all" href="#">All</a></li> <li><a data-group="web-design" href="#">Web Design</a></li> <li><a data-group="ui" href="#">UI</a></li> <li><a data-group="seo" href="#">SEO</a></li> </ul> </div> </div> </div> <!-- .row end --> </div> <!-- .container end --> </section> <!-- Content ====================================================== --> <div class="uix-spacing--s"> <div class="container uix-t-c"> <div class="uix-gallery" data-show-type="filter" data-filter-id="#js-uix-navfilter-1"> <div class="uix-gallery__tiles"> <!-- Item --> <article class="uix-core-grid__col-4 uix-gallery__item" data-groups='["web-design","seo"]'> <div> <a href="#" class="uix-gallery__image" > <div class="uix-gallery__image-cover"> <img src="assets/images/demo/test-img-big-1.jpg" alt="" /> </div> </a> <h3> <a href="#">Project Title Here</a> <span class="uix-gallery__title">Beautiful WordPress Theme</span> <span class="uix-gallery__cat"><a href="#">Free</a></span> </h3> </div> </article> <!-- .uix-gallery__item end --> <!-- Item --> <article class="uix-core-grid__col-4 uix-gallery__item" data-groups='["web-design"]'> <div> <a href="#" class="uix-gallery__image" > <div class="uix-gallery__image-cover"> <img src="assets/images/demo/test-img-big-2.jpg" alt="" /> </div> </a> <h3> <a href="#">Project Title Here</a> <span class="uix-gallery__title">Beautiful WordPress Theme</span> <span class="uix-gallery__cat"><a href="#">Free</a></span> </h3> </div> </article> <!-- .uix-gallery__item end --> <!-- Item --> <article class="uix-core-grid__col-4 uix-gallery__item" data-groups='["web-design"]'> <div> <a href="#" class="uix-gallery__image" > <div class="uix-gallery__image-cover"> <img src="assets/images/demo/test-img-big-3.jpg" alt="" /> </div> </a> <h3> <a href="#">Project Title Here</a> <span class="uix-gallery__title">Beautiful WordPress Theme</span> <span class="uix-gallery__cat"><a href="#">Free</a></span> </h3> </div> </article> <!-- .uix-gallery__item end --> <!-- Item --> <article class="uix-core-grid__col-4 uix-gallery__item" data-groups='["seo"]'> <div> <a href="#" class="uix-gallery__image" > <div class="uix-gallery__image-cover"> <img src="assets/images/demo/test-img-big-4.jpg" alt="" /> </div> </a> <h3> <a href="#">Project Title Here</a> <span class="uix-gallery__title">Commerce Theme</span> <span class="uix-gallery__cat"><a href="#">Free</a></span> </h3> </div> </article> <!-- .uix-gallery__item end --> <!-- Item --> <article class="uix-core-grid__col-4 uix-gallery__item" data-groups='["ui"]'> <div> <a href="#" class="uix-gallery__image" > <div class="uix-gallery__image-cover"> <img src="assets/images/demo/test-img-big-5.jpg" alt="" /> </div> </a> <h3> <a href="#">Project Title Here</a> <span class="uix-gallery__title">Simple WordPress Theme</span> <span class="uix-gallery__cat"><a href="#">Free</a></span> </h3> </div> </article> <!-- .uix-gallery__item end --> </div> <!-- .uix-gallery__tiles end --> </div> <!-- .uix-gallery end --> <div class="uix-pagination__container uix-t-c uix-trans"> <ul> <li class="previous"><a class="prev page-numbers" href="#"><i class="fa fa-angle-left"></i></a></li> <li><a class='page-numbers' href='#'>1</a></li> <li class="is-active"><span class='page-numbers current'>2</span></li> <li><a class='page-numbers' href='#'>3</a></li> <li class="next"><a class="next page-numbers" href="#"><i class="fa fa-angle-right"></i></a></li> </ul> </div> <!-- .uix-pagination__container end --> </div> <!-- .container end --> </div> </main> @@include('./src/components/_global/include-copyright.html') </div> <!-- .uix-wrapper end --> @@include('./src/components/_global/include-footer.html')