├── screenshot.png ├── assets ├── img │ ├── logo.png │ ├── favicon.png │ ├── banner_bg.png │ ├── banner_bg_1.png │ ├── banner_overlay_1.png │ ├── banner_overlay_2.png │ ├── footer_overlay_1.png │ └── footer_overlay_2.png ├── fonts │ ├── themify.eot │ ├── themify.ttf │ ├── Flaticon.eot │ ├── Flaticon.ttf │ ├── Flaticon.woff │ ├── Flaticon.woff2 │ └── themify.woff ├── css │ ├── gilb_admin.css │ ├── flaticon.css │ ├── slick.css │ ├── owl.carousel.min.css │ ├── nice-select.css │ ├── magnific-popup.css │ └── elementor-default-element-style.css └── js │ ├── gilb_admin.js │ ├── post-likes.js │ ├── jquery.instagramFeed.min.js │ ├── gilb-elementor-notice.js │ ├── custom.js │ ├── jquery.nice-select.min.js │ └── jquery.ajaxchimp.min.js ├── .gitmodules ├── template-builder.php ├── templates ├── pagination.php ├── footer-widgets.php ├── footer-bottom.php ├── content-page.php ├── biography.php ├── content-audio.php ├── content-video.php ├── content-none.php ├── 404.php ├── footer-personal-info.php ├── header-bottom.php ├── content.php ├── content-single.php └── header-top.php ├── template-builder-wheader.php ├── sidebar-page.php ├── 404.php ├── sidebar.php ├── footer.php ├── searchform.php ├── header.php ├── style.css ├── inc ├── class-epsilon-dashboard-autoloader.php ├── gilb-widgets-reg.php ├── wp_bootstrap_pagination.php ├── libraries │ └── class-epsilon-init-notify-system.php ├── hooks │ ├── hooks.php │ └── hooks-functions.php ├── customizer │ ├── customizer.php │ ├── fields │ │ └── sections.php │ └── js │ │ └── customizer.js ├── classes │ ├── Class-Enqueue.php │ └── Class-Config.php ├── support-functions.php ├── class-epsilon-init-dashboard.php ├── gilb-breadcrumbs.php ├── wp-html-helper.php ├── wp_bootstrap_navwalker.php ├── gilb-commoncss.php └── post-like.php ├── single.php ├── page.php ├── index.php ├── search.php ├── readme.txt ├── single-portfolio.php ├── archive.php ├── comments.php └── functions.php /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/screenshot.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/themify.eot -------------------------------------------------------------------------------- /assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /assets/img/banner_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/banner_bg.png -------------------------------------------------------------------------------- /assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/Flaticon.woff2 -------------------------------------------------------------------------------- /assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/fonts/themify.woff -------------------------------------------------------------------------------- /assets/img/banner_bg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/banner_bg_1.png -------------------------------------------------------------------------------- /assets/img/banner_overlay_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/banner_overlay_1.png -------------------------------------------------------------------------------- /assets/img/banner_overlay_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/banner_overlay_2.png -------------------------------------------------------------------------------- /assets/img/footer_overlay_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/footer_overlay_1.png -------------------------------------------------------------------------------- /assets/img/footer_overlay_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/gilb-theme/master/assets/img/footer_overlay_2.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "inc/libraries/epsilon-theme-dashboard"] 2 | path = inc/libraries/epsilon-theme-dashboard 3 | url = https://github.com/MachoThemes/epsilon-theme-dashboard 4 | [submodule "inc/libraries/epsilon-framework"] 5 | path = inc/libraries/epsilon-framework 6 | url = https://github.com/MachoThemes/epsilon-framework 7 | -------------------------------------------------------------------------------- /template-builder.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/pagination.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-builder-wheader.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sidebar-page.php: -------------------------------------------------------------------------------- 1 | '; 18 | dynamic_sidebar( 'gilb-page-sidebar' ); 19 | echo ''; 20 | } 21 | 22 | 23 | ?> -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 |
'; 20 | } 21 | 22 | 23 | ?> -------------------------------------------------------------------------------- /templates/footer-widgets.php: -------------------------------------------------------------------------------- 1 | 15 | 16 | -------------------------------------------------------------------------------- /templates/footer-bottom.php: -------------------------------------------------------------------------------- 1 | ', '', date( 'Y' ) ); 5 | $copyRight = !empty( gilb_opt( 'gilb_footer_copyright_text' ) ) ? gilb_opt( 'gilb_footer_copyright_text' ) : $copyText; 6 | ?> 7 | 8 |