Page Not Found
6 |Page not found. Go back home.
8 |├── layouts ├── partials │ ├── brand.html │ ├── post-title.html │ ├── head-custom.html │ ├── related.html │ ├── head-meta.html │ ├── post-tags.html │ ├── sidebar.html │ ├── post-categories.html │ ├── taxonomies.html │ ├── post-date.html │ ├── recent.html │ ├── footer.html │ ├── header.html │ └── paginator.html ├── 404.html └── _default │ ├── content.html │ ├── summary.html │ ├── single.html │ ├── list.html │ └── baseof.html ├── .gitignore ├── exampleSite ├── content │ ├── contact.md │ ├── contact.es.md │ ├── post │ │ ├── _index.md │ │ ├── 2015-01-04-first-post.md │ │ ├── 2015-01-04-first-post.es.md │ │ ├── 2016-01-04-first-post.de.md │ │ ├── hugoisforlovers.de.md │ │ ├── hugoisforlovers.es.md │ │ ├── hugoisforlovers.md │ │ ├── migrate-from-jekyll.md │ │ ├── goisforlovers.md │ │ ├── goisforlovers.de.md │ │ ├── goisforlovers.es.md │ │ └── creating-a-new-theme.md │ ├── contact.de.md │ ├── about.md │ ├── about.de.md │ └── about.es.md ├── layouts │ └── partials │ │ └── brand.html └── config.toml ├── images ├── tn.png ├── screenshot.png └── screenshot2.png ├── static └── css │ └── style.css ├── i18n ├── en.yaml ├── it.yaml ├── es.yaml ├── fr.yaml └── de.yaml ├── theme.toml ├── LICENSE.md └── README.md /layouts/partials/brand.html: -------------------------------------------------------------------------------- 1 | {{ .Site.Title }} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | exampleSite/themes -------------------------------------------------------------------------------- /exampleSite/content/contact.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact" 3 | --- 4 | 5 | Contact us! -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzya/hugo-bootstrap/master/images/tn.png -------------------------------------------------------------------------------- /exampleSite/content/contact.es.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contacto" 3 | --- 4 | 5 | Contact us! -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Posts 3 | --- 4 | Hello world! 5 | -------------------------------------------------------------------------------- /exampleSite/content/contact.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Kontakt" 3 | --- 4 | 5 | Kontaktieren Sie uns! 6 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzya/hugo-bootstrap/master/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzya/hugo-bootstrap/master/images/screenshot2.png -------------------------------------------------------------------------------- /layouts/partials/post-title.html: -------------------------------------------------------------------------------- 1 |
Page not found. Go back home.
8 |6 | {{ range $name, $value := $taxonomy }} 7 | {{ $name }} 8 | {{ end }} 9 |
10 | {{ end }} 11 | {{ end }} 12 |124 | {{ .Get "caption" }} 125 | {{ with .Get "attrlink"}} {{ end }} 126 | {{ .Get "attr" }} 127 | {{ if .Get "attrlink"}} {{ end }} 128 |
{{ end }} 129 |