├── exampleSite
├── static
│ └── .gitkeep
├── config.toml
└── content
│ ├── about.md
│ └── post
│ ├── hugoisforlovers.md
│ ├── migrate-from-jekyll.md
│ ├── goisforlovers.md
│ └── creating-a-new-theme.md
├── archetypes
└── default.md
├── .gitignore
├── layouts
├── _default
│ ├── list.html
│ └── single.html
├── 404.html
├── partials
│ ├── footer.html
│ ├── nav.html
│ ├── header.html
│ ├── disqus.html
│ └── pager.html
└── index.html
├── images
├── tn.png
└── screenshot.png
├── package.json
├── theme.toml
├── gulpfile.js
├── LICENSE.md
├── README.md
├── sass
└── style.sass
└── static
└── css
└── style.css
/exampleSite/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | +++
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 |
--------------------------------------------------------------------------------
/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tanksuzuki/hemingway/HEAD/images/tn.png
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tanksuzuki/hemingway/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "hemingway",
3 | "devDependencies": {
4 | "bulma": "^0.1.2",
5 | "gulp": "^3.9.1",
6 | "gulp-autoprefixer": "^3.1.1",
7 | "gulp-sass": "^2.3.2"
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/layouts/404.html:
--------------------------------------------------------------------------------
1 | {{ partial "header" . }}
2 | {{ .Site.Copyright | safeHTML }}{{ .Date.Format "January 2, 2006" }}
6 | {{ .Title }}
7 |
127 | {{ .Get "caption" }} 128 | {{ with .Get "attrlink"}} {{ end }} 129 | {{ .Get "attr" }} 130 | {{ if .Get "attrlink"}} {{ end }} 131 |
{{ end }} 132 |