├── languages └── constructo.pot ├── screenshot.png ├── assets ├── img │ ├── logo.png │ ├── breadcrumb.png │ ├── footer_logo.png │ └── icon │ │ ├── header-address.svg │ │ ├── headset.svg │ │ └── down.svg ├── fonts │ ├── Flaticon.eot │ ├── Flaticon.ttf │ ├── themify.eot │ ├── themify.ttf │ ├── themify.woff │ ├── Flaticon.woff │ ├── Flaticon.woff2 │ ├── FontAwesome.otf │ ├── fa-brands-400.eot │ ├── fa-brands-400.ttf │ ├── fa-solid-900.eot │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-solid-900.woff2 │ ├── gijgo-material.eot │ ├── gijgo-material.ttf │ ├── gijgo-material.woff │ ├── fa-regular-400.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ └── flaticon.css ├── css │ ├── constructo-admin.css │ ├── flaticon.css │ ├── owl.carousel.min.css │ ├── nice-select.css │ ├── elementor-default-element-style.css │ ├── slicknav.css │ └── magnific-popup.css └── js │ ├── plugins.js │ ├── jquery.counterup.min.js │ ├── post-likes.js │ ├── jquery.scrollUp.min.js │ ├── jquery.instagramFeed.min.js │ ├── constructo-elementor-notice.js │ ├── nice-select.min.js │ ├── scrollIt.js │ ├── jquery.ajaxchimp.min.js │ ├── imagesloaded.pkgd.min.js │ ├── waypoints.min.js │ ├── wow.min.js │ └── jquery.slicknav.min.js ├── .gitmodules ├── template-builder.php ├── templates ├── pagination.php ├── content-page.php ├── footer-bottom.php ├── biography.php ├── footer-widgets.php ├── footer-top.php ├── footer-reservation.php ├── content-audio.php ├── content-video.php ├── content-none.php ├── 404.php ├── header-bottom.php ├── content.php ├── content-single.php └── header-top.php ├── sidebar-page.php ├── 404.php ├── sidebar.php ├── footer.php ├── searchform.php ├── inc ├── shortcode.php ├── class-epsilon-dashboard-autoloader.php ├── wp_bootstrap_pagination.php ├── constructo-widgets-reg.php ├── libraries │ └── class-epsilon-init-notify-system.php ├── hooks │ └── hooks.php ├── classes │ └── Class-Enqueue.php ├── customizer │ ├── customizer.php │ ├── fields │ │ └── sections.php │ └── js │ │ └── customizer.js ├── support-functions.php ├── class-epsilon-init-dashboard.php ├── constructo-breadcrumbs.php └── wp-html-helper.php ├── header.php ├── style.css ├── page.php ├── single.php ├── index.php ├── search.php ├── readme.txt ├── archive.php ├── comments.php ├── functions.php └── single-service.php /languages/constructo.pot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/screenshot.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/img/logo.png -------------------------------------------------------------------------------- /assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/themify.eot -------------------------------------------------------------------------------- /assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/themify.woff -------------------------------------------------------------------------------- /assets/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/img/breadcrumb.png -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/Flaticon.woff2 -------------------------------------------------------------------------------- /assets/img/footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/img/footer_logo.png -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/fonts/gijgo-material.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/gijgo-material.eot -------------------------------------------------------------------------------- /assets/fonts/gijgo-material.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/gijgo-material.ttf -------------------------------------------------------------------------------- /assets/fonts/gijgo-material.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/gijgo-material.woff -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/constructo-theme/main/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "inc/libraries/epsilon-framework"] 2 | path = inc/libraries/epsilon-framework 3 | url = https://github.com/MachoThemes/epsilon-framework 4 | [submodule "inc/libraries/epsilon-theme-dashboard"] 5 | path = inc/libraries/epsilon-theme-dashboard 6 | url = https://github.com/MachoThemes/epsilon-theme-dashboard 7 | -------------------------------------------------------------------------------- /template-builder.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/pagination.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sidebar-page.php: -------------------------------------------------------------------------------- 1 | '; 18 | dynamic_sidebar( 'constructo-page-sidebar' ); 19 | echo ''; 20 | } 21 | 22 | 23 | ?> -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 |
'; 20 | } 21 | 22 | 23 | ?> -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 31 |