├── style-guide ├── home.html ├── secondary.html ├── tertiary.html └── general-elements.html ├── .gitignore ├── css └── public │ ├── 99-site-footer.css │ ├── 00-banner.css │ ├── 06-banner-single.css │ ├── 02-banner-featured.css │ ├── 03-block-featured.css │ ├── 07-single-post.css │ ├── 01-header.css │ └── 04-block-tabs.css ├── theme-functions ├── theme.php └── posts.php ├── parts ├── after-main.php ├── before-main.php ├── single-layout-post.php ├── banners │ ├── banner-home.php │ └── banner-single.php ├── archive-layout.php └── blocks │ ├── featured.php │ └── tabs.php ├── widgets ├── displays │ └── figure.php ├── give │ └── post-give.php └── post-images.php ├── README.md ├── .editorconfig ├── js └── public │ └── 01-cmv-advance.js ├── style.css ├── home.php ├── composer.json ├── includes ├── theme-functions.php ├── theme-metaboxes.php ├── theme-widgets.php ├── theme-scripts.php ├── theme-customizer.php ├── theme-feeds.php ├── post-meta-give.php └── theme-sidebars.php ├── package.json ├── functions.php ├── .travis.yml ├── single-post.php ├── metaboxes └── post-images │ └── post-image-metabox.php ├── phpcs.ruleset.xml ├── classes └── class-cmv-metabox.php ├── Gruntfile.js ├── articles ├── post-search.php └── single-post.php ├── .stylelintrc └── LICENSE /style-guide/home.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style-guide/secondary.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style-guide/tertiary.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style-guide/general-elements.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | vendor 4 | composer.lock 5 | style.css.map 6 | -------------------------------------------------------------------------------- /css/public/99-site-footer.css: -------------------------------------------------------------------------------- 1 | #site-footer { 2 | margin-left: 198px; 3 | padding-left: 2rem; 4 | border-top: 2px solid #555; 5 | } -------------------------------------------------------------------------------- /theme-functions/theme.php: -------------------------------------------------------------------------------- 1 | 2 |
Sorry, no results were found for your search.
33 | 34 | 35 |