├── archetypes ├── default.md └── post.md ├── .github └── FUNDING.yml ├── images ├── tn.png └── screenshot.png ├── static ├── img │ └── bg-blog.jpg └── css │ └── blog.css ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── single.html │ └── rss.xml ├── partials │ ├── widget-archives.html │ ├── widget-tags.html │ ├── widget-recent.html │ ├── widget-related.html │ ├── footer.html │ └── header.html ├── tags │ └── list.html ├── taxonomy │ ├── tag.html │ └── archive.html ├── archives │ └── list.html ├── post │ └── list.html └── index.html ├── exampleSite ├── config.toml └── content │ ├── about.md │ └── post │ ├── hugoisforlovers.md │ ├── migrate-from-jekyll.md │ ├── goisforlovers.md │ └── creating-a-new-theme.md ├── theme.toml ├── LICENSE └── README.md /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ['Tazeg'] 2 | custom: ['https://keybase.io/jeffprod'] 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazeg/hugo-blog-jeffprod/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazeg/hugo-blog-jeffprod/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /static/img/bg-blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tazeg/hugo-blog-jeffprod/HEAD/static/img/bg-blog.jpg -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |