{{ .Title }}
7 |-
8 |
9 | {{ with .Section }}
- {{ . }} {{ end }} 10 | {{ if eq (getenv "HUGO_ENV") "DEV" }} 11 |
- {{ .WordCount }} Words 12 | {{ if .IsDraft }}
- DRAFT {{ end }} 13 | {{ end }} 14 |
├── .gitignore ├── layouts ├── shortcodes │ ├── clear.html │ ├── twitter.html │ └── img.html ├── partials │ ├── pagination.html │ ├── meta.html │ ├── share.html │ ├── single_meta.html │ ├── single_json_ld.html │ └── styles.css ├── 404.html └── _default │ ├── list.html │ ├── terms.html │ ├── single.html │ ├── li_sm.html │ ├── li.html │ ├── summary.html │ └── baseof.html ├── images ├── tn.png ├── .DS_Store ├── amp-valid.png ├── responsive.png ├── screenshot.png ├── taxonomy.png └── include-images.png ├── static └── images │ └── default.jpg ├── theme.toml ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/clear.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/amp-valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/amp-valid.png -------------------------------------------------------------------------------- /images/responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/responsive.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/taxonomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/taxonomy.png -------------------------------------------------------------------------------- /images/include-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/images/include-images.png -------------------------------------------------------------------------------- /static/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dim0627/hugo_theme_aglaus/HEAD/static/images/default.jpg -------------------------------------------------------------------------------- /layouts/shortcodes/twitter.html: -------------------------------------------------------------------------------- 1 |You are looking for articles could not be found.
8 |