├── exampleSite
├── static
│ └── .gitkeep
├── .gitignore
├── content
│ ├── about.md
│ └── post
│ │ ├── hugoisforlovers.md
│ │ ├── migrate-from-jekyll.md
│ │ ├── goisforlovers.md
│ │ └── creating-a-new-theme.md
└── config.toml
├── archetypes
└── default.md
├── images
├── tn.png
└── screenshot.png
├── static
├── favicon.ico
├── fonts
│ ├── icons.eot
│ ├── icons.ttf
│ ├── icons.woff
│ └── icons.svg
├── img
│ ├── avatar.jpg
│ ├── favicon.ico
│ └── appletouchicon.png
├── js
│ ├── index.js
│ └── smooth-scroll.min.js
└── css
│ ├── github.css
│ └── screen.css
├── layouts
├── 404.html
├── _default
│ ├── list.html
│ ├── baseof.html
│ ├── terms.html
│ ├── summary.html
│ └── single.html
├── partials
│ ├── navigation.html
│ ├── header.html
│ ├── footer.html
│ ├── author.html
│ ├── themes
│ │ ├── red-theme.html
│ │ ├── blue-theme.html
│ │ ├── custom-theme.html
│ │ ├── green-theme.html
│ │ └── orange-theme.html
│ ├── pagination.html
│ ├── js.html
│ ├── share.html
│ ├── social.html
│ └── head.html
└── index.html
├── theme.toml
├── LICENSE.md
├── CHANGELOG.md
└── README.md
/exampleSite/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exampleSite/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 | themes
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 |
3 | +++
4 |
5 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/images/tn.png
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/static/fonts/icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/fonts/icons.eot
--------------------------------------------------------------------------------
/static/fonts/icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/fonts/icons.ttf
--------------------------------------------------------------------------------
/static/img/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/img/avatar.jpg
--------------------------------------------------------------------------------
/static/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/img/favicon.ico
--------------------------------------------------------------------------------
/static/fonts/icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/fonts/icons.woff
--------------------------------------------------------------------------------
/static/img/appletouchicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-steam-theme/HEAD/static/img/appletouchicon.png
--------------------------------------------------------------------------------
/layouts/404.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 | {{ .Site.Params.pageNotFoundTitle }}
5 | {{ . | markdownify }}
4 | {{ end }}
5 | {{ with .Site.Params.subtitle }}
6 | {{ . | markdownify }}
7 | {{ end }}
8 |