├── template ├── index.html ├── lib │ ├── plugins.php │ ├── snippets │ │ ├── fonts.php │ │ ├── facebook-init.php │ │ └── ga.php │ ├── scripts.php │ ├── widgets.php │ ├── menu-walker.php │ └── config.php ├── .gitattributes ├── .eslintignore ├── index.php ├── assets │ └── css │ │ ├── main.scss │ │ └── font-awesome.scss ├── screenshot.png ├── front-page.php ├── .gitignore ├── style.css ├── .babelrc ├── page.php ├── single.php ├── .editorconfig ├── archive.php ├── functions.php ├── templates │ ├── footers │ │ └── footer.php │ ├── singles │ │ └── single.php │ ├── pages │ │ └── page.php │ ├── archives │ │ └── archive.php │ ├── modules │ │ └── social.php │ └── headers │ │ └── header.php ├── config.json ├── 404.php ├── .eslintrc.js ├── README.md ├── build │ ├── localhost.cert │ ├── webpack.dev.conf.js │ ├── localhost.key │ ├── webpack.base.conf.js │ ├── dev-server.js │ └── webpack.prod.conf.js ├── LICENSE └── package.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .editorconfig ├── package.json ├── LICENSE ├── meta.js ├── sao.js ├── README.md └── yarn.lock /template/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /template/lib/plugins.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | {{#unit}} 6 | test/unit/coverage 7 | {{/unit}} 8 | {{#e2e}} 9 | test/e2e/reports 10 | selenium-debug.log 11 | {{/e2e}} 12 | !.gitkeep 13 | -------------------------------------------------------------------------------- /template/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: {{ name }} 3 | Theme URI: {{ website }} 4 | Author: {{ author }} 5 | Description: {{ description }} 6 | Version: 1.0 7 | License: The Unlicense 8 | License URI: http://unlicense.org/ 9 | */ 10 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"], 3 | "plugins": ["transform-runtime"], 4 | "comments": false, 5 | "env": { 6 | "test": { 7 | "presets": ["latest", "stage-2"], 8 | "plugins": ["istanbul"] 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /template/assets/css/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /* variables */ 2 | $fa-font-path: '~font-awesome/fonts'; 3 | $base-size: 16px; 4 | $sans-serif: 'helvetica','arial','sans-serif'; 5 | $serif: 'georgia', 'serif'; 6 | 7 | // Import font awesome 8 | @import "~font-awesome/scss/font-awesome"; 9 | -------------------------------------------------------------------------------- /template/page.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | post_name); ?> 8 | 9 | 10 | -------------------------------------------------------------------------------- /template/single.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | post_type); ?> 8 | 9 | 10 | -------------------------------------------------------------------------------- /template/lib/snippets/fonts.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.php] 15 | indent_size = 4 16 | -------------------------------------------------------------------------------- /template/archive.php: -------------------------------------------------------------------------------- 1 | post_type) ? $post->post_type : ''; 3 | ?> 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /template/functions.php: -------------------------------------------------------------------------------- 1 | "> 2 |
5 | 6 | 7 | 8 | 9 |