├── assets ├── css │ └── style.css └── scss │ └── main.scss ├── .gitignore ├── _layouts └── main.html ├── index.md ├── _includes └── donald.html ├── 404.html ├── package.json ├── about.md ├── README.org ├── Gemfile ├── Gemfile.lock └── _config.yml /assets/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | .DS_Store 5 | node_modules/ -------------------------------------------------------------------------------- /_layouts/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
4 | Some quick example text to build on the card title and make up the bulk of the card's content.
7 | Go somewhere 8 |Page not found :(
23 |The requested page could not be found.
24 |