├── exampleSite ├── .gitignore ├── archetypes │ └── default.md ├── content │ ├── playground │ │ ├── 01-playground.md │ │ └── menus.md │ ├── about.md │ └── post │ │ ├── hugoisforlovers.md │ │ ├── migrate-from-jekyll.md │ │ ├── goisforlovers.md │ │ └── creating-a-new-theme.md ├── config.toml └── README.md ├── images ├── tn.png └── screenshot.png ├── static ├── images │ ├── logo.png │ └── start-screen │ │ ├── picture1.png │ │ ├── picture2.png │ │ └── picture3.png ├── js │ └── single-text-align.js └── css │ ├── mobile.css │ ├── code-style.min.css │ ├── normalize.css │ └── default.css ├── archetypes └── default.md ├── layouts ├── partials │ ├── footer.html │ ├── justify.svg │ ├── left.svg │ ├── head.html │ ├── sidebar.svg │ ├── face.svg │ └── start-screen.svg ├── 404.html ├── _default │ ├── list.html │ └── single.html └── index.html ├── theme.toml ├── CREDITS.html ├── LICENSE.md ├── sample-config.toml └── README.md /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | public/ -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djuelg/Shapez-Theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djuelg/Shapez-Theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djuelg/Shapez-Theme/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2016-10-09 3 | title: Title 4 | description: Description 5 | keywords: 6 | - Keyword 7 | --- -------------------------------------------------------------------------------- /static/images/start-screen/picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djuelg/Shapez-Theme/HEAD/static/images/start-screen/picture1.png -------------------------------------------------------------------------------- /static/images/start-screen/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djuelg/Shapez-Theme/HEAD/static/images/start-screen/picture2.png -------------------------------------------------------------------------------- /static/images/start-screen/picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djuelg/Shapez-Theme/HEAD/static/images/start-screen/picture3.png -------------------------------------------------------------------------------- /exampleSite/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | {{ partial "head.html" . }} 5 | 6 | 7 ||
29 |
30 |
32 | {{ .Date.Format "02" }}{{ .Date.Format "January" | upper }} 31 | |
33 |
|---|
39 | {{ .Summary }} 40 |
41 | {{ if .Truncated }}{{ end }} 42 |124 | {{ .Get "caption" }} 125 | {{ with .Get "attrlink"}} {{ end }} 126 | {{ .Get "attr" }} 127 | {{ if .Get "attrlink"}} {{ end }} 128 |
{{ end }} 129 |