├── .github ├── FUNDING.yml └── workflows │ ├── lint.yml │ └── release-please.yml ├── .gitignore ├── .mergify.yml ├── .prettierrc ├── .release-please-manifest.json ├── .stylelintignore ├── .stylelintrc.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── hb │ └── modules │ └── theme-cards │ ├── js │ └── index.ts │ └── scss │ ├── index.scss │ └── variables.tmpl.scss ├── exampleSite ├── .gitignore ├── archetypes │ └── default.md ├── assets │ ├── .gitignore │ ├── favicon.ico │ ├── hb │ │ └── modules │ │ │ └── custom │ │ │ ├── js │ │ │ └── index.ts │ │ │ ├── purgecss.config.toml │ │ │ └── scss │ │ │ ├── index.scss │ │ │ └── variables.tmpl.scss │ ├── images │ │ ├── logo.png │ │ └── pwa │ │ │ └── offline.png │ └── mask-icon.svg ├── config │ ├── _default │ │ ├── hugo.yaml │ │ ├── languages.yaml │ │ ├── menus.en.yaml │ │ ├── menus.zh-hans.yaml │ │ ├── module.yaml │ │ └── params.yaml │ ├── development │ │ ├── hugo.yaml │ │ ├── params.yaml │ │ └── server.yaml │ └── production │ │ ├── hugo.yaml │ │ └── params.yaml ├── content │ ├── _index.en.md │ ├── _index.zh-hans.md │ ├── archives │ │ ├── 2021 │ │ │ ├── 10 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 11 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 12 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 01 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 02 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 03 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 04 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 05 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 06 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 07 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 08 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 09 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── _index.en.md │ │ │ └── _index.zh-hans.md │ │ ├── 2022 │ │ │ ├── 10 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 11 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 12 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 01 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 02 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 03 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 04 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 05 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 06 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 07 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 08 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 09 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── _index.en.md │ │ │ └── _index.zh-hans.md │ │ ├── 2023 │ │ │ ├── 10 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 11 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 12 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 01 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 02 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 03 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 04 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 05 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 06 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 07 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 08 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── 09 │ │ │ │ ├── _index.en.md │ │ │ │ └── _index.zh-hans.md │ │ │ ├── _index.en.md │ │ │ └── _index.zh-hans.md │ │ ├── _index.en.md │ │ └── _index.zh-hans.md │ ├── authors │ │ ├── _index.en.md │ │ ├── _index.zh-hans.md │ │ ├── hb │ │ │ ├── _index.en.md │ │ │ └── _index.zh-hans.md │ │ └── hugomods │ │ │ ├── _index.en.md │ │ │ └── _index.zh-hans.md │ ├── blog │ │ ├── _index.en.md │ │ ├── _index.zh-hans.md │ │ ├── diagrams │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ │ ├── math │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ │ └── without-images │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ ├── categories │ │ ├── _index.en.md │ │ └── _index.zh-hans.md │ ├── docs │ │ ├── _index.en.md │ │ ├── _index.zh-hans.md │ │ ├── install-from-scratch │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ │ └── migrate-from-starter-theme │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ ├── news │ │ └── releases │ │ │ └── v0.1.0 │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ ├── notes │ │ ├── _index.en.md │ │ ├── _index.zh-hans.md │ │ └── use-docs-layout-on-other-sections │ │ │ ├── index.en.md │ │ │ └── index.zh-hans.md │ ├── series │ │ ├── _index.en.md │ │ └── _index.zh-hans.md │ └── tags │ │ ├── _index.en.md │ │ └── _index.zh-hans.md ├── go.mod ├── go.sum ├── layouts │ └── partials │ │ └── hugopress │ │ └── modules │ │ └── hb-custom │ │ └── hooks │ │ ├── body-end.html │ │ ├── hb-blog-sidebar.html │ │ └── head-end.html ├── package-lock.json └── package.json ├── go.mod ├── go.sum ├── hugo.toml ├── images ├── screenshot.png └── tn.png ├── layouts ├── _default │ └── terms.html └── partials │ └── hb │ └── modules │ ├── pagination │ └── index.html │ └── theme-cards │ └── index.html ├── package.json ├── release-please-config.json ├── renovate.json ├── theme.toml └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | resources/ 3 | .hugo_build.lock 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.1.1" 3 | } 4 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | **/*.tmpl.scss 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/README.md -------------------------------------------------------------------------------- /assets/hb/modules/theme-cards/js/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/hb/modules/theme-cards/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/assets/hb/modules/theme-cards/scss/index.scss -------------------------------------------------------------------------------- /assets/hb/modules/theme-cards/scss/variables.tmpl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/assets/hb/modules/theme-cards/scss/variables.tmpl.scss -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/.gitignore -------------------------------------------------------------------------------- /exampleSite/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/archetypes/default.md -------------------------------------------------------------------------------- /exampleSite/assets/.gitignore: -------------------------------------------------------------------------------- 1 | jsconfig.json 2 | -------------------------------------------------------------------------------- /exampleSite/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/favicon.ico -------------------------------------------------------------------------------- /exampleSite/assets/hb/modules/custom/js/index.ts: -------------------------------------------------------------------------------- 1 | // This script will be compiled into the JS bundle automatically. 2 | -------------------------------------------------------------------------------- /exampleSite/assets/hb/modules/custom/purgecss.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/hb/modules/custom/purgecss.config.toml -------------------------------------------------------------------------------- /exampleSite/assets/hb/modules/custom/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/hb/modules/custom/scss/index.scss -------------------------------------------------------------------------------- /exampleSite/assets/hb/modules/custom/scss/variables.tmpl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/hb/modules/custom/scss/variables.tmpl.scss -------------------------------------------------------------------------------- /exampleSite/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/images/logo.png -------------------------------------------------------------------------------- /exampleSite/assets/images/pwa/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/images/pwa/offline.png -------------------------------------------------------------------------------- /exampleSite/assets/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/assets/mask-icon.svg -------------------------------------------------------------------------------- /exampleSite/config/_default/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/_default/hugo.yaml -------------------------------------------------------------------------------- /exampleSite/config/_default/languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/_default/languages.yaml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/_default/menus.en.yaml -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.zh-hans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/_default/menus.zh-hans.yaml -------------------------------------------------------------------------------- /exampleSite/config/_default/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/_default/module.yaml -------------------------------------------------------------------------------- /exampleSite/config/_default/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/_default/params.yaml -------------------------------------------------------------------------------- /exampleSite/config/development/hugo.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/config/development/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/development/params.yaml -------------------------------------------------------------------------------- /exampleSite/config/development/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/development/server.yaml -------------------------------------------------------------------------------- /exampleSite/config/production/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/production/hugo.yaml -------------------------------------------------------------------------------- /exampleSite/config/production/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/config/production/params.yaml -------------------------------------------------------------------------------- /exampleSite/content/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/01/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Jan" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/01/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "一月" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/02/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Feb" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/02/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "二月" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/03/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mar 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/03/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 三月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/04/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apr 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/04/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 四月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/05/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: May 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/05/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 五月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/06/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jun 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/06/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 六月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/07/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: July 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/07/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 七月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/08/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aug 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/08/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 八月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/09/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sep 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/09/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 九月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/10/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oct 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/10/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/11/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nov 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/11/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十一月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/12/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dec 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/12/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十二月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2021 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2021/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2021 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/01/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Jan" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/01/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "一月" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/02/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Feb" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/02/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "二月" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/03/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mar 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/03/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 三月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/04/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apr 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/04/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 四月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/05/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: May 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/05/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 五月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/06/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jun 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/06/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 六月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/07/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: July 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/07/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 七月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/08/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aug 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/08/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 八月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/09/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sep 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/09/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 九月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/10/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oct 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/10/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/11/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nov 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/11/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十一月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/12/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dec 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/12/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十二月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2022 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2022/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2022 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/01/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Jan" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/01/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "一月" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/02/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Feb" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/02/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "二月" 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/03/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mar 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/03/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 三月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/04/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apr 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/04/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 四月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/05/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: May 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/05/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 五月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/06/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jun 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/06/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 六月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/07/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: July 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/07/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 七月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/08/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aug 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/08/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 八月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/09/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sep 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/09/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 九月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/10/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oct 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/10/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/11/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nov 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/11/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十一月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/12/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dec 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/12/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十二月 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2023 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/2023/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2023 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/archives/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/archives/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/archives/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/archives/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/authors/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/authors/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/authors/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/authors/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/authors/hb/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/authors/hb/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/authors/hb/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/authors/hb/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/authors/hugomods/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/authors/hugomods/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/authors/hugomods/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/authors/hugomods/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/blog/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | --- -------------------------------------------------------------------------------- /exampleSite/content/blog/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 博客 3 | --- -------------------------------------------------------------------------------- /exampleSite/content/blog/diagrams/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/blog/diagrams/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/blog/diagrams/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/blog/diagrams/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/blog/math/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/blog/math/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/blog/math/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/blog/math/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/blog/without-images/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/blog/without-images/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/blog/without-images/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/blog/without-images/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/categories/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/categories/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/categories/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/categories/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/docs/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/docs/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/docs/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/docs/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/docs/install-from-scratch/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/docs/install-from-scratch/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/docs/install-from-scratch/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/docs/install-from-scratch/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/docs/migrate-from-starter-theme/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/docs/migrate-from-starter-theme/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/docs/migrate-from-starter-theme/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/docs/migrate-from-starter-theme/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/news/releases/v0.1.0/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/news/releases/v0.1.0/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/news/releases/v0.1.0/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/news/releases/v0.1.0/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/notes/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/notes/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/notes/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/notes/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/notes/use-docs-layout-on-other-sections/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/notes/use-docs-layout-on-other-sections/index.en.md -------------------------------------------------------------------------------- /exampleSite/content/notes/use-docs-layout-on-other-sections/index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/notes/use-docs-layout-on-other-sections/index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/series/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/series/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/series/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/series/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/content/tags/_index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/tags/_index.en.md -------------------------------------------------------------------------------- /exampleSite/content/tags/_index.zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/content/tags/_index.zh-hans.md -------------------------------------------------------------------------------- /exampleSite/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/go.mod -------------------------------------------------------------------------------- /exampleSite/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme-cards/HEAD/exampleSite/go.sum -------------------------------------------------------------------------------- /exampleSite/layouts/partials/hugopress/modules/hb-custom/hooks/body-end.html: -------------------------------------------------------------------------------- 1 | {{/* Put custom HTML markup before the end of
. */}} 2 | -------------------------------------------------------------------------------- /exampleSite/layouts/partials/hugopress/modules/hb-custom/hooks/hb-blog-sidebar.html: -------------------------------------------------------------------------------- 1 |