{{ printf "%s" .Summary | markdownify }}…
4 | {{ .Site.Data.l10n.article.read_more }} » 5 |├── exampleSite
├── static
│ └── .gitkeep
├── data
│ └── l10n.toml
├── config.toml
└── content
│ └── post
│ ├── hugo-is-for-lovers.md
│ ├── migrate-from-jekyll.md
│ ├── go-is-for-lovers.md
│ └── creating-a-new-theme.md
├── archetypes
└── default.md
├── images
├── tn.png
└── screenshot.png
├── layouts
├── index.html
├── _default
│ ├── summary.html
│ ├── list.html
│ ├── terms.html
│ └── single.html
├── partials
│ ├── article-list.html
│ ├── author.html
│ ├── article-header.html
│ ├── pagination.html
│ ├── footer.html
│ ├── article-share.html
│ ├── social.html
│ └── header.html
└── 404.html
├── static
├── favicon.ico
├── img
│ ├── desk.jpg
│ └── profile-image.png
├── font
│ ├── fontello.eot
│ ├── fontello.ttf
│ ├── fontello.woff
│ └── fontello.svg
├── apple-touch-icon.png
├── js
│ ├── plugins.js
│ └── vendor
│ │ └── modernizr-2.8.0.min.js
└── css
│ ├── highlightjs
│ └── monokai.css
│ └── styles.css
├── theme.toml
├── CHANGELOG.md
├── README.md
└── LICENSE.md
/exampleSite/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | tags = []
3 | +++
4 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/images/tn.png
--------------------------------------------------------------------------------
/layouts/index.html:
--------------------------------------------------------------------------------
1 | {{ partial "header" . }}
2 | {{ partial "article-list" . }}
3 | {{ partial "footer" . }}
4 |
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/favicon.ico
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/images/screenshot.png
--------------------------------------------------------------------------------
/static/img/desk.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/img/desk.jpg
--------------------------------------------------------------------------------
/static/font/fontello.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/font/fontello.eot
--------------------------------------------------------------------------------
/static/font/fontello.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/font/fontello.ttf
--------------------------------------------------------------------------------
/static/font/fontello.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/font/fontello.woff
--------------------------------------------------------------------------------
/static/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/apple-touch-icon.png
--------------------------------------------------------------------------------
/static/img/profile-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-minimalist-theme/master/static/img/profile-image.png
--------------------------------------------------------------------------------
/layouts/_default/summary.html:
--------------------------------------------------------------------------------
1 | {{ printf "%s" .Summary | markdownify }}…
{{ .Site.Data.l10n.page_not_found.subtitle }}
7 |
{{ .Site.Data.l10n.comments.comments }}
14 | {{ template "_internal/disqus.html" . }} 15 |