├── release ├── README_CN.md └── img │ ├── about.png │ ├── home.png │ ├── logo.jpg │ ├── post.png │ ├── tags.jpg │ ├── archive.jpg │ ├── content-2.jpg │ └── github-project.png ├── .gitignore ├── exampleSite ├── layouts │ └── .gitkeep ├── static │ └── .gitkeep ├── resources │ └── .gitkeep ├── content │ ├── about │ │ ├── img │ │ │ └── about-head.jpg │ │ └── _index.md │ └── posts │ │ ├── rich-content.md │ │ ├── hugoisforlovers │ │ └── index.md │ │ ├── emoji-support.md │ │ ├── math-typesetting.md │ │ ├── placeholder-text.md │ │ └── markdown-syntax.md ├── archetypes │ └── default.md └── config.toml ├── layouts ├── partials │ ├── header.html │ ├── profile.html │ ├── utteranc.html │ ├── nav.html │ ├── footer.html │ ├── head.html │ ├── post-list.html │ └── social.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── terms.html │ └── single.html ├── index.html ├── shortcodes │ └── github-project.html ├── section │ └── about.html └── 404.html ├── images ├── tn.png └── screenshot.png ├── static ├── images │ ├── 404.gif │ ├── avatar.png │ └── favicon.ico ├── fonts │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-ThinItalic.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-MediumItalic.ttf │ ├── open-sans-v17-latin-ext_latin-700.woff2 │ ├── open-sans-v17-latin-ext_latin-italic.woff2 │ ├── open-sans-v17-latin-ext_latin-regular.woff2 │ ├── open-sans-v17-latin-ext_latin-700italic.woff2 │ └── LICENSE.txt └── css │ ├── highlight.css │ └── style.css ├── img └── github-project.png ├── archetypes └── default.md ├── theme.toml ├── README_ZH.md └── README.md /release/README_CN.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | -------------------------------------------------------------------------------- /exampleSite/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /release/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/about.png -------------------------------------------------------------------------------- /release/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/home.png -------------------------------------------------------------------------------- /release/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/logo.jpg -------------------------------------------------------------------------------- /release/img/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/post.png -------------------------------------------------------------------------------- /release/img/tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/tags.jpg -------------------------------------------------------------------------------- /static/images/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/images/404.gif -------------------------------------------------------------------------------- /img/github-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/img/github-project.png -------------------------------------------------------------------------------- /release/img/archive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/archive.jpg -------------------------------------------------------------------------------- /static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/images/avatar.png -------------------------------------------------------------------------------- /release/img/content-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/content-2.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /release/img/github-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/release/img/github-project.png -------------------------------------------------------------------------------- /static/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /exampleSite/content/about/img/about-head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/exampleSite/content/about/img/about-head.jpg -------------------------------------------------------------------------------- /static/fonts/open-sans-v17-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/open-sans-v17-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /static/fonts/open-sans-v17-latin-ext_latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/open-sans-v17-latin-ext_latin-italic.woff2 -------------------------------------------------------------------------------- /static/fonts/open-sans-v17-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/open-sans-v17-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/open-sans-v17-latin-ext_latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vran-dev/hugo-zenHo/HEAD/static/fonts/open-sans-v17-latin-ext_latin-700italic.woff2 -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .TranslationBaseName "-" " " | title }}" 3 | date: {{ .Date }} 4 | tags: [""] 5 | draft: false 6 | description: "" 7 | figure: "" 8 | --- -------------------------------------------------------------------------------- /exampleSite/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "{{ replace .TranslationBaseName "-" " " | title }}" 3 | date = {{ .Date }} 4 | tags = [""] 5 | draft = false 6 | description: "" 7 | figure: "" 8 | +++ 9 | -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{- partial "head.html" . -}} 4 | 5 | {{- partial "header.html" . -}} 6 |{{ .Site.Params.bio }}
8 |
17 |