├── .gitignore ├── README.md ├── composer.json ├── views ├── seperate-mustache-render-example.mustache ├── nav.mustache ├── page.mustache ├── footer.mustache ├── sidebar.mustache ├── index.mustache └── header.mustache ├── compiler.php ├── seperate-mustache-render-example.php ├── page.php ├── single.php ├── style.css ├── index.php ├── page-data.php └── functions.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .DS_Store 3 | composer.lock 4 | composer.phar 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wordpress-starter-theme-mustache 2 | {{mustache}} starter theme for Wordpress 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "mustache/mustache": "~2.5" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /views/seperate-mustache-render-example.mustache: -------------------------------------------------------------------------------- 1 |