├── exampleSite
├── static
│ └── .gitkeep
├── .gitignore
├── config.toml
└── content
│ └── post
│ ├── hugoisforlovers.md
│ ├── migrate-from-jekyll.md
│ ├── goisforlovers.md
│ └── creating-a-new-theme.md
├── layouts
├── _default
│ ├── list.html
│ └── single.html
├── partials
│ ├── footer.html
│ ├── header.html
│ ├── js.html
│ ├── pagination.html
│ ├── post-list.html
│ ├── off-canvas.html
│ └── head.html
├── index.html
└── 404.html
├── archetypes
└── default.md
├── images
├── tn.png
└── screenshot.png
├── static
├── img
│ ├── img1.jpg
│ ├── img2.jpg
│ └── avatar.jpg
├── fonts
│ ├── icomoon.eot
│ ├── icomoon.ttf
│ ├── icomoon.woff
│ ├── icomoon.svg
│ └── icomoon.dev.svg
├── icons
│ └── twitter.svg
├── js
│ └── main.js
└── css
│ └── main.css
├── theme.toml
├── LICENSE.MD
├── CHANGELOG.md
└── README.md
/exampleSite/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exampleSite/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 | themes
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = ""
3 | description = ""
4 | +++
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/images/tn.png
--------------------------------------------------------------------------------
/static/img/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/static/img/img1.jpg
--------------------------------------------------------------------------------
/static/img/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/static/img/img2.jpg
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/images/screenshot.png
--------------------------------------------------------------------------------
/static/img/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/static/img/avatar.jpg
--------------------------------------------------------------------------------
/static/fonts/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/static/fonts/icomoon.eot
--------------------------------------------------------------------------------
/static/fonts/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/static/fonts/icomoon.ttf
--------------------------------------------------------------------------------
/static/fonts/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-hikari-theme/master/static/fonts/icomoon.woff
--------------------------------------------------------------------------------
/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/layouts/partials/header.html:
--------------------------------------------------------------------------------
1 | {{ . }}
5 | {{ end }}
6 |
7 |