├── .gitignore ├── partials ├── navigation.hbs ├── pagination.hbs ├── navcard.hbs ├── author.hbs ├── sharefab.hbs └── sharedrop.hbs ├── package.json ├── index.hbs ├── post.hbs ├── README.md ├── assets ├── css │ ├── theme.css │ ├── animations.css │ └── screen.css └── js │ └── main.js └── default.hbs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /partials/navigation.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "material", 3 | "version": "2.0.0", 4 | "author": { 5 | "email": "nauzethc@gmail.com", 6 | "name": "Nauzet Hernandez", 7 | "url": "http://www.nauzethdez.com/" 8 | }, 9 | "engines": { 10 | "ghost": ">=1.0.0" 11 | }, 12 | "license": "MIT", 13 | "config": { 14 | "posts_per_page": 10 15 | }, 16 | "demo": "http://www.nauzethdez.com/" 17 | } 18 | -------------------------------------------------------------------------------- /partials/pagination.hbs: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /partials/navcard.hbs: -------------------------------------------------------------------------------- 1 |
{{excerpt words="40"}}…
20 | Go 21 |