├── exampleSite ├── static │ └── .gitkeep ├── content │ ├── about.md │ └── post │ │ ├── math-example.md │ │ ├── hugoisforlovers.md │ │ ├── migrate-from-jekyll.md │ │ ├── goisforlovers.md │ │ └── creating-a-new-theme.md └── config.toml ├── layouts ├── index.html ├── partials │ ├── tags.html │ ├── nav.html │ ├── disqus.html │ ├── pager.html │ ├── footer.html │ ├── sharing.html │ └── header.html ├── 404.html └── _default │ ├── single.html │ └── list.html ├── images ├── tn.png ├── screenshot.png └── screenshot_github.png ├── static ├── wave.ico └── css │ └── style.css ├── archetypes └── default.md ├── package.json ├── theme.toml ├── gulpfile.js ├── LICENSE.md ├── sass └── style.sass └── README.md /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ template "_default/list.html" . }} 2 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojoaar/hucore/master/images/tn.png -------------------------------------------------------------------------------- /static/wave.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojoaar/hucore/master/static/wave.ico -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojoaar/hucore/master/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojoaar/hucore/master/images/screenshot_github.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "{{ replace .TranslationBaseName "-" " " | title }}" 3 | tags = [ ] 4 | draft = true 5 | date = {{ .Date }} 6 | author = "" 7 | +++ 8 | -------------------------------------------------------------------------------- /layouts/partials/tags.html: -------------------------------------------------------------------------------- 1 |
6 | -------------------------------------------------------------------------------- /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 }}
4 |127 | {{ .Get "caption" }} 128 | {{ with .Get "attrlink"}} {{ end }} 129 | {{ .Get "attr" }} 130 | {{ if .Get "attrlink"}} {{ end }} 131 |
{{ end }} 132 |