├── .gitattributes ├── .gitignore ├── 404.php ├── CHANGELOG.md ├── README.md ├── admin ├── hooks.php └── layout.php ├── assets └── theme │ ├── .jscsrc │ ├── .jshintrc │ ├── .sass-lint.yml │ ├── images │ ├── one-column-narrow.svg │ ├── one-column.svg │ ├── screenshot.png │ ├── select-bg.svg │ ├── sidebar-left.svg │ └── sidebar-right.svg │ ├── js │ ├── mobileMenu.js │ ├── theme-init.js │ ├── theme.js │ └── vendor │ │ └── theme │ │ ├── jquery.accessible-menu.js │ │ ├── jquery.fitvids.js │ │ └── skip-link-focus.js │ └── scss │ ├── editor-style.scss │ ├── mixins │ └── _global.scss │ ├── partials │ ├── _archives.scss │ ├── _comments.scss │ ├── _common-classes.scss │ ├── _common-wp-core.scss │ ├── _entries.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _layout.scss │ ├── _navigation.scss │ ├── _pagination.scss │ ├── _plugins.scss │ ├── _sidebars.scss │ ├── _widgets.scss │ ├── blocks │ │ └── _author-box.scss │ └── defaults │ │ ├── _base.scss │ │ ├── _buttons.scss │ │ ├── _forms.scss │ │ ├── _lists.scss │ │ ├── _media.scss │ │ ├── _reset.scss │ │ ├── _tables.scss │ │ └── _typography.scss │ ├── settings │ └── _susy.scss │ ├── style.scss │ ├── variables │ ├── _colors.scss │ ├── _layout.scss │ ├── _misc.scss │ ├── _typography.scss │ └── _z-index.scss │ └── vendor │ ├── _media-queries.scss │ ├── fontawesome │ └── _variables.scss │ ├── normalize.scss │ └── susy │ ├── _su.scss │ ├── _susy.scss │ ├── _susyone.scss │ └── susy │ ├── _su.scss │ ├── language │ ├── _susy.scss │ ├── _susyone.scss │ ├── susy │ │ ├── _background.scss │ │ ├── _bleed.scss │ │ ├── _box-sizing.scss │ │ ├── _breakpoint-plugin.scss │ │ ├── _container.scss │ │ ├── _context.scss │ │ ├── _gallery.scss │ │ ├── _grids.scss │ │ ├── _gutters.scss │ │ ├── _isolate.scss │ │ ├── _margins.scss │ │ ├── _padding.scss │ │ ├── _rows.scss │ │ ├── _settings.scss │ │ ├── _span.scss │ │ └── _validation.scss │ └── susyone │ │ ├── _background.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _isolation.scss │ │ ├── _margin.scss │ │ ├── _media.scss │ │ ├── _padding.scss │ │ └── _settings.scss │ ├── output │ ├── _float.scss │ ├── _shared.scss │ ├── _support.scss │ ├── float │ │ ├── _container.scss │ │ ├── _end.scss │ │ ├── _isolate.scss │ │ └── _span.scss │ ├── shared │ │ ├── _background.scss │ │ ├── _container.scss │ │ ├── _direction.scss │ │ ├── _inspect.scss │ │ ├── _margins.scss │ │ ├── _output.scss │ │ └── _padding.scss │ └── support │ │ ├── _background.scss │ │ ├── _box-sizing.scss │ │ ├── _clearfix.scss │ │ ├── _prefix.scss │ │ ├── _rem.scss │ │ └── _support.scss │ └── su │ ├── _grid.scss │ ├── _settings.scss │ ├── _utilities.scss │ └── _validation.scss ├── attachment.php ├── composer.json ├── composer.lock ├── config ├── .jscsrc ├── .jshintrc └── grunt │ ├── aliases.js │ ├── concat.js │ ├── copy.js │ └── replace.js ├── css ├── editor-style.css ├── editor-style.css.map └── editor-style.min.css ├── footer.php ├── functions.php ├── gruntfile.js ├── header.php ├── images ├── one-column-narrow.svg ├── one-column.svg ├── select-bg.svg ├── sidebar-left.svg └── sidebar-right.svg ├── includes ├── hooks-template.php ├── hooks.php ├── scripts.php ├── template-404.php ├── template-archive.php ├── template-entry.php ├── template-global.php ├── template-layout.php ├── theme-setup.php ├── vendor │ └── carelib │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── admin │ │ ├── actions.php │ │ ├── layouts.php │ │ ├── metabox-post-layouts.php │ │ ├── scripts.php │ │ ├── styles.php │ │ └── templates │ │ │ ├── layout-select.php │ │ │ └── metabox-post-layouts.php │ │ ├── carelib.php │ │ ├── composer.json │ │ ├── css │ │ ├── carelib-admin.css │ │ ├── carelib-admin.min.css │ │ ├── customize-controls.css │ │ └── customize-controls.min.css │ │ ├── customize │ │ ├── actions.php │ │ ├── control-layout.php │ │ ├── control-radio-image.php │ │ ├── register.php │ │ ├── scripts.php │ │ └── styles.php │ │ ├── includes │ │ ├── actions.php │ │ ├── attributes.php │ │ ├── breadcrumbs.php │ │ ├── context.php │ │ ├── filters.php │ │ ├── head.php │ │ ├── image.php │ │ ├── language.php │ │ ├── layouts.php │ │ ├── menu.php │ │ ├── paths.php │ │ ├── plugins.php │ │ ├── scripts.php │ │ ├── search-form.php │ │ ├── sidebar.php │ │ ├── styles.php │ │ ├── support.php │ │ ├── template-404.php │ │ ├── template-archive.php │ │ ├── template-attachment.php │ │ ├── template-comments.php │ │ ├── template-entry.php │ │ ├── template-global.php │ │ ├── template-hooks.php │ │ ├── template-load.php │ │ ├── theme.php │ │ └── woocommerce │ │ │ ├── template-global.php │ │ │ └── template-hooks.php │ │ ├── js │ │ ├── customize-controls.js │ │ ├── customize-controls.min.js │ │ ├── customize-preview.js │ │ └── customize-preview.min.js │ │ ├── license.txt │ │ └── package.json └── woocommerce │ ├── hooks.php │ └── template-global.php ├── index.php ├── js ├── theme.js ├── theme.js.map └── theme.min.js ├── languages └── alpha.pot ├── license.txt ├── package.json ├── screenshot.png ├── sidebar.php ├── singular.php ├── style-rtl.css ├── style-rtl.css.map ├── style-rtl.min.css ├── style.css ├── style.css.map ├── style.min.css ├── template-parts ├── comment │ ├── comment.php │ ├── error.php │ ├── navigation.php │ └── ping.php ├── comments.php ├── content │ └── author-box-singular.php ├── error.php ├── menu │ ├── primary.php │ └── secondary.php ├── sidebar │ └── footer-widgets.php ├── site-footer.php └── site-header.php ├── templates ├── framework-404.php ├── framework-shop.php └── framework.php ├── woocommerce ├── archive-product.php └── single-product.php └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/404.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.0 4 | 5 | Initial release! 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/README.md -------------------------------------------------------------------------------- /admin/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/admin/hooks.php -------------------------------------------------------------------------------- /admin/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/admin/layout.php -------------------------------------------------------------------------------- /assets/theme/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/.jscsrc -------------------------------------------------------------------------------- /assets/theme/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/.jshintrc -------------------------------------------------------------------------------- /assets/theme/.sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/.sass-lint.yml -------------------------------------------------------------------------------- /assets/theme/images/one-column-narrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/images/one-column-narrow.svg -------------------------------------------------------------------------------- /assets/theme/images/one-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/images/one-column.svg -------------------------------------------------------------------------------- /assets/theme/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/images/screenshot.png -------------------------------------------------------------------------------- /assets/theme/images/select-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/images/select-bg.svg -------------------------------------------------------------------------------- /assets/theme/images/sidebar-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/images/sidebar-left.svg -------------------------------------------------------------------------------- /assets/theme/images/sidebar-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/images/sidebar-right.svg -------------------------------------------------------------------------------- /assets/theme/js/mobileMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/js/mobileMenu.js -------------------------------------------------------------------------------- /assets/theme/js/theme-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/js/theme-init.js -------------------------------------------------------------------------------- /assets/theme/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/js/theme.js -------------------------------------------------------------------------------- /assets/theme/js/vendor/theme/jquery.accessible-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/js/vendor/theme/jquery.accessible-menu.js -------------------------------------------------------------------------------- /assets/theme/js/vendor/theme/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/js/vendor/theme/jquery.fitvids.js -------------------------------------------------------------------------------- /assets/theme/js/vendor/theme/skip-link-focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/js/vendor/theme/skip-link-focus.js -------------------------------------------------------------------------------- /assets/theme/scss/editor-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/editor-style.scss -------------------------------------------------------------------------------- /assets/theme/scss/mixins/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/mixins/_global.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_archives.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_archives.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_comments.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_common-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_common-classes.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_common-wp-core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_common-wp-core.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_entries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_entries.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_footer.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_header.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_layout.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_navigation.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_pagination.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_plugins.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_sidebars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_sidebars.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/_widgets.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/blocks/_author-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/blocks/_author-box.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_base.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_buttons.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_forms.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_lists.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_media.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_reset.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_tables.scss -------------------------------------------------------------------------------- /assets/theme/scss/partials/defaults/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/partials/defaults/_typography.scss -------------------------------------------------------------------------------- /assets/theme/scss/settings/_susy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/settings/_susy.scss -------------------------------------------------------------------------------- /assets/theme/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/style.scss -------------------------------------------------------------------------------- /assets/theme/scss/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/variables/_colors.scss -------------------------------------------------------------------------------- /assets/theme/scss/variables/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/variables/_layout.scss -------------------------------------------------------------------------------- /assets/theme/scss/variables/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/variables/_misc.scss -------------------------------------------------------------------------------- /assets/theme/scss/variables/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/variables/_typography.scss -------------------------------------------------------------------------------- /assets/theme/scss/variables/_z-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/variables/_z-index.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/_media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/_media-queries.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/fontawesome/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/fontawesome/_variables.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/normalize.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/_su.scss: -------------------------------------------------------------------------------- 1 | // Su 2 | // == 3 | 4 | @import 'susy/su'; 5 | -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/_susy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/_susy.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/_susyone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/_susyone.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/_su.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/_su.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/_susy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/_susy.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/_susyone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/_susyone.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_background.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_bleed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_bleed.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_box-sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_box-sizing.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_breakpoint-plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_breakpoint-plugin.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_container.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_context.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_context.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_gallery.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_grids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_grids.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_gutters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_gutters.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_isolate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_isolate.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_margins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_margins.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_padding.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_rows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_rows.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_settings.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_span.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_span.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susy/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susy/_validation.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_background.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_functions.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_grid.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_isolation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_isolation.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_margin.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_media.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_padding.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/language/susyone/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/language/susyone/_settings.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/_float.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/_shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/_shared.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/_support.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/_support.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/float/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/float/_container.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/float/_end.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/float/_end.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/float/_isolate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/float/_isolate.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/float/_span.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/float/_span.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_background.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_container.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_direction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_direction.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_inspect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_inspect.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_margins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_margins.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_output.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_output.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/shared/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/shared/_padding.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/support/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/support/_background.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/support/_box-sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/support/_box-sizing.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/support/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/support/_clearfix.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/support/_prefix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/support/_prefix.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/support/_rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/support/_rem.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/output/support/_support.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/output/support/_support.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/su/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/su/_grid.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/su/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/su/_settings.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/su/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/su/_utilities.scss -------------------------------------------------------------------------------- /assets/theme/scss/vendor/susy/susy/su/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/assets/theme/scss/vendor/susy/susy/su/_validation.scss -------------------------------------------------------------------------------- /attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/attachment.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/config/.jscsrc -------------------------------------------------------------------------------- /config/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/config/.jshintrc -------------------------------------------------------------------------------- /config/grunt/aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/config/grunt/aliases.js -------------------------------------------------------------------------------- /config/grunt/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/config/grunt/concat.js -------------------------------------------------------------------------------- /config/grunt/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/config/grunt/copy.js -------------------------------------------------------------------------------- /config/grunt/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/config/grunt/replace.js -------------------------------------------------------------------------------- /css/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/css/editor-style.css -------------------------------------------------------------------------------- /css/editor-style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/css/editor-style.css.map -------------------------------------------------------------------------------- /css/editor-style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/css/editor-style.min.css -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/functions.php -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/gruntfile.js -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/header.php -------------------------------------------------------------------------------- /images/one-column-narrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/images/one-column-narrow.svg -------------------------------------------------------------------------------- /images/one-column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/images/one-column.svg -------------------------------------------------------------------------------- /images/select-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/images/select-bg.svg -------------------------------------------------------------------------------- /images/sidebar-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/images/sidebar-left.svg -------------------------------------------------------------------------------- /images/sidebar-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/images/sidebar-right.svg -------------------------------------------------------------------------------- /includes/hooks-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/hooks-template.php -------------------------------------------------------------------------------- /includes/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/hooks.php -------------------------------------------------------------------------------- /includes/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/scripts.php -------------------------------------------------------------------------------- /includes/template-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/template-404.php -------------------------------------------------------------------------------- /includes/template-archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/template-archive.php -------------------------------------------------------------------------------- /includes/template-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/template-entry.php -------------------------------------------------------------------------------- /includes/template-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/template-global.php -------------------------------------------------------------------------------- /includes/template-layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/template-layout.php -------------------------------------------------------------------------------- /includes/theme-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/theme-setup.php -------------------------------------------------------------------------------- /includes/vendor/carelib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/CHANGELOG.md -------------------------------------------------------------------------------- /includes/vendor/carelib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/README.md -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/actions.php -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/layouts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/metabox-post-layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/metabox-post-layouts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/scripts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/styles.php -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/templates/layout-select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/templates/layout-select.php -------------------------------------------------------------------------------- /includes/vendor/carelib/admin/templates/metabox-post-layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/admin/templates/metabox-post-layouts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/carelib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/carelib.php -------------------------------------------------------------------------------- /includes/vendor/carelib/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/composer.json -------------------------------------------------------------------------------- /includes/vendor/carelib/css/carelib-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/css/carelib-admin.css -------------------------------------------------------------------------------- /includes/vendor/carelib/css/carelib-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/css/carelib-admin.min.css -------------------------------------------------------------------------------- /includes/vendor/carelib/css/customize-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/css/customize-controls.css -------------------------------------------------------------------------------- /includes/vendor/carelib/css/customize-controls.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/css/customize-controls.min.css -------------------------------------------------------------------------------- /includes/vendor/carelib/customize/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/customize/actions.php -------------------------------------------------------------------------------- /includes/vendor/carelib/customize/control-layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/customize/control-layout.php -------------------------------------------------------------------------------- /includes/vendor/carelib/customize/control-radio-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/customize/control-radio-image.php -------------------------------------------------------------------------------- /includes/vendor/carelib/customize/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/customize/register.php -------------------------------------------------------------------------------- /includes/vendor/carelib/customize/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/customize/scripts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/customize/styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/customize/styles.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/actions.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/attributes.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/breadcrumbs.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/context.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/filters.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/head.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/image.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/language.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/layouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/layouts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/menu.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/paths.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/plugins.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/scripts.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/search-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/search-form.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/sidebar.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/styles.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/support.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-404.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-archive.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-attachment.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-comments.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-entry.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-global.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-hooks.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/template-load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/template-load.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/theme.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/woocommerce/template-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/woocommerce/template-global.php -------------------------------------------------------------------------------- /includes/vendor/carelib/includes/woocommerce/template-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/includes/woocommerce/template-hooks.php -------------------------------------------------------------------------------- /includes/vendor/carelib/js/customize-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/js/customize-controls.js -------------------------------------------------------------------------------- /includes/vendor/carelib/js/customize-controls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/js/customize-controls.min.js -------------------------------------------------------------------------------- /includes/vendor/carelib/js/customize-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/js/customize-preview.js -------------------------------------------------------------------------------- /includes/vendor/carelib/js/customize-preview.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/js/customize-preview.min.js -------------------------------------------------------------------------------- /includes/vendor/carelib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/license.txt -------------------------------------------------------------------------------- /includes/vendor/carelib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/vendor/carelib/package.json -------------------------------------------------------------------------------- /includes/woocommerce/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/woocommerce/hooks.php -------------------------------------------------------------------------------- /includes/woocommerce/template-global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/includes/woocommerce/template-global.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/index.php -------------------------------------------------------------------------------- /js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/js/theme.js -------------------------------------------------------------------------------- /js/theme.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/js/theme.js.map -------------------------------------------------------------------------------- /js/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/js/theme.min.js -------------------------------------------------------------------------------- /languages/alpha.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/languages/alpha.pot -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/screenshot.png -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/sidebar.php -------------------------------------------------------------------------------- /singular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/singular.php -------------------------------------------------------------------------------- /style-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/style-rtl.css -------------------------------------------------------------------------------- /style-rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/style-rtl.css.map -------------------------------------------------------------------------------- /style-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/style-rtl.min.css -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/style.css -------------------------------------------------------------------------------- /style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/style.css.map -------------------------------------------------------------------------------- /style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/style.min.css -------------------------------------------------------------------------------- /template-parts/comment/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/comment/comment.php -------------------------------------------------------------------------------- /template-parts/comment/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/comment/error.php -------------------------------------------------------------------------------- /template-parts/comment/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/comment/navigation.php -------------------------------------------------------------------------------- /template-parts/comment/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/comment/ping.php -------------------------------------------------------------------------------- /template-parts/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/comments.php -------------------------------------------------------------------------------- /template-parts/content/author-box-singular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/content/author-box-singular.php -------------------------------------------------------------------------------- /template-parts/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/error.php -------------------------------------------------------------------------------- /template-parts/menu/primary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/menu/primary.php -------------------------------------------------------------------------------- /template-parts/menu/secondary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/menu/secondary.php -------------------------------------------------------------------------------- /template-parts/sidebar/footer-widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/sidebar/footer-widgets.php -------------------------------------------------------------------------------- /template-parts/site-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/site-footer.php -------------------------------------------------------------------------------- /template-parts/site-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/template-parts/site-header.php -------------------------------------------------------------------------------- /templates/framework-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/templates/framework-404.php -------------------------------------------------------------------------------- /templates/framework-shop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/templates/framework-shop.php -------------------------------------------------------------------------------- /templates/framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/templates/framework.php -------------------------------------------------------------------------------- /woocommerce/archive-product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/woocommerce/archive-product.php -------------------------------------------------------------------------------- /woocommerce/single-product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/woocommerce/single-product.php -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/alpha/HEAD/yarn.lock --------------------------------------------------------------------------------