├── .editorconfig ├── .gitignore ├── 404.php ├── LICENSE ├── README.md ├── archive.php ├── footer.php ├── functions.php ├── functions ├── admin │ ├── _class-acf-add-options-page.php │ ├── _class-admin-menu.php │ ├── _class-media-manager-svg-support.php │ ├── _class-svg-mime.php │ ├── class-hide-admin-bar.php │ └── class-mce.php ├── models │ ├── class-featured-image.php │ └── class-fields.php ├── structure │ ├── _class-register-nav-menus.php │ ├── _class-register-post-types.php │ └── _class-register-taxonomy.php ├── theme │ ├── _class-caption.php │ ├── _class-excerpt-more.php │ ├── class-enqueue-scripts.php │ ├── class-google-analytics.php │ ├── class-remove-emoji.php │ ├── class-setup.php │ └── class-template-tags.php └── utils │ ├── class-my-globals.php │ ├── class-php-debug.php │ └── class-utils.php ├── header.php ├── index.php ├── languages └── en_US.pot ├── page.php ├── readme.txt ├── screenshot.png ├── search.php ├── single.php ├── style.css └── template-parts ├── content-none.php ├── content-page.php ├── content-search.php ├── content-single.php ├── content.php └── post-thumbnail.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/404.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/README.md -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/archive.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions.php -------------------------------------------------------------------------------- /functions/admin/_class-acf-add-options-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/admin/_class-acf-add-options-page.php -------------------------------------------------------------------------------- /functions/admin/_class-admin-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/admin/_class-admin-menu.php -------------------------------------------------------------------------------- /functions/admin/_class-media-manager-svg-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/admin/_class-media-manager-svg-support.php -------------------------------------------------------------------------------- /functions/admin/_class-svg-mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/admin/_class-svg-mime.php -------------------------------------------------------------------------------- /functions/admin/class-hide-admin-bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/admin/class-hide-admin-bar.php -------------------------------------------------------------------------------- /functions/admin/class-mce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/admin/class-mce.php -------------------------------------------------------------------------------- /functions/models/class-featured-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/models/class-featured-image.php -------------------------------------------------------------------------------- /functions/models/class-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/models/class-fields.php -------------------------------------------------------------------------------- /functions/structure/_class-register-nav-menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/structure/_class-register-nav-menus.php -------------------------------------------------------------------------------- /functions/structure/_class-register-post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/structure/_class-register-post-types.php -------------------------------------------------------------------------------- /functions/structure/_class-register-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/structure/_class-register-taxonomy.php -------------------------------------------------------------------------------- /functions/theme/_class-caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/_class-caption.php -------------------------------------------------------------------------------- /functions/theme/_class-excerpt-more.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/_class-excerpt-more.php -------------------------------------------------------------------------------- /functions/theme/class-enqueue-scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/class-enqueue-scripts.php -------------------------------------------------------------------------------- /functions/theme/class-google-analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/class-google-analytics.php -------------------------------------------------------------------------------- /functions/theme/class-remove-emoji.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/class-remove-emoji.php -------------------------------------------------------------------------------- /functions/theme/class-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/class-setup.php -------------------------------------------------------------------------------- /functions/theme/class-template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/theme/class-template-tags.php -------------------------------------------------------------------------------- /functions/utils/class-my-globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/utils/class-my-globals.php -------------------------------------------------------------------------------- /functions/utils/class-php-debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/utils/class-php-debug.php -------------------------------------------------------------------------------- /functions/utils/class-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/functions/utils/class-utils.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/header.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/index.php -------------------------------------------------------------------------------- /languages/en_US.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/languages/en_US.pot -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/page.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/search.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/style.css -------------------------------------------------------------------------------- /template-parts/content-none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/template-parts/content-none.php -------------------------------------------------------------------------------- /template-parts/content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/template-parts/content-page.php -------------------------------------------------------------------------------- /template-parts/content-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/template-parts/content-search.php -------------------------------------------------------------------------------- /template-parts/content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/template-parts/content-single.php -------------------------------------------------------------------------------- /template-parts/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/template-parts/content.php -------------------------------------------------------------------------------- /template-parts/post-thumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/14islands/fourteen/HEAD/template-parts/post-thumbnail.php --------------------------------------------------------------------------------