├── 404.php ├── archive.php ├── comments.php ├── content ├── content.json └── images │ ├── 0fd3416c.jpeg │ ├── 16758708_rm405-da01-04-mockup.jpg │ ├── 3da3ecc0.png │ ├── 59149.png │ ├── 6243854162c536333ab218a58996077f.jpeg │ ├── 68f64b9d.jpeg │ ├── 6f03daa8.png │ ├── 72648669.png │ ├── 8ad73f3c.jpeg │ ├── a2fc4ef890f44fa0a9bb7787ce17008d.jpeg │ ├── a71d61bb.png │ ├── business-sucessful-businessman-working-with-laptop-using-computer-smiling-standing.jpg │ ├── default-logo.png │ ├── group-people-working-out-business-plan-office.jpg │ ├── handsome-businessman-suit-glasses-cross-arms-chest-lookcopy.jpg │ ├── jhhhhhh.jpg │ ├── pexelsphoto3326103.jpeg │ ├── pexelsphoto3659862.jpeg │ ├── pexelsphoto3756523.jpeg │ ├── pexelsphoto3756525.jpeg │ ├── pexelsphoto3831823.jpeg │ ├── pexelsphoto704569.jpeg │ ├── pexelsphoto940302.jpeg │ ├── photo1564305564045c62d40dd0123.jpg │ ├── planning-risk-strategy-project-management-business.jpg │ ├── silhouette-business-people-discussion-meeting-cityscape-team-concept.jpg │ ├── successful-old-businessman-suit-glasses-looking-confident.jpg │ ├── top-view-image-motivated-employees-working-together-office-official-meeting-concept-business.jpg │ ├── woman-sitting-sofa-with-laptop-legs.jpg │ └── young-successful-businessman-correcting-tie.jpg ├── css ├── customizer-site-style.php ├── customizer-style.css └── media.css ├── footer.php ├── functions.php ├── header.php ├── home.php ├── images ├── 0fd3416c.jpeg ├── 68f64b9d.jpeg ├── 8ad73f3c.jpeg └── default-logo.png ├── inc ├── back-compat.php ├── customizer.php └── template-tags.php ├── index.php ├── intlTelInput ├── intlTelInput.css ├── intlTelInput.min.js └── utils.js ├── js ├── color-scheme-control.js ├── customize-preview.js ├── customizer.js ├── jquery.js ├── keyboard-image-navigation.js └── script.js ├── languages └── website4829605.pot ├── library ├── app.php ├── breadcrumbs.php ├── class-cforms.php ├── class-tgm-plugin-activation.php ├── class-wc-np.php ├── content-import.php ├── custom-widgets.php ├── navigation.php ├── options.php ├── post_templates.php ├── seo.php ├── sidebars.php ├── templates_options.php ├── tgm-activation.php ├── theme-wizard │ ├── assets │ │ ├── css │ │ │ └── npwizard-admin-style.css │ │ └── js │ │ │ └── npwizard.js │ ├── config.php │ └── npwizard.php ├── translations │ └── class-theme-multi-languages.php └── widgets.php ├── page-login.php ├── page-lostpassword.php ├── page-register.php ├── plugins └── nicepage.zip ├── readme.txt ├── screenshot.png ├── search.php ├── sidebar.php ├── style.css ├── template-parts ├── biography.php ├── blogTemplate │ ├── blog-content-styles.php │ ├── custom-template-options.php │ ├── layouts │ │ ├── blog-after.php │ │ ├── blog-before.php │ │ ├── blog-left-sidebar-after.php │ │ ├── blog-left-sidebar-before.php │ │ ├── blog-none-after.php │ │ ├── blog-none-before.php │ │ ├── blog-right-sidebar-after.php │ │ └── blog-right-sidebar-before.php │ └── post-content-1.php ├── content-none.php ├── content.php ├── footer-content.php ├── footer-styles.php ├── header-content.php ├── header-styles.php ├── page404Template │ ├── custom-template-options.php │ ├── layouts │ │ ├── page404-after.php │ │ ├── page404-before.php │ │ ├── page404-left-sidebar-after.php │ │ ├── page404-left-sidebar-before.php │ │ ├── page404-none-after.php │ │ ├── page404-none-before.php │ │ ├── page404-right-sidebar-after.php │ │ └── page404-right-sidebar-before.php │ ├── single-content-styles.php │ └── single-content.php ├── pageLoginTemplate │ ├── custom-template-options.php │ ├── forms │ │ ├── form.php │ │ ├── login.php │ │ ├── lostpassword.php │ │ └── register.php │ ├── layouts │ │ ├── pageLogin-after.php │ │ ├── pageLogin-before.php │ │ ├── pageLogin-left-sidebar-after.php │ │ ├── pageLogin-left-sidebar-before.php │ │ ├── pageLogin-none-after.php │ │ ├── pageLogin-none-before.php │ │ ├── pageLogin-right-sidebar-after.php │ │ └── pageLogin-right-sidebar-before.php │ ├── links │ │ ├── login.php │ │ ├── lostpassword.php │ │ └── register.php │ ├── single-content-styles.php │ └── single-content.php └── postTemplate │ ├── custom-template-options.php │ ├── layouts │ ├── post-after.php │ ├── post-before.php │ ├── post-left-sidebar-after.php │ ├── post-left-sidebar-before.php │ ├── post-none-after.php │ ├── post-none-before.php │ ├── post-right-sidebar-after.php │ └── post-right-sidebar-before.php │ ├── single-content-styles.php │ └── single-content.php └── templates ├── blog.php ├── page404.php ├── pageLogin.php ├── post.php └── templates.php /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/404.php -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/archive.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/comments.php -------------------------------------------------------------------------------- /content/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/content.json -------------------------------------------------------------------------------- /content/images/0fd3416c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/0fd3416c.jpeg -------------------------------------------------------------------------------- /content/images/16758708_rm405-da01-04-mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/16758708_rm405-da01-04-mockup.jpg -------------------------------------------------------------------------------- /content/images/3da3ecc0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/3da3ecc0.png -------------------------------------------------------------------------------- /content/images/59149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/59149.png -------------------------------------------------------------------------------- /content/images/6243854162c536333ab218a58996077f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/6243854162c536333ab218a58996077f.jpeg -------------------------------------------------------------------------------- /content/images/68f64b9d.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/68f64b9d.jpeg -------------------------------------------------------------------------------- /content/images/6f03daa8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/6f03daa8.png -------------------------------------------------------------------------------- /content/images/72648669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/72648669.png -------------------------------------------------------------------------------- /content/images/8ad73f3c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/8ad73f3c.jpeg -------------------------------------------------------------------------------- /content/images/a2fc4ef890f44fa0a9bb7787ce17008d.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/a2fc4ef890f44fa0a9bb7787ce17008d.jpeg -------------------------------------------------------------------------------- /content/images/a71d61bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/a71d61bb.png -------------------------------------------------------------------------------- /content/images/business-sucessful-businessman-working-with-laptop-using-computer-smiling-standing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/business-sucessful-businessman-working-with-laptop-using-computer-smiling-standing.jpg -------------------------------------------------------------------------------- /content/images/default-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/default-logo.png -------------------------------------------------------------------------------- /content/images/group-people-working-out-business-plan-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/group-people-working-out-business-plan-office.jpg -------------------------------------------------------------------------------- /content/images/handsome-businessman-suit-glasses-cross-arms-chest-lookcopy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/handsome-businessman-suit-glasses-cross-arms-chest-lookcopy.jpg -------------------------------------------------------------------------------- /content/images/jhhhhhh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/jhhhhhh.jpg -------------------------------------------------------------------------------- /content/images/pexelsphoto3326103.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto3326103.jpeg -------------------------------------------------------------------------------- /content/images/pexelsphoto3659862.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto3659862.jpeg -------------------------------------------------------------------------------- /content/images/pexelsphoto3756523.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto3756523.jpeg -------------------------------------------------------------------------------- /content/images/pexelsphoto3756525.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto3756525.jpeg -------------------------------------------------------------------------------- /content/images/pexelsphoto3831823.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto3831823.jpeg -------------------------------------------------------------------------------- /content/images/pexelsphoto704569.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto704569.jpeg -------------------------------------------------------------------------------- /content/images/pexelsphoto940302.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/pexelsphoto940302.jpeg -------------------------------------------------------------------------------- /content/images/photo1564305564045c62d40dd0123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/photo1564305564045c62d40dd0123.jpg -------------------------------------------------------------------------------- /content/images/planning-risk-strategy-project-management-business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/planning-risk-strategy-project-management-business.jpg -------------------------------------------------------------------------------- /content/images/silhouette-business-people-discussion-meeting-cityscape-team-concept.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/silhouette-business-people-discussion-meeting-cityscape-team-concept.jpg -------------------------------------------------------------------------------- /content/images/successful-old-businessman-suit-glasses-looking-confident.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/successful-old-businessman-suit-glasses-looking-confident.jpg -------------------------------------------------------------------------------- /content/images/top-view-image-motivated-employees-working-together-office-official-meeting-concept-business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/top-view-image-motivated-employees-working-together-office-official-meeting-concept-business.jpg -------------------------------------------------------------------------------- /content/images/woman-sitting-sofa-with-laptop-legs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/woman-sitting-sofa-with-laptop-legs.jpg -------------------------------------------------------------------------------- /content/images/young-successful-businessman-correcting-tie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/content/images/young-successful-businessman-correcting-tie.jpg -------------------------------------------------------------------------------- /css/customizer-site-style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/css/customizer-site-style.php -------------------------------------------------------------------------------- /css/customizer-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/css/customizer-style.css -------------------------------------------------------------------------------- /css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/css/media.css -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/header.php -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/home.php -------------------------------------------------------------------------------- /images/0fd3416c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/images/0fd3416c.jpeg -------------------------------------------------------------------------------- /images/68f64b9d.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/images/68f64b9d.jpeg -------------------------------------------------------------------------------- /images/8ad73f3c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/images/8ad73f3c.jpeg -------------------------------------------------------------------------------- /images/default-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/images/default-logo.png -------------------------------------------------------------------------------- /inc/back-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/inc/back-compat.php -------------------------------------------------------------------------------- /inc/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/inc/customizer.php -------------------------------------------------------------------------------- /inc/template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/inc/template-tags.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/index.php -------------------------------------------------------------------------------- /intlTelInput/intlTelInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/intlTelInput/intlTelInput.css -------------------------------------------------------------------------------- /intlTelInput/intlTelInput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/intlTelInput/intlTelInput.min.js -------------------------------------------------------------------------------- /intlTelInput/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/intlTelInput/utils.js -------------------------------------------------------------------------------- /js/color-scheme-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/js/color-scheme-control.js -------------------------------------------------------------------------------- /js/customize-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/js/customize-preview.js -------------------------------------------------------------------------------- /js/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/js/customizer.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/js/keyboard-image-navigation.js -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/js/script.js -------------------------------------------------------------------------------- /languages/website4829605.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/languages/website4829605.pot -------------------------------------------------------------------------------- /library/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/app.php -------------------------------------------------------------------------------- /library/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/breadcrumbs.php -------------------------------------------------------------------------------- /library/class-cforms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/class-cforms.php -------------------------------------------------------------------------------- /library/class-tgm-plugin-activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/class-tgm-plugin-activation.php -------------------------------------------------------------------------------- /library/class-wc-np.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/class-wc-np.php -------------------------------------------------------------------------------- /library/content-import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/content-import.php -------------------------------------------------------------------------------- /library/custom-widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/custom-widgets.php -------------------------------------------------------------------------------- /library/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/navigation.php -------------------------------------------------------------------------------- /library/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/options.php -------------------------------------------------------------------------------- /library/post_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/post_templates.php -------------------------------------------------------------------------------- /library/seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/seo.php -------------------------------------------------------------------------------- /library/sidebars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/sidebars.php -------------------------------------------------------------------------------- /library/templates_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/templates_options.php -------------------------------------------------------------------------------- /library/tgm-activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/tgm-activation.php -------------------------------------------------------------------------------- /library/theme-wizard/assets/css/npwizard-admin-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/theme-wizard/assets/css/npwizard-admin-style.css -------------------------------------------------------------------------------- /library/theme-wizard/assets/js/npwizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/theme-wizard/assets/js/npwizard.js -------------------------------------------------------------------------------- /library/theme-wizard/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/theme-wizard/config.php -------------------------------------------------------------------------------- /library/theme-wizard/npwizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/theme-wizard/npwizard.php -------------------------------------------------------------------------------- /library/translations/class-theme-multi-languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/translations/class-theme-multi-languages.php -------------------------------------------------------------------------------- /library/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/library/widgets.php -------------------------------------------------------------------------------- /page-login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/page-login.php -------------------------------------------------------------------------------- /page-lostpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/page-lostpassword.php -------------------------------------------------------------------------------- /page-register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/page-register.php -------------------------------------------------------------------------------- /plugins/nicepage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/plugins/nicepage.zip -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/search.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-left-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/blogTemplate/layouts/blog-left-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-left-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/blogTemplate/layouts/blog-left-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-none-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-none-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-right-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/blogTemplate/layouts/blog-right-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/blogTemplate/layouts/blog-right-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/blogTemplate/layouts/blog-right-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/blogTemplate/post-content-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/blogTemplate/post-content-1.php -------------------------------------------------------------------------------- /template-parts/content-none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/content-none.php -------------------------------------------------------------------------------- /template-parts/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/content.php -------------------------------------------------------------------------------- /template-parts/footer-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/footer-content.php -------------------------------------------------------------------------------- /template-parts/footer-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/footer-styles.php -------------------------------------------------------------------------------- /template-parts/header-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/header-content.php -------------------------------------------------------------------------------- /template-parts/header-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/header-styles.php -------------------------------------------------------------------------------- /template-parts/page404Template/custom-template-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/custom-template-options.php -------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-left-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/layouts/page404-left-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-left-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/layouts/page404-left-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-none-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-none-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-right-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/layouts/page404-right-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/page404Template/layouts/page404-right-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/layouts/page404-right-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/page404Template/single-content-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/single-content-styles.php -------------------------------------------------------------------------------- /template-parts/page404Template/single-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/page404Template/single-content.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/custom-template-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/custom-template-options.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/forms/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/forms/form.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/forms/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/forms/login.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/forms/lostpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/forms/lostpassword.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/forms/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/forms/register.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-left-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/layouts/pageLogin-left-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-left-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/layouts/pageLogin-left-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-none-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-none-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-right-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/layouts/pageLogin-right-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/layouts/pageLogin-right-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/layouts/pageLogin-right-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/links/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/links/login.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/links/lostpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/links/lostpassword.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/links/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/links/register.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/single-content-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/single-content-styles.php -------------------------------------------------------------------------------- /template-parts/pageLoginTemplate/single-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/pageLoginTemplate/single-content.php -------------------------------------------------------------------------------- /template-parts/postTemplate/custom-template-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/custom-template-options.php -------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-left-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/layouts/post-left-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-left-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/layouts/post-left-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-none-after.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-none-before.php: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-right-sidebar-after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/layouts/post-right-sidebar-after.php -------------------------------------------------------------------------------- /template-parts/postTemplate/layouts/post-right-sidebar-before.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/layouts/post-right-sidebar-before.php -------------------------------------------------------------------------------- /template-parts/postTemplate/single-content-styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/single-content-styles.php -------------------------------------------------------------------------------- /template-parts/postTemplate/single-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/template-parts/postTemplate/single-content.php -------------------------------------------------------------------------------- /templates/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/templates/blog.php -------------------------------------------------------------------------------- /templates/page404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/templates/page404.php -------------------------------------------------------------------------------- /templates/pageLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/templates/pageLogin.php -------------------------------------------------------------------------------- /templates/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/templates/post.php -------------------------------------------------------------------------------- /templates/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crypto27dev/WordPress_Business/HEAD/templates/templates.php --------------------------------------------------------------------------------