├── .github └── FUNDING.yml ├── .gitignore ├── .mergify.yml ├── Dockerfile ├── LICENSE ├── README.md ├── archetypes ├── blog.md ├── docs.md ├── gallery.md └── tutorials.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.md ├── _index.zh-hans.md ├── archives │ ├── 2021 │ │ ├── 10 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 11 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 12 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 01 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 02 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 03 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 04 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 05 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 06 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 07 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 08 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 09 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── _index.md │ │ └── _index.zh-hans.md │ ├── 2022 │ │ ├── 10 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 11 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 12 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 01 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 02 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 03 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 04 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 05 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 06 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 07 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 08 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 09 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── _index.md │ │ └── _index.zh-hans.md │ ├── 2023 │ │ ├── 10 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 11 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 12 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 01 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 02 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 03 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 04 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 05 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 06 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 07 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 08 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── 09 │ │ │ ├── _index.md │ │ │ └── _index.zh-hans.md │ │ ├── _index.md │ │ └── _index.zh-hans.md │ ├── _index.md │ └── _index.zh-hans.md ├── authors │ ├── _index.md │ ├── _index.zh-hans.md │ ├── hugomods │ │ ├── _index.en.md │ │ └── _index.zh-hans.md │ └── razonyang │ │ ├── _index.md │ │ └── _index.zh-hans.md ├── blog │ ├── _index.md │ ├── _index.zh-hans.md │ ├── featured-image │ │ ├── featured.jpeg │ │ ├── index.md │ │ └── index.zh-hans.md │ ├── featured-post-without-image.md │ ├── featured-post-without-image.zh-hans.md │ └── tutorial │ │ ├── feature.jpg │ │ ├── index.md │ │ └── index.zh-hans.md ├── categories │ ├── _index.md │ └── _index.zh-hans.md ├── docs │ ├── _index.md │ ├── _index.zh-hans.md │ ├── installation │ │ ├── _index.md │ │ ├── _index.zh-hans.md │ │ ├── linux │ │ │ ├── _index.md │ │ │ ├── _index.zh-hans.md │ │ │ ├── archlinux │ │ │ │ ├── index.md │ │ │ │ └── index.zh-hans.md │ │ │ └── ubuntu │ │ │ │ ├── feature.png │ │ │ │ ├── index.md │ │ │ │ └── index.zh-hans.md │ │ └── windows │ │ │ ├── index.md │ │ │ └── index.zh-hans.md │ └── introduction │ │ ├── index.md │ │ └── index.zh-hans.md ├── examples │ ├── _index.md │ ├── _index.zh-hans.md │ ├── gallery │ │ ├── index.md │ │ └── index.zh-hans.md │ └── landing │ │ ├── index.md │ │ └── index.zh-hans.md ├── gallery │ ├── _index.md │ ├── _index.zh-hans.md │ ├── dogs │ │ ├── 20220101000000-featured.jpg │ │ ├── 20220102000000.jpg │ │ ├── 20220103000000.jpg │ │ ├── 20220104000000.jpg │ │ ├── index.md │ │ └── index.zh-hans.md │ ├── rainbow │ │ ├── 20220101-featured.jpg │ │ ├── 20220102.jpg │ │ ├── 20220103.jpg │ │ ├── 20230303.jpg │ │ ├── 20230304.jpeg │ │ ├── index.md │ │ └── index.zh-hans.md │ ├── sunrise │ │ ├── 20220101000000-featured.jpg │ │ ├── 20220102000000.jpg │ │ ├── 20220103000000.jpg │ │ ├── 20220104000000.jpg │ │ ├── 20220105000000.jpg │ │ ├── 20220106000000.jpg │ │ ├── 20220107000000.jpg │ │ ├── 20220108000000.jpg │ │ ├── 20220109000000.jpg │ │ ├── 20220110000000.jpg │ │ ├── 20220111000000.jpg │ │ ├── 20240405000000.jpg │ │ ├── index.md │ │ └── index.zh-hans.md │ └── textures │ │ ├── 20230101000000-feature.jpg │ │ ├── 20230102000000.jpg │ │ ├── 20230103000000.jpg │ │ ├── 20230104000000.jpg │ │ ├── 20230105000000.jpg │ │ ├── 20230106000000.jpg │ │ ├── index.md │ │ └── index.zh-hans.md ├── series │ ├── _index.md │ └── _index.zh-hans.md └── tags │ ├── _index.md │ └── _index.zh-hans.md ├── docker-compose.yml ├── go.mod ├── go.sum ├── images ├── screenshot.png └── tn.png ├── layouts └── partials │ └── hugopress │ └── modules │ └── hb-custom │ └── hooks │ ├── body-end.html │ ├── hb-blog-sidebar.html │ └── head-end.html ├── netlify.toml ├── package-lock.json ├── package.json ├── renovate.json └── theme.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: razonyang 2 | custom: 3 | - https://paypal.me/razonyang 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | hugo_stats.json 3 | package-json.lock 4 | public/ 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- 1 | pull_request_rules: 2 | - name: automatic merge for Renovate pull requests 3 | conditions: 4 | - author=renovate[bot] 5 | # - check-success=build 6 | actions: 7 | merge: 8 | method: rebase 9 | 10 | - name: Automatic merge on approval 11 | conditions: 12 | - "#approved-reviews-by>=1" 13 | actions: 14 | merge: 15 | method: rebase 16 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | ############### 2 | # Build Stage # 3 | ############### 4 | FROM hugomods/hugo:exts as builder 5 | # Base URL 6 | ARG HUGO_BASEURL= 7 | ENV HUGO_BASEURL=${HUGO_BASEURL} 8 | # Module Proxy 9 | ARG HUGO_MODULE_PROXY= 10 | ENV HUGO_MODULE_PROXY=${HUGO_MODULE_PROXY} 11 | # Build site 12 | COPY . /src 13 | RUN hugo --minify --gc --enableGitInfo 14 | # Set the fallback 404 page if defaultContentLanguageInSubdir is enabled, please replace the `en` with your default language code. 15 | RUN cp ./public/en/404.html ./public/404.html 16 | 17 | ############### 18 | # Final Stage # 19 | ############### 20 | FROM hugomods/hugo:nginx 21 | COPY --from=builder /src/public /site 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Razon Yang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HB Theme Template 2 | 3 | The starter theme template of [HB Framework](https://hbstack.dev/), live demo: https://theme.hbstack.dev/. 4 | 5 | ## News 6 | 7 | Our [cards style theme](https://github.com/hbstack/theme-cards) is available now. 8 | 9 | ## Documentation 10 | 11 | | English | 简体中文 | 12 | | ------- | -------- | 13 | | [Prerequisites](https://hbstack.dev/en/docs/getting-started/prerequisites/) | [先决条件](https://hbstack.dev/zh-hans/docs/getting-started/prerequisites/) | 14 | | [Installation](https://hbstack.dev/en/docs/getting-started/installation/) | [安裝](https://hbstack.dev/zh-hans/docs/getting-started/installation/) | 15 | | [Configuration](https://hbstack.dev/en/docs/configuration/) | [配置](https://hbstack.dev/zh-hans/docs/configuration/) | 16 | | [Content](https://hbstack.dev/en/docs/content/) | [内容](https://hbstack.dev/zh-hans/docs/content/) | 17 | | [Deployment](https://hbstack.dev/en/docs/deployment/) | [部署](https://hbstack.dev/zh-hans/docs/deployment/) | 18 | | [Modules](https://hbstack.dev/en/docs/modules/) | [模块](https://hbstack.dev/zh-hans/docs/modules/) | 19 | 20 | ## Features 21 | 22 | - **Fast** and **SEO** friendly: [PageSpeed Insight](https://pagespeed.web.dev/analysis?url=https://theme.hbstack.dev/en/) scored perfect :100: in all four metrics on mobile and desktop. 23 | - **Multi-purpose**: blog, project documentation, digital garden, gallery, landing pages and so on. 24 | - **Responsive**: mobile first, built on top of Bootstrap v5.3. 25 | - :ice_cube: **Modular** and **flexible**: extend features via various modules. 26 | - :first_quarter_moon: **Dark mode**: light, dark or auto (follow system). 27 | - :mag: **Search**: powerful client side *fuzzy* search that allows *filtering* and *sorting* of results, as well as searching from all multilingual sites. 28 | - **PurgeCSS**: remove unused CSS. 29 | - :rocket: **PWA**: 30 | - Installable: add site to home screen. 31 | - Offline available: offline page and offline image. 32 | - Allow precaching resources, such as CSS, JS and fonts. 33 | - **Advanced**: 34 | - Custom SCSS [variables](https://github.com/hbstack/theme/blob/main/assets/hb/modules/custom/scss/variables.tmpl.scss) and [style](https://github.com/hbstack/theme/blob/main/assets/hb/modules/custom/scss/index.scss). 35 | - Custom [JavaScript](https://github.com/hbstack/theme/blob/main/assets/hb/modules/custom/js/index.ts). 36 | - Custom HTML markup: 37 | - [Before the end of `
`](https://github.com/hbstack/theme/blob/main/layouts/partials/hugopress/modules/hb-custom/hooks/head-end.html) 38 | - [Before the end of ``](https://github.com/hbstack/theme/blob/main/layouts/partials/hugopress/modules/hb-custom/hooks/body-end.html) 39 | - [Custom sidebar widget](https://github.com/hbstack/theme/blob/main/layouts/partials/hugopress/modules/hb-custom/hooks/hb-blog-sidebar.html) 40 | - :framed_picture: **Images Processing**: process images via URL query string and fragment, such as alignment, resizing, cropping and so on, friendly to Markdown. 41 | - :computer: **Code block panel**: expand toggle, code copy button, line number toggle and wrap toggle. 42 | - **Menus**: supports header menus and footer menus. 43 | - Related posts slide. 44 | - :framed_picture: Image viewer: zoom in/out image. 45 | - :card_index_dividers: **Archives**: group by year and month. 46 | - :memo: **Multiple authors**: articles can be co-authored. 47 | - :globe_with_meridians: **Multilingual**. 48 | - :arrow_left: **RTL**: supports Right-to-Left languages. 49 | - :arrow_up: Back/Return to top button. 50 | - Social links: supports header and footer social links. 51 | - Content: supports KaTex (math), Mermaid (diagrams) and Bootstrap shortcodes. 52 | - ... 53 | 54 | ## Screenshot 55 | 56 |  57 | -------------------------------------------------------------------------------- /archetypes/blog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | description: 6 | noindex: false 7 | featured: false 8 | pinned: false 9 | # comments: false 10 | series: 11 | # - 12 | categories: 13 | # - 14 | tags: 15 | # - 16 | images: 17 | # - 18 | # menu: 19 | # main: 20 | # weight: 100 21 | # params: 22 | # icon: 23 | # vendor: bs 24 | # name: book 25 | # color: '#e24d0e' 26 | --- 27 | 28 | Summary. 29 | 30 | 31 | 32 | Content. 33 | -------------------------------------------------------------------------------- /archetypes/docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | # linkTitle: 4 | date: {{ .Date }} 5 | draft: true 6 | description: 7 | noindex: false 8 | # comments: false 9 | nav_weight: 1000 10 | # nav_icon: 11 | # vendor: bootstrap 12 | # name: toggles 13 | # color: '#e24d0e' 14 | series: 15 | - Docs 16 | categories: 17 | # - 18 | tags: 19 | # - 20 | images: 21 | # - 22 | # menu: 23 | # main: 24 | # weight: 100 25 | # params: 26 | # icon: 27 | # vendor: bs 28 | # name: book 29 | # color: '#e24d0e' 30 | --- 31 | 32 | Summary. 33 | 34 | 35 | 36 | Content. 37 | -------------------------------------------------------------------------------- /archetypes/gallery.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | description: 6 | resources: 7 | - src: foo.jpg 8 | title: Foo 9 | params: 10 | author: 11 | source: 12 | --- 13 | -------------------------------------------------------------------------------- /archetypes/tutorials.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | # linkTitle: 4 | date: {{ .Date }} 5 | draft: true 6 | description: 7 | noindex: false 8 | # comments: false 9 | nav_weight: 1000 10 | # nav_icon: 11 | # vendor: bootstrap 12 | # name: toggles 13 | # color: '#e24d0e' 14 | series: 15 | - Tutorial 16 | categories: 17 | # - 18 | tags: 19 | # - 20 | images: 21 | # menu: 22 | # main: 23 | # weight: 100 24 | # params: 25 | # icon: 26 | # vendor: bs 27 | # name: book 28 | # color: '#e24d0e' 29 | --- 30 | 31 | Summary. 32 | 33 | 34 | 35 | Content. 36 | -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | jsconfig.json 2 | -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/assets/favicon.ico -------------------------------------------------------------------------------- /assets/hb/modules/custom/js/index.ts: -------------------------------------------------------------------------------- 1 | // This script will be compiled into the JS bundle automatically. 2 | -------------------------------------------------------------------------------- /assets/hb/modules/custom/purgecss.config.toml: -------------------------------------------------------------------------------- 1 | classes = [] 2 | ids = [] 3 | tags = [] 4 | attributes = [] 5 | safelist_deep = [] 6 | safelist_greedy = [] 7 | safelist_standard = [] 8 | -------------------------------------------------------------------------------- /assets/hb/modules/custom/scss/index.scss: -------------------------------------------------------------------------------- 1 | // This SCSS styles will be compiled into the CSS bundle automatically. 2 | 3 | /*! purgecss start ignore */ 4 | 5 | /*! PUT YOU STYLE HERE TO AVOID GETTING REMOVING BY PURGECSS. */ 6 | 7 | /*! purgecss end ignore */ 8 | -------------------------------------------------------------------------------- /assets/hb/modules/custom/scss/variables.tmpl.scss: -------------------------------------------------------------------------------- 1 | // Override the Bootstrap and HB SCSS variables. 2 | // See https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss. 3 | // See https://github.com/twbs/bootstrap/blob/main/scss/_variables-dark.scss. 4 | // $primary: red; 5 | -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/pwa/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/assets/images/pwa/offline.png -------------------------------------------------------------------------------- /assets/mask-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 36 | -------------------------------------------------------------------------------- /config/_default/hugo.yaml: -------------------------------------------------------------------------------- 1 | baseURL: https://theme.hbstack.dev/ 2 | title: HB Starter Theme Template 3 | # Copyright, the {year} is the placeholder of this year. 4 | copyright: "Copyright © 2022-{year} [Hugo Modules](https://hugomods.com/) and [HB Framework](https://hbstack.dev/). All Rights Reserved." 5 | defaultContentLanguage: en 6 | defaultContentLanguageInSubdir: true # disable this to remove the default language code from URL, i.e. /en/docs -> /docs. 7 | enableRobotsTXT: true 8 | timeout: 120s # images processing takes a long time, it's recommended to commit the resources folder for improve the build performance. 9 | enableEmoji: true 10 | 11 | title_sections: true # when false, remove the sections from the title. 12 | title_sections_depth: 0 # the depth of sections on the title. 13 | title_sections_depth_dir: end # when start, the depth is counting from the root sections. 14 | 15 | permalinks: 16 | blog: /blog/:year/:month/:title 17 | 18 | outputs: 19 | home: 20 | - HTML 21 | - Offline # required by PWA module for displaying the offline pages. 22 | - RSS 23 | - SearchIndex # required by search module. 24 | - WebAppManifest # required by PWA module to make your site installable. 25 | 26 | taxonomies: 27 | authors: authors # multiple authors. 28 | tags: tags 29 | categories: categories 30 | series: series 31 | 32 | build: 33 | writeStats: true # required by PurgeCSS. 34 | 35 | markup: 36 | goldmark: 37 | renderer: 38 | unsafe: true 39 | highlight: 40 | noClasses: false 41 | lineNos: true 42 | lineNumbersInTable: false 43 | 44 | # see https://gohugo.io/content-management/related/#configure-related-content 45 | related: 46 | includeNewer: true 47 | indices: 48 | - name: keywords 49 | weight: 100 50 | - name: tags 51 | weight: 80 52 | - name: categories 53 | weight: 60 54 | - name: series 55 | weight: 60 56 | - name: authors 57 | weight: 10 58 | - name: date 59 | weight: 10 60 | threshold: 10 # for testing, increase it to suit your case. 61 | toLower: false 62 | 63 | security: 64 | funcs: 65 | getenv: 66 | - ^HUGO 67 | - CI$ 68 | - PWD 69 | 70 | -------------------------------------------------------------------------------- /config/_default/languages.yaml: -------------------------------------------------------------------------------- 1 | en: 2 | languageName: English 3 | weight: 1 4 | 5 | zh-hans: 6 | languageName: 简体中文 7 | title: HB 博客主题模板 8 | weight: 2 9 | -------------------------------------------------------------------------------- /config/_default/menus.en.yaml: -------------------------------------------------------------------------------- 1 | main: 2 | - name: Support 3 | identifier: support 4 | weight: 100 5 | url: https://github.com/hbstack 6 | params: 7 | header: The HB support community. 8 | icon: 9 | vendor: font-awesome-solid 10 | name: headset 11 | 12 | - name: Documentation 13 | parent: support 14 | url: https://hbstack.dev/ 15 | weight: 1 16 | params: 17 | icon: 18 | vendor: bs 19 | name: book 20 | className: text-primary 21 | description: The documentation. 22 | 23 | - name: GitHub 24 | parent: support 25 | url: https://github.com/hbstack 26 | weight: 11 27 | params: 28 | icon: 29 | vendor: fab 30 | name: github 31 | description: The code repository. 32 | 33 | - name: Discussion 34 | parent: support 35 | url: https://github.com/orgs/hbstack/discussions 36 | weight: 12 37 | params: 38 | icon: 39 | vendor: font-awesome-regular 40 | name: comments 41 | color: green 42 | description: Ask questions and share your ideas. 43 | 44 | - name: Bug Report 45 | parent: support 46 | url: https://github.com/orgs/hbstack/discussions/new?category=issues-and-bugs 47 | weight: 13 48 | params: 49 | icon: 50 | vendor: font-awesome-solid 51 | name: bug 52 | color: red 53 | description: Tell us about a bug or issue. 54 | 55 | - name: Feature Request 56 | parent: support 57 | url: https://github.com/orgs/hbstack/discussions/new?category=ideas 58 | weight: 14 59 | params: 60 | icon: 61 | vendor: font-awesome-regular 62 | name: lightbulb 63 | color: orange 64 | description: Suggest new or updated features. 65 | 66 | - name: Mastodon 67 | parent: support 68 | url: https://techhub.social/@hbstack 69 | weight: 16 70 | params: 71 | icon: 72 | vendor: simple 73 | name: mastodon 74 | description: Follow us on Mastodon to get latest updates. 75 | -------------------------------------------------------------------------------- /config/_default/menus.zh-hans.yaml: -------------------------------------------------------------------------------- 1 | main: 2 | - name: 支持 3 | identifier: support 4 | weight: 100 5 | url: https://github.com/hbstack 6 | params: 7 | header: HB 支持社区。 8 | icon: 9 | vendor: font-awesome-solid 10 | name: headset 11 | 12 | - name: 文档 13 | identifier: support-docs 14 | parent: support 15 | url: https://hbstack.dev/ 16 | weight: 1 17 | params: 18 | icon: 19 | vendor: bs 20 | name: book 21 | description: 使用文档。 22 | 23 | - name: GitHub 24 | parent: support 25 | url: https://github.com/hbstack 26 | weight: 2 27 | params: 28 | icon: 29 | vendor: fab 30 | name: github 31 | description: 代码仓库。 32 | 33 | - name: 讨论 34 | parent: support 35 | url: https://github.com/hbstack/discussions 36 | weight: 3 37 | params: 38 | icon: 39 | vendor: font-awesome-regular 40 | name: comments 41 | color: green 42 | description: 提问题和分享你的想法。 43 | 44 | - name: Bug 反馈 45 | parent: support 46 | url: https://github.com/hbstack/issues/new 47 | weight: 4 48 | params: 49 | icon: 50 | vendor: font-awesome-solid 51 | name: bug 52 | color: red 53 | description: 向我们反馈一个错误或问题。 54 | 55 | - name: 功能提议 56 | parent: support 57 | url: https://github.com/hbstack/issues/new 58 | weight: 5 59 | params: 60 | icon: 61 | vendor: font-awesome-regular 62 | name: lightbulb 63 | color: orange 64 | description: 建议新的或需要改进的功能。 65 | 66 | - name: Mastodon 67 | parent: support 68 | url: https://techhub.social/@hbstack 69 | weight: 6 70 | params: 71 | icon: 72 | vendor: simple 73 | name: mastodon 74 | description: 关注我们以获取最近消息。 75 | -------------------------------------------------------------------------------- /config/_default/module.yaml: -------------------------------------------------------------------------------- 1 | # For some regions can not access the proxy.golang.org, i.e. China. 2 | # See https://hugomods.com/en/blog/2023/04/go-and-hugo-proxy-servers/ for all available proxy servers. 3 | # proxy: https://goproxy.cn,direct 4 | 5 | # The order of module is very important, precedence from top to bottom. 6 | imports: 7 | # gallery modules. 8 | - path: github.com/hbstack/gallery 9 | - path: github.com/hbstack/gallery/modules/breadcrumb 10 | 11 | # syntax highlighting, see https://hbstack.dev/en/docs/modules/syntax-highlighting/. 12 | # - path: github.com/hbstack/syntax-highlighting/styles/github-dark 13 | 14 | # icons modules 15 | - path: github.com/hugomods/icons/vendors/font-awesome 16 | # - path: github.com/hugomods/icons/vendors/mdi 17 | # - path: github.com/hugomods/icons/vendors/simple-icons 18 | # - path: github.com/hugomods/icons/vendors/tabler 19 | # - path: github.com/hugomods/icons/vendors/feather 20 | 21 | # header themes 22 | # - path: github.com/hbstack/header/themes/pills 23 | # - path: github.com/hbstack/header/themes/tabs 24 | # - path: github.com/hbstack/header/themes/classic 25 | 26 | # blog sidebar 27 | - path: github.com/hbstack/blog/modules/sidebar/profile 28 | - path: github.com/hbstack/blog/modules/sidebar/posts 29 | - path: github.com/hbstack/blog/modules/sidebar/taxonomies 30 | 31 | # blog comments engine 32 | - path: github.com/hbstack/blog/modules/giscus 33 | # - path: github.com/hbstack/blog/modules/disqus 34 | # - path: github.com/hbstack/blog/modules/utterances 35 | 36 | # blog table of contents scrollspy 37 | - path: github.com/hbstack/blog/modules/toc-scrollspy 38 | 39 | # blog content panel 40 | - path: github.com/hbstack/blog/modules/content-panel 41 | 42 | # docs comments engine 43 | - path: github.com/hbstack/docs/modules/giscus 44 | # - path: github.com/hbstack/docs/modules/utterances 45 | # - path: github.com/hbstack/docs/modules/disqus 46 | 47 | # docs table of contents scrollspy 48 | - path: github.com/hbstack/docs/modules/toc-scrollspy 49 | 50 | # docs content panel 51 | - path: github.com/hbstack/docs/modules/content-panel 52 | 53 | # other modules 54 | # - path: github.com/hugomods/google-analytics 55 | # - path: github.com/hugomods/google-adsense 56 | 57 | # recommended modules 58 | # check which modules were imported by recommended module by "hugo mod graph | grep recommended". 59 | # see also https://hbstack.dev/en/docs/modules/meta/. 60 | # to remove unused modules, you need to replace the recommended module with modules your need. 61 | # see also https://hbstack.dev/en/2023/10/replace-meta-modules/. 62 | - path: github.com/hbstack/meta/recommended 63 | -------------------------------------------------------------------------------- /config/_default/params.yaml: -------------------------------------------------------------------------------- 1 | description: The starter theme template of HB (Hugo Bootstrap) Framework. 2 | 3 | hb: 4 | # override SASS variables, please replace the dash with underline, e.g. `list-group-color` should be `list_group_color`. 5 | # styles: 6 | # primary: '#6610f2' 7 | 8 | # js_bundle_name: main # the JS bundle name. 9 | # css_bundle_name: main # the CSS bundle name. 10 | 11 | full_width: false # when true, the layout takes full width globally. 12 | 13 | header: 14 | brand: HB # the brand name, leave it empty to use site's title. 15 | logo_bg: '#712cf9' # logo background color, used by logo with transparent background. 16 | # see https://hbstack.dev/en/docs/modules/socials/. 17 | socials: 18 | github: hbstack 19 | # twitter: razonyang 20 | rss: true 21 | mastodon: https://techhub.social/@hbstack 22 | footer: 23 | # see https://hbstack.dev/en/docs/modules/socials/. 24 | socials: 25 | _color: true # when false, remove the color of social icons. 26 | github: hbstack 27 | twitter: razonyang 28 | rss: true 29 | mastodon: https://techhub.social/@hbstack 30 | terms: 31 | # the paginate for categories, tags, series list pages. 32 | paginate: 12 33 | blog: 34 | sidebar: 35 | profile: 36 | # title: Profile title other than site title. 37 | # description: Profile description other than site description. 38 | company: COMPANY 39 | location: Earth 40 | socials: 41 | github: hbstack 42 | mastodon: https://techhub.social/@hbstack 43 | rss: true 44 | posts: 45 | recent_count: 5 # the number of recent posts. 46 | featured_count: 5 # the number of featured posts. 47 | taxonomies: 48 | count: true # whether to show the number of posts associated to the item. 49 | limit: 10 # the maximum number of the item. 50 | paginate: 12 # paginate. 51 | post_thumbnail_placeholder: HB THEME # the text of thumbnail placeholder, default to site title. 52 | # post_thumbnail: false # whether to show the thumbnails. 53 | # post_date_format: ":date_long" # see https://gohugo.io/functions/dateformat/#datetime-formatting-layouts. 54 | home: # homepage settings. 55 | # taxonomies: false # remove the taxonomies stat from the homepage. 56 | featured_posts: 5 # the number of the featured posts. 57 | main_sections: # leave it empty to include all regular pages. 58 | - docs 59 | - blog 60 | - tutorials 61 | giscus: 62 | repo: hbstack/theme 63 | repo_id: R_kgDOJP3qtA 64 | category_id: DIC_kwDOJP3qtM4CVavM 65 | docs: 66 | giscus: 67 | repo: hbstack/theme 68 | repo_id: R_kgDOJP3qtA 69 | category_id: DIC_kwDOJP3qtM4CVavM 70 | content_panel: 71 | repo: 72 | service: github # github or gitlab. 73 | repo: hbstack/theme 74 | branch: main 75 | # subpath: exampleSite 76 | # gallery: 77 | # thumbnail_size: "x640" 78 | 79 | seo: 80 | favicons: # see https://hugomods.com/en/docs/seo/#favicons-module 81 | icon: images/logo.png # use logo as favicon. 82 | 83 | # PWA settings, see https://hugomods.com/en/docs/pwa/#site-parameters. 84 | # The PWA was disabled on development environment. Set `hugopress.modules.pwa.disable` as `false` 85 | # on `config/development/params.yaml` to debug and test. 86 | pwa: 87 | debug: false 88 | icon_path: 'images/logo.png' # default to the logo path, replace it if the icon is different from the logo. 89 | icon_sizes: [48, 64, 128, 144, 256, 512] 90 | offline_image: 'images/pwa/offline.png' # the offline image to show if the requested image is not available. 91 | # manifest metadata, read more on https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json#list_of_manifest.json_keys. 92 | manifest: 93 | background_color: '#712cf9' 94 | theme_color: '#712cf9' 95 | short_name: 'HB Theme' 96 | 97 | # see https://hugomods.com/search/configurations/. 98 | search: 99 | stall_threshold: 300 100 | min_match_char_length: 2 101 | case_sensitive: false 102 | # shortcut_search: ["/"] 103 | 104 | mermaid: 105 | # replace it with other CDNs or self-hosted URLs. 106 | js_url: https://cdn.jsdelivr.net/npm/mermaid@latest/dist/mermaid.esm.min.mjs 107 | 108 | hugopress: 109 | modules: 110 | hb-custom: 111 | hooks: 112 | # see layouts/partials/hugopress/modules/hb-custom/hooks/head-end.html. 113 | head-end: 114 | cacheable: true 115 | # see layouts/partials/hugopress/modules/hb-custom/hooks/body-end.html. 116 | body-end: 117 | cacheable: true 118 | # see layouts/partials/hugopress/modules/hb-custom/hooks/hb-blog-sidebar.html. 119 | hb-blog-sidebar: 120 | cacheable: true 121 | weight: 1 122 | # change the order of sidebar modules. 123 | hb-blog-sidebar-taxonomies: 124 | hooks: 125 | hb-blog-sidebar: 126 | weight: 3 127 | hb-blog-sidebar-posts: 128 | hooks: 129 | hb-blog-sidebar: 130 | weight: 2 131 | -------------------------------------------------------------------------------- /config/development/hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/config/development/hugo.yaml -------------------------------------------------------------------------------- /config/development/params.yaml: -------------------------------------------------------------------------------- 1 | pwa: 2 | caches: 3 | font: 4 | strategy: network-first 5 | image: 6 | strategy: network-first 7 | script: 8 | strategy: network-first 9 | style: 10 | strategy: network-first 11 | 12 | hugopress: 13 | modules: 14 | pwa: 15 | disable: true 16 | -------------------------------------------------------------------------------- /config/development/server.yaml: -------------------------------------------------------------------------------- 1 | redirects: 2 | - from: /** 3 | to: /404.html 4 | status: 404 5 | -------------------------------------------------------------------------------- /config/production/hugo.yaml: -------------------------------------------------------------------------------- 1 | # see https://hugomods.com/en/docs/google-analytics/. 2 | # googleAnalytics: 'G-XXXXXXXXXX' # Google Analytics, please make sure you've imported the Google Analytics module. 3 | 4 | # disqusShortname: XXXXXX # The Disqus shortname. 5 | -------------------------------------------------------------------------------- /config/production/params.yaml: -------------------------------------------------------------------------------- 1 | # see https://hugomods.com/en/docs/google-adsense/. 2 | # google_adsense = 'ca-pub-XXXXXXXXXXXXXXXX' # Please make that the Google AdSense module was imported. 3 | -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: HB Theme Template 3 | # menu: 4 | # main: 5 | # name: Home 6 | # weight: 1 7 | # params: 8 | # icon: 9 | # vendor: bs 10 | # name: house 11 | --- 12 | -------------------------------------------------------------------------------- /content/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: HB 主题模板 3 | # menu: 4 | # main: 5 | # name: 主页 6 | # weight: 1 7 | # params: 8 | # icon: 9 | # vendor: bs 10 | # name: house 11 | --- 12 | -------------------------------------------------------------------------------- /content/archives/2021/01/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Jan" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/01/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "一月" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/02/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Feb" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/02/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "二月" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/03/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mar 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/03/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 三月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/04/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apr 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/04/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 四月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/05/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: May 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/05/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 五月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/06/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jun 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/06/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 六月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/07/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: July 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/07/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 七月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/08/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aug 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/08/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 八月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/09/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sep 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/09/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 九月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/10/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oct 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/10/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/11/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nov 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/11/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十一月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/12/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dec 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/12/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十二月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2021 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2021/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2021 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/01/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Jan" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/01/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "一月" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/02/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Feb" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/02/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "二月" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/03/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mar 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/03/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 三月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/04/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apr 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/04/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 四月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/05/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: May 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/05/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 五月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/06/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jun 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/06/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 六月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/07/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: July 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/07/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 七月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/08/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aug 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/08/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 八月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/09/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sep 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/09/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 九月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/10/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oct 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/10/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/11/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nov 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/11/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十一月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/12/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dec 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/12/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十二月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2022 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2022/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2022 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/01/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Jan" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/01/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "一月" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/02/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Feb" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/02/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "二月" 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/03/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mar 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/03/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 三月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/04/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apr 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/04/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 四月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/05/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: May 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/05/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 五月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/06/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jun 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/06/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 六月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/07/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: July 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/07/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 七月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/08/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aug 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/08/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 八月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/09/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sep 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/09/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 九月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/10/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Oct 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/10/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/11/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nov 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/11/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十一月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/12/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dec 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/12/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 十二月 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2023 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/2023/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 2023 3 | --- 4 | -------------------------------------------------------------------------------- /content/archives/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Archives 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: archive 10 | className: text-primary-emphasis 11 | description: Posts archive. 12 | --- 13 | -------------------------------------------------------------------------------- /content/archives/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 归档 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: archive 10 | color: '384955' 11 | description: 文章归档。 12 | --- 13 | -------------------------------------------------------------------------------- /content/authors/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Authors 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: pencil 10 | color: '#0f5e97' 11 | description: Authors list. 12 | --- 13 | -------------------------------------------------------------------------------- /content/authors/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 作者 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: pencil 10 | color: '#0f5e97' 11 | description: 作者列表。 12 | --- 13 | -------------------------------------------------------------------------------- /content/authors/hugomods/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: HugoMods Authors 3 | description: Code and documentation contributors of HugoMods 4 | images: 5 | - https://avatars.githubusercontent.com/u/128204519?s=200&v=4 6 | socials: 7 | github: hugomods 8 | paypal: razonyang 9 | kofi: razonyang 10 | gmail: mailto:support@hugomods.com 11 | --- 12 | -------------------------------------------------------------------------------- /content/authors/hugomods/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: HugoMods Authors 3 | description: HugoMods 代码和文档的贡献者 4 | images: 5 | - https://avatars.githubusercontent.com/u/128204519?s=200&v=4 6 | socials: 7 | github: hugomods 8 | paypal: razonyang 9 | kofi: razonyang 10 | gmail: mailto:support@hugomods.com 11 | --- 12 | -------------------------------------------------------------------------------- /content/authors/razonyang/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Razon Yang 3 | email_hash: e7501ec2b3cd95d6af8964743c1d27c7 4 | --- 5 | -------------------------------------------------------------------------------- /content/authors/razonyang/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Razon Yang 3 | email_hash: e7501ec2b3cd95d6af8964743c1d27c7 4 | --- 5 | -------------------------------------------------------------------------------- /content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | menu: 4 | main: 5 | identifier: blog 6 | weight: 4 7 | params: 8 | icon: 9 | vendor: fas 10 | name: blog 11 | --- -------------------------------------------------------------------------------- /content/blog/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 博客 3 | menu: 4 | main: 5 | identifier: blog 6 | weight: 4 7 | params: 8 | icon: 9 | vendor: fas 10 | name: blog 11 | --- -------------------------------------------------------------------------------- /content/blog/featured-image/featured.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/blog/featured-image/featured.jpeg -------------------------------------------------------------------------------- /content/blog/featured-image/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Example Post with an Featured Image" 3 | date: 2022-02-04T20:26:48+08:00 4 | draft: false 5 | featured: true 6 | series: 7 | - Guide 8 | categories: 9 | - Posts 10 | tags: 11 | - Featured Image 12 | authors: 13 | - razonyang 14 | --- 15 | 16 | The example post with an featured image. 17 | 18 | 19 | -------------------------------------------------------------------------------- /content/blog/featured-image/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "带有特色图片的示例文章" 3 | date: 2022-02-04T20:26:48+08:00 4 | draft: false 5 | featured: true 6 | series: 7 | - 指南 8 | categories: 9 | - 文章 10 | tags: 11 | - 特色图片 12 | authors: 13 | - razonyang 14 | --- 15 | 16 | 一篇带有特色图片的示例文章。 17 | 18 | 19 | -------------------------------------------------------------------------------- /content/blog/featured-post-without-image.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Featured Post without Image 3 | Featured: true 4 | date: 2022-09-10 5 | --- 6 | 7 | A sample for showing how carousel handle featured posts that without images. 8 | -------------------------------------------------------------------------------- /content/blog/featured-post-without-image.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Featured Post without Image 3 | Featured: true 4 | date: 2022-09-10 5 | --- 6 | 7 | A sample for showing how carousel handle featured posts that without images. 8 | -------------------------------------------------------------------------------- /content/blog/tutorial/feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/blog/tutorial/feature.jpg -------------------------------------------------------------------------------- /content/blog/tutorial/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Tutorial" 3 | # linkTitle: 4 | date: 2023-03-31T11:47:31+08:00 5 | draft: false 6 | description: 7 | noindex: false 8 | pinned: true 9 | nav_weight: 1000 10 | # nav_icon: 11 | # vendor: bootstrap 12 | # name: toggles 13 | # color: '#e24d0e' 14 | series: 15 | - Tutorial 16 | categories: 17 | - Content 18 | tags: 19 | - Shortcode 20 | - Code Block 21 | - KaTex 22 | - Mermaid 23 | - Math 24 | - Diagram 25 | images: 26 | # menu: 27 | # main: 28 | # weight: 100 29 | # params: 30 | # icon: 31 | # vendor: bs 32 | # name: book 33 | # color: '#e24d0e' 34 | authors: 35 | - razonyang 36 | - hugomods 37 | --- 38 | 39 | A simple tutorial that offers samples and code snippets show how to create rich content, please refer to the [documentation](https://hbstack.dev/en/) for more usage. 40 | 41 | 42 | 43 | ## Installation 44 | 45 | **Please note that this theme requires Go installation the newest extended Hugo version.** 46 | 47 | Please check out the [installation](https://hbstack.dev/en/docs/getting-started/installation/) section. 48 | 49 | ## Create Content 50 | 51 | ```sh 52 | hugo new blog/new-post/index.md 53 | ``` 54 | 55 | The created content is in draft stage, you'll need to publish the content by removing the `draft` or setting the `draft` as `true` on front matter. Learn on on [content](https://hbstack.dev/en/docs/content/). 56 | 57 | ## Code Block 58 | 59 | ````markdown 60 | ```[lang] 61 | CODE 62 | ``` 63 | ```` 64 | 65 | {{% bootstrap/collapse "[lang]" %}} 66 | Replace `[lang]` with corresponding language identifier, such as `js`, `php`, `go`, `html` and so on. 67 | {{% /bootstrap/collapse %}} 68 | 69 | ```js 70 | console.log('Hello world!') 71 | ``` 72 | 73 | ### Code Syntax Highlighting Styles 74 | 75 | HB offers dozens of syntax highlighting styles, find more on [syntax highlighting styles modules](https://hbstack.dev/en/docs/modules/syntax-highlighting/). 76 | 77 | Import the desired style module and restart the Hugo server (load module's assets fully) to preview. 78 | 79 | {{< bootstrap/config-toggle hugo >}} 80 | module: 81 | imports: 82 | - path: github.com/hbstack/syntax-highlighting/styles/github-dark 83 | {{< /bootstrap/config-toggle >}} 84 | 85 | ## KaTex 86 | 87 | ````markdown 88 | ```katex 89 | MATH 90 | ``` 91 | ```` 92 | 93 | ```katex 94 | f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi 95 | ``` 96 | 97 | Read more on [KaTex Usage](https://hugomods.com/en/docs/content/katex/#usage). 98 | 99 | ## Mermaid 100 | 101 | ````markdown 102 | ```mermaid 103 | DIAGRAM 104 | ``` 105 | ```` 106 | 107 | ```mermaid 108 | graph TD; 109 | A-->B; 110 | A-->C; 111 | B-->D; 112 | C-->D; 113 | ``` 114 | 115 | Read more on [Mermaid Usage](https://hugomods.com/en/docs/content/mermaid/#usage). 116 | 117 | ## Shortcodes 118 | 119 | Learn more on [shortcodes](https://hbstack.dev/en/docs/content/shortcodes/). 120 | 121 | ## Deployment 122 | 123 | See [deployment](https://hbstack.dev/en/docs/deployment/) for deploying your site. 124 | -------------------------------------------------------------------------------- /content/blog/tutorial/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "指南" 3 | # linkTitle: 4 | date: 2023-03-31T11:47:31+08:00 5 | draft: false 6 | description: 7 | noindex: false 8 | pinned: true 9 | nav_weight: 1000 10 | # nav_icon: 11 | # vendor: bootstrap 12 | # name: toggles 13 | # color: '#e24d0e' 14 | series: 15 | - Tutorial 16 | categories: 17 | - Content 18 | tags: 19 | - Shortcode 20 | - Code Block 21 | - KaTex 22 | - Mermaid 23 | - Math 24 | - Diagram 25 | images: 26 | # menu: 27 | # main: 28 | # weight: 100 29 | # params: 30 | # icon: 31 | # vendor: bs 32 | # name: book 33 | # color: '#e24d0e' 34 | authors: 35 | - razonyang 36 | - hugomods 37 | --- 38 | 39 | 本教程提供简单的示例和代码段,以展示如何创建富文本,更多用法请查阅[文档](https://hbstack.dev/zh-hans/)。 40 | 41 | 42 | 43 | ## 安装 44 | 45 | **请注意本主题需要安装 Go 和最新的扩展版 Hugo。** 46 | 47 | 详情请阅读[安装](https://hbstack.dev/zh-hans/docs/getting-started/installation)一文。 48 | 49 | ## 新增内容 50 | 51 | ```sh 52 | hugo new blog/new-post/index.md 53 | ``` 54 | 55 | 新创建的内容处于草稿状态,发布时需要移除 `draft`参数或者将其设为 `false`。 56 | 57 | {{< bootstrap/alert >}} 58 | {{% markdownify %}} 59 | 请指定 `--buildDrafts` (`-D`) 标识以预览草稿,如 `hugo server --gc -D --disableFastRender`。 60 | > **npm run dev** 默认会构建草稿内容。 61 | {{% /markdownify %}} 62 | {{< /bootstrap/alert >}} 63 | 64 | ## 代码块 65 | 66 | ````markdown 67 | ```[lang] 68 | CODE 69 | ``` 70 | ```` 71 | 72 | {{% bootstrap/collapse "[lang]" %}} 73 | 请将 `[lang]` 替换为对应的语言标识,如 `js`、`php`、`go`、`html` 等。 74 | {{% /bootstrap/collapse %}} 75 | 76 | ```js 77 | console.log('Hello world!') 78 | ``` 79 | 80 | ### 代码高亮样式 81 | 82 | HB 提供了数十个代码高亮样式,详情请参阅[代码高亮样式模块](https://hbstack.dev/zh-hans/docs/modules/syntax-highlighting/)。 83 | 84 | 导入对应的样式模块,并重启 Hugo 服务器以完整地载入模块的资源。 85 | 86 | {{< bootstrap/config-toggle hugo >}} 87 | module: 88 | imports: 89 | - path: github.com/hbstack/syntax-highlighting/styles/github-dark 90 | {{< /bootstrap/config-toggle >}} 91 | 92 | ## KaTex 93 | 94 | ````markdown 95 | ```katex 96 | MATH 97 | ``` 98 | ```` 99 | 100 | ```katex 101 | f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi 102 | ``` 103 | 104 | Read more on [KaTex Usage](https://hugomods.com/en/docs/content/katex/#usage). 105 | 106 | ## Mermaid 107 | 108 | ````markdown 109 | ```mermaid 110 | DIAGRAM 111 | ``` 112 | ```` 113 | 114 | ```mermaid 115 | graph TD; 116 | A-->B; 117 | A-->C; 118 | B-->D; 119 | C-->D; 120 | ``` 121 | 122 | Read more on [Mermaid Usage](https://hugomods.com/en/docs/content/mermaid/#usage). 123 | 124 | ## 短代码 125 | 126 | 详情请参阅[短代码](https://hbstack.dev/zh-hans/docs/content/shortcodes/)。 127 | 128 | ## 部署 129 | 130 | 领请参阅[部署](https://hbstack.dev/zh-hans/docs/deployment/)以部署你的站点。 131 | -------------------------------------------------------------------------------- /content/categories/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Categories 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: folder 10 | color: orange 11 | description: All of categories. 12 | --- 13 | -------------------------------------------------------------------------------- /content/categories/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 分类 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: folder 10 | color: orange 11 | description: 所有分类。 12 | --- 13 | -------------------------------------------------------------------------------- /content/docs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Docs 3 | menu: 4 | main: 5 | weight: 1 6 | params: 7 | icon: 8 | vendor: bs 9 | name: book 10 | --- 11 | 12 | The example of Docs layout. 13 | -------------------------------------------------------------------------------- /content/docs/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 文档 3 | menu: 4 | main: 5 | weight: 1 6 | params: 7 | icon: 8 | vendor: bs 9 | name: book 10 | --- 11 | 12 | The example of Docs layout. 13 | -------------------------------------------------------------------------------- /content/docs/installation/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Installation Guide 3 | linkTitle: Installation 4 | nav_icon: 5 | vendor: bs 6 | name: cloud-download 7 | color: green 8 | nav_weight: 2 9 | --- 10 | -------------------------------------------------------------------------------- /content/docs/installation/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安装指南 3 | linkTitle: 安装 4 | nav_icon: 5 | vendor: bs 6 | name: cloud-download 7 | color: green 8 | nav_weight: 2 9 | --- 10 | -------------------------------------------------------------------------------- /content/docs/installation/linux/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Install on Linux 3 | linkTitle: Linux 4 | --- 5 | -------------------------------------------------------------------------------- /content/docs/installation/linux/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安装到 Linux 3 | linkTitle: Linux 4 | --- 5 | -------------------------------------------------------------------------------- /content/docs/installation/linux/archlinux/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-09-04T22:42:23+08:00 3 | title: Install on Arch Linux 4 | linkTitle: Arch Linux 5 | series: 6 | - Guide 7 | categories: 8 | - Installation 9 | tags: 10 | - Linux 11 | - Arch Linux 12 | images: 13 | - https://razonyang.com/images/covers/archlinux_hu8e098f7aa7a8aae6dbe5fc105fe89b3c_11178_bad08652ea24e912f5ea3f07ca705c9a.webp?width=1930&height=640 14 | featured: true 15 | authors: 16 | - razonyang 17 | --- 18 | 19 | This guide show you how to install on Arch Linux. 20 | -------------------------------------------------------------------------------- /content/docs/installation/linux/archlinux/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-09-04T22:42:23+08:00 3 | title: 安装到 Arch Linux 4 | linkTitle: Arch Linux 5 | series: 6 | - 指南 7 | categories: 8 | - 安装 9 | tags: 10 | - Linux 11 | - Arch Linux 12 | images: 13 | - https://razonyang.com/images/covers/archlinux_hu8e098f7aa7a8aae6dbe5fc105fe89b3c_11178_bad08652ea24e912f5ea3f07ca705c9a.webp?width=1930&height=640 14 | featured: true 15 | authors: 16 | - razonyang 17 | --- 18 | 19 | This guide show you how to install on Arch Linux. 20 | -------------------------------------------------------------------------------- /content/docs/installation/linux/ubuntu/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/docs/installation/linux/ubuntu/feature.png -------------------------------------------------------------------------------- /content/docs/installation/linux/ubuntu/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-10-16T22:42:23+08:00 3 | title: Install on Ubuntu 4 | linkTitle: Ubuntu 5 | series: 6 | - Guide 7 | categories: 8 | - Installation 9 | tags: 10 | - Linux 11 | - Ubuntu 12 | images: 13 | featured: true 14 | authors: 15 | - razonyang 16 | --- 17 | 18 | This guide show you how to install on Ubuntu. 19 | -------------------------------------------------------------------------------- /content/docs/installation/linux/ubuntu/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-10-16T22:42:23+08:00 3 | title: 安装到 Ubuntu 4 | linkTitle: Ubuntu 5 | series: 6 | - 指南 7 | categories: 8 | - 安装 9 | tags: 10 | - Linux 11 | - Ubuntu 12 | images: 13 | featured: true 14 | authors: 15 | - razonyang 16 | --- 17 | 18 | This guide show you how to install on Ubuntu. 19 | -------------------------------------------------------------------------------- /content/docs/installation/windows/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-09-06T22:42:23+08:00 3 | title: Install on Windows 4 | linkTitle: Windows 5 | series: 6 | - Guide 7 | categories: 8 | - Installation 9 | tags: 10 | - Windows 11 | images: 12 | - https://storage.googleapis.com/webdesignledger.pub.network/WDL/6f050e39-windows_10_logoblue.svg-copy_windows.jpg?width=1280&height=620 13 | featured: true 14 | authors: 15 | - razonyang 16 | --- 17 | 18 | This guide show you how to install on Windows. 19 | -------------------------------------------------------------------------------- /content/docs/installation/windows/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-09-06T22:42:23+08:00 3 | title: 安装到 Windows 系统 4 | linkTitle: Windows 5 | series: 6 | - 指南 7 | categories: 8 | - 安装 9 | tags: 10 | - Windows 11 | images: 12 | - https://storage.googleapis.com/webdesignledger.pub.network/WDL/6f050e39-windows_10_logoblue.svg-copy_windows.jpg?width=1280&height=620 13 | featured: true 14 | authors: 15 | - razonyang 16 | --- 17 | 18 | This guide show you how to install on Windows. 19 | -------------------------------------------------------------------------------- /content/docs/introduction/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-03-06T22:42:23+08:00 3 | title: Introduction 4 | nav_weight: 1 5 | series: 6 | - Guide 7 | nav_icon: 8 | vendor: bs 9 | name: book 10 | color: indigo 11 | authors: 12 | - razonyang 13 | --- 14 | 15 | A fast, responsive and feature-rich Hugo theme for blog and documentation site. 16 | 17 | 18 | 19 | ## Greeting 20 | 21 | ```sh 22 | echo "Hi there" 23 | ``` 24 | -------------------------------------------------------------------------------- /content/docs/introduction/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2022-03-06T22:42:23+08:00 3 | title: 简介 4 | nav_weight: 1 5 | series: 6 | - 指南 7 | nav_icon: 8 | vendor: bs 9 | name: book 10 | color: indigo 11 | authors: 12 | - razonyang 13 | --- 14 | 15 | 一个可用于博客和文档站点的快速、响应式和功能丰富的 Hugo 主题。 16 | 17 | ## Greeting 18 | 19 | ```sh 20 | echo "Hi there" 21 | ``` 22 | -------------------------------------------------------------------------------- /content/examples/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Examples 3 | menu: 4 | main: 5 | weight: 3 6 | params: 7 | icon: 8 | vendor: bs 9 | name: card-list 10 | --- 11 | -------------------------------------------------------------------------------- /content/examples/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 示例 3 | menu: 4 | main: 5 | weight: 3 6 | params: 7 | icon: 8 | vendor: bs 9 | name: card-list 10 | --- 11 | -------------------------------------------------------------------------------- /content/examples/gallery/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Gallery Homepage Example" 3 | date: 2023-04-06T13:50:51+08:00 4 | draft: false 5 | layout: gallery 6 | --- 7 | 8 | The example of gallery homepage layout. 9 | -------------------------------------------------------------------------------- /content/examples/gallery/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "图库主页示例" 3 | date: 2023-04-06T13:50:51+08:00 4 | draft: false 5 | layout: gallery 6 | --- 7 | 8 | 图库主页布局示例。 9 | -------------------------------------------------------------------------------- /content/examples/landing/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Landing Page Example" 3 | date: 2023-04-06T01:44:59+08:00 4 | draft: false 5 | layout: landing 6 | --- 7 | 8 | # Landing Page Example 9 | 10 | This theme offers a simple landing page layout which consist of three parts: header, body and footer, the body is the content itself. 11 | 12 | ## How to Use it? 13 | 14 | Specify the `layout` as `landing` on the front matter. 15 | 16 | {{< bs/config-toggle >}} 17 | layout: landing 18 | {{< /bs/config-toggle >}} 19 | 20 | And then writing the content with [Markdown](https://hbstack.dev/en/docs/content/markdown-syntax/) and [shortcodes](https://hbstack.dev/en/docs/content/shortcodes/). 21 | -------------------------------------------------------------------------------- /content/examples/landing/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "落地页示例" 3 | date: 2023-04-06T01:44:59+08:00 4 | draft: false 5 | layout: landing 6 | --- 7 | 8 | # 落地页示例 9 | 10 | 本主题提供一个简单的落地页布局,其由三部分组成:头部,主体和尾部,主体为内容其本身。 11 | 12 | ## 怎么使用? 13 | 14 | 于内容前言中指定 `layout` 为 `landing`。 15 | 16 | {{< bs/config-toggle >}} 17 | layout: landing 18 | {{< /bs/config-toggle >}} 19 | 20 | 然后以 [Markdown](https://hbstack.dev/zh-hans/docs/content/markdown-syntax/) 和[短代码](https://hbstack.dev/zh-hans/docs/content/shortcodes/)编写内容即可。 21 | -------------------------------------------------------------------------------- /content/gallery/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gallery 3 | menu: 4 | main: 5 | weight: 2 6 | params: 7 | icon: 8 | vendor: fas 9 | name: images 10 | --- 11 | -------------------------------------------------------------------------------- /content/gallery/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 图库 3 | menu: 4 | main: 5 | weight: 2 6 | params: 7 | icon: 8 | vendor: fas 9 | name: images 10 | --- 11 | -------------------------------------------------------------------------------- /content/gallery/dogs/20220101000000-featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/dogs/20220101000000-featured.jpg -------------------------------------------------------------------------------- /content/gallery/dogs/20220102000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/dogs/20220102000000.jpg -------------------------------------------------------------------------------- /content/gallery/dogs/20220103000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/dogs/20220103000000.jpg -------------------------------------------------------------------------------- /content/gallery/dogs/20220104000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/dogs/20220104000000.jpg -------------------------------------------------------------------------------- /content/gallery/dogs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Dogs" 3 | date: 2022-01-01T16:16:05+08:00 4 | resources: 5 | - src: 20220104000000.jpg 6 | params: 7 | author: Ilargian Faus 8 | source: Pexels 9 | - src: 20220103000000.jpg 10 | params: 11 | author: Alexandra Novitskaya 12 | source: Pexels 13 | - src: 20220102000000.jpg 14 | params: 15 | author: Goochie Poochie Grooming 16 | source: Pexels 17 | - src: 20220101000000.jpg 18 | params: 19 | author: Simona Kidrič 20 | source: Pexels 21 | --- 22 | 23 | -------------------------------------------------------------------------------- /content/gallery/dogs/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "狗" 3 | date: 2022-01-01T16:16:05+08:00 4 | resources: 5 | - src: 20220104000000.jpg 6 | params: 7 | author: Ilargian Faus 8 | source: Pexels 9 | - src: 20220103000000.jpg 10 | params: 11 | author: Alexandra Novitskaya 12 | source: Pexels 13 | - src: 20220104000000.jpg 14 | params: 15 | author: Alexandra Novitskaya 16 | source: Pexels 17 | - src: 20220102000000.jpg 18 | params: 19 | author: Goochie Poochie Grooming 20 | source: Pexels 21 | - src: 20220101000000.jpg 22 | params: 23 | author: Simona Kidrič 24 | source: Pexels 25 | --- 26 | 27 | -------------------------------------------------------------------------------- /content/gallery/rainbow/20220101-featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/rainbow/20220101-featured.jpg -------------------------------------------------------------------------------- /content/gallery/rainbow/20220102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/rainbow/20220102.jpg -------------------------------------------------------------------------------- /content/gallery/rainbow/20220103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/rainbow/20220103.jpg -------------------------------------------------------------------------------- /content/gallery/rainbow/20230303.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/rainbow/20230303.jpg -------------------------------------------------------------------------------- /content/gallery/rainbow/20230304.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/rainbow/20230304.jpeg -------------------------------------------------------------------------------- /content/gallery/rainbow/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Rainbow" 3 | date: 2022-01-01T16:16:05+08:00 4 | resources: 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/gallery/rainbow/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "彩虹" 3 | date: 2022-01-01T16:16:05+08:00 4 | resources: 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/gallery/sunrise/20220101000000-featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220101000000-featured.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220102000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220102000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220103000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220103000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220104000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220104000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220105000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220105000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220106000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220106000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220107000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220107000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220108000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220108000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220109000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220109000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220110000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220110000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20220111000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20220111000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/20240405000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/sunrise/20240405000000.jpg -------------------------------------------------------------------------------- /content/gallery/sunrise/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sunrise 3 | date: 2022-01-01T00:00:00+08:00 4 | description: Sunrise Photos 5 | resources: 6 | - src: 20240405000000.jpg 7 | params: 8 | author: Hernan Pauccara 9 | source: Pexels 10 | - src: 20220111000000.jpg 11 | params: 12 | author: Joel Holland 13 | source: Pexels 14 | - src: 20220110000000.jpg 15 | params: 16 | author: Rachel Cook 17 | source: Unsplash 18 | - src: 20220109000000.jpg 19 | params: 20 | author: Quang Nguyen Vinh 21 | source: Pexels 22 | - src: 20220108000000.jpg 23 | params: 24 | author: Johannes Plenio 25 | source: Pexels 26 | - src: 20220107000000.jpg 27 | params: 28 | author: Anand Dandekar 29 | source: Pexels 30 | - src: 20220106000000.jpg 31 | params: 32 | author: Nuno Obey 33 | source: Pexels 34 | - src: 20220105000000.jpg 35 | params: 36 | author: Pixabay 37 | source: Pexels 38 | - src: 20220104000000.jpg 39 | params: 40 | author: Rahul Pandit 41 | source: Pexels 42 | - src: 20220103000000.jpg 43 | params: 44 | author: Pixabay 45 | source: Pexels 46 | - src: 20220102000000.jpg 47 | params: 48 | author: Tetyana Kovyrina 49 | source: Pexels 50 | - src: 20220101000000.jpg 51 | params: 52 | author: Arthur Ogleznev 53 | source: Pexels 54 | --- 55 | -------------------------------------------------------------------------------- /content/gallery/sunrise/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sunrise 3 | date: 2022-01-01T00:00:00+08:00 4 | description: Sunrise Photos 5 | resources: 6 | - src: 20240405000000.jpg 7 | params: 8 | author: Hernan Pauccara 9 | source: Pexels 10 | - src: 20220111000000.jpg 11 | params: 12 | author: Joel Holland 13 | source: Pexels 14 | - src: 20220110000000.jpg 15 | params: 16 | author: Rachel Cook 17 | source: Unsplash 18 | - src: 20220109000000.jpg 19 | params: 20 | author: Quang Nguyen Vinh 21 | source: Pexels 22 | - src: 20220108000000.jpg 23 | params: 24 | author: Johannes Plenio 25 | source: Pexels 26 | - src: 20220107000000.jpg 27 | params: 28 | author: Anand Dandekar 29 | source: Pexels 30 | - src: 20220106000000.jpg 31 | params: 32 | author: Nuno Obey 33 | source: Pexels 34 | - src: 20220105000000.jpg 35 | params: 36 | author: Pixabay 37 | source: Pexels 38 | - src: 20220104000000.jpg 39 | params: 40 | author: Rahul Pandit 41 | source: Pexels 42 | - src: 20220103000000.jpg 43 | params: 44 | author: Pixabay 45 | source: Pexels 46 | - src: 20220102000000.jpg 47 | params: 48 | author: Tetyana Kovyrina 49 | source: Pexels 50 | - src: 20220101000000.jpg 51 | params: 52 | author: Arthur Ogleznev 53 | source: Pexels 54 | --- 55 | -------------------------------------------------------------------------------- /content/gallery/textures/20230101000000-feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/textures/20230101000000-feature.jpg -------------------------------------------------------------------------------- /content/gallery/textures/20230102000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/textures/20230102000000.jpg -------------------------------------------------------------------------------- /content/gallery/textures/20230103000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/textures/20230103000000.jpg -------------------------------------------------------------------------------- /content/gallery/textures/20230104000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/textures/20230104000000.jpg -------------------------------------------------------------------------------- /content/gallery/textures/20230105000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/textures/20230105000000.jpg -------------------------------------------------------------------------------- /content/gallery/textures/20230106000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/content/gallery/textures/20230106000000.jpg -------------------------------------------------------------------------------- /content/gallery/textures/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Textures" 3 | date: 2023-01-01T16:16:05+08:00 4 | resources: 5 | - src: 20230106000000.jpg 6 | params: 7 | author: Suzy Hazelwood 8 | source: Pexels 9 | - src: 20230105000000.jpg 10 | params: 11 | author: Matheus Natan 12 | source: Pexels 13 | - src: 20230104000000.jpg 14 | params: 15 | author: Velroy Fernandes 16 | source: Pexels 17 | - src: 20230103000000.jpg 18 | params: 19 | author: Karolina Grabowska 20 | source: Pexels 21 | - src: 20230102000000.jpg 22 | params: 23 | author: Aleksandr Slobodianyk 24 | source: Pexels 25 | - src: 20230101000000.jpg 26 | params: 27 | author: Anni Roenkae 28 | source: Pexels 29 | --- 30 | 31 | -------------------------------------------------------------------------------- /content/gallery/textures/index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Textures" 3 | date: 2022-01-01T16:16:05+08:00 4 | resources: 5 | - src: 20230106000000.jpg 6 | params: 7 | author: Suzy Hazelwood 8 | source: Pexels 9 | - src: 20230105000000.jpg 10 | params: 11 | author: Matheus Natan 12 | source: Pexels 13 | - src: 20230104000000.jpg 14 | params: 15 | author: Velroy Fernandes 16 | source: Pexels 17 | - src: 20230103000000.jpg 18 | params: 19 | author: Karolina Grabowska 20 | source: Pexels 21 | - src: 20230102000000.jpg 22 | params: 23 | author: Aleksandr Slobodianyk 24 | source: Pexels 25 | - src: 20230101000000.jpg 26 | params: 27 | author: Anni Roenkae 28 | source: Pexels 29 | --- 30 | 31 | -------------------------------------------------------------------------------- /content/series/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Series 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: columns 10 | description: All of the series. 11 | --- 12 | -------------------------------------------------------------------------------- /content/series/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 专栏 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: columns 10 | description: 所有专栏。 11 | --- 12 | -------------------------------------------------------------------------------- /content/tags/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tags 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: tags 10 | color: green 11 | description: All of tags. 12 | --- 13 | -------------------------------------------------------------------------------- /content/tags/_index.zh-hans.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 标签 3 | menu: 4 | main: 5 | parent: blog 6 | params: 7 | icon: 8 | vendor: bs 9 | name: tags 10 | color: green 11 | description: 所有标签。 12 | --- 13 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | name: mysite 2 | 3 | services: 4 | server: 5 | image: hugomods/hugo:exts-non-root 6 | command: server -D 7 | volumes: 8 | - ./:/src 9 | - ~/.cache/hugo_cache:/tmp/hugo_cache 10 | ports: 11 | - 1313:1313 12 | env_file: 13 | - path: .env 14 | required: false 15 | 16 | 17 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hbstack/theme 2 | 3 | go 1.19 4 | 5 | require ( 6 | github.com/GoogleChrome/workbox v7.3.0+incompatible // indirect 7 | github.com/KaTeX/KaTeX v0.16.22 // indirect 8 | github.com/desandro/masonry v4.2.2+incompatible // indirect 9 | github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20400 // indirect 10 | github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000 // indirect 11 | github.com/hbstack/back-to-top v0.2.0 // indirect 12 | github.com/hbstack/base v0.6.2 // indirect 13 | github.com/hbstack/bigger-picture v0.10.1 // indirect 14 | github.com/hbstack/blog v0.40.2 // indirect 15 | github.com/hbstack/blog/modules/breadcrumb v0.1.23 // indirect 16 | github.com/hbstack/blog/modules/content-panel v0.1.21 // indirect 17 | github.com/hbstack/blog/modules/featured-image v0.2.21 // indirect 18 | github.com/hbstack/blog/modules/giscus v0.1.24 // indirect 19 | github.com/hbstack/blog/modules/heading-sign v0.1.23 // indirect 20 | github.com/hbstack/blog/modules/post-nav v0.4.0 // indirect 21 | github.com/hbstack/blog/modules/related-posts v0.4.0 // indirect 22 | github.com/hbstack/blog/modules/sidebar/posts v0.8.0 // indirect 23 | github.com/hbstack/blog/modules/sidebar/profile v1.3.0 // indirect 24 | github.com/hbstack/blog/modules/sidebar/taxonomies v0.5.0 // indirect 25 | github.com/hbstack/blog/modules/toc-scrollspy v0.2.0 // indirect 26 | github.com/hbstack/bootstrap v0.2.2 // indirect 27 | github.com/hbstack/breadcrumb v0.8.0 // indirect 28 | github.com/hbstack/bs-tooltip v0.1.1 // indirect 29 | github.com/hbstack/carousel v0.2.7 // indirect 30 | github.com/hbstack/code-block-panel v0.1.2 // indirect 31 | github.com/hbstack/content-panel v0.10.2 // indirect 32 | github.com/hbstack/docs v0.23.1 // indirect 33 | github.com/hbstack/docs/modules/breadcrumb v0.1.10 // indirect 34 | github.com/hbstack/docs/modules/content-panel v0.1.8 // indirect 35 | github.com/hbstack/docs/modules/doc-nav v0.3.7 // indirect 36 | github.com/hbstack/docs/modules/featured-image v0.2.8 // indirect 37 | github.com/hbstack/docs/modules/giscus v0.1.11 // indirect 38 | github.com/hbstack/docs/modules/heading-sign v0.1.9 // indirect 39 | github.com/hbstack/docs/modules/toc-scrollspy v0.1.8 // indirect 40 | github.com/hbstack/featured-image v0.2.2 // indirect 41 | github.com/hbstack/footer v0.4.1 // indirect 42 | github.com/hbstack/footer/modules/socials v0.3.0 // indirect 43 | github.com/hbstack/gallery v0.13.1 // indirect 44 | github.com/hbstack/gallery/modules/breadcrumb v0.1.1 // indirect 45 | github.com/hbstack/giscus v0.1.1 // indirect 46 | github.com/hbstack/hb v0.16.2 // indirect 47 | github.com/hbstack/header v0.16.6 // indirect 48 | github.com/hbstack/header/modules/language-picker v0.2.0 // indirect 49 | github.com/hbstack/header/modules/search v0.1.38 // indirect 50 | github.com/hbstack/header/modules/socials v0.2.2 // indirect 51 | github.com/hbstack/header/modules/theme-toggle v0.5.2 // indirect 52 | github.com/hbstack/heading-sign v0.2.0 // indirect 53 | github.com/hbstack/mermaid v0.2.2 // indirect 54 | github.com/hbstack/meta/recommended v0.2.10 // indirect 55 | github.com/hbstack/noscript v0.7.0 // indirect 56 | github.com/hbstack/pagination v0.8.0 // indirect 57 | github.com/hbstack/progress-bar v0.1.1 // indirect 58 | github.com/hbstack/pwa v0.1.2 // indirect 59 | github.com/hbstack/scrollbar v0.1.0 // indirect 60 | github.com/hbstack/search v0.2.2 // indirect 61 | github.com/hbstack/slide v0.4.1 // indirect 62 | github.com/hbstack/snackbar v0.1.2 // indirect 63 | github.com/hbstack/socials v0.18.0 // indirect 64 | github.com/hbstack/syntax-highlighting v0.2.1 // indirect 65 | github.com/hbstack/syntax-highlighting/styles/gruvbox v0.1.2 // indirect 66 | github.com/hbstack/toc-scrollspy v0.2.0 // indirect 67 | github.com/henrygd/bigger-picture v1.1.19 // indirect 68 | github.com/hugomods/ascii v0.1.0 // indirect 69 | github.com/hugomods/base v0.7.3 // indirect 70 | github.com/hugomods/bootstrap v0.23.0 // indirect 71 | github.com/hugomods/code-block-panel v0.8.0 // indirect 72 | github.com/hugomods/font-awesome v6.7.1+incompatible // indirect 73 | github.com/hugomods/fuse-js v0.1.0 // indirect 74 | github.com/hugomods/giscus v0.1.1 // indirect 75 | github.com/hugomods/gravatar v0.2.1 // indirect 76 | github.com/hugomods/hugopress v0.5.0 // indirect 77 | github.com/hugomods/i18n-js v0.2.1 // indirect 78 | github.com/hugomods/icons v0.6.6 // indirect 79 | github.com/hugomods/icons/vendors/bootstrap v0.5.11 // indirect 80 | github.com/hugomods/icons/vendors/font-awesome v0.6.12 // indirect 81 | github.com/hugomods/icons/vendors/simple-icons v1.1.1 // indirect 82 | github.com/hugomods/idb-js v0.1.0 // indirect 83 | github.com/hugomods/images v0.12.0 // indirect 84 | github.com/hugomods/katex v0.3.6 // indirect 85 | github.com/hugomods/masonry-js v0.1.0 // indirect 86 | github.com/hugomods/mermaid v0.1.4 // indirect 87 | github.com/hugomods/pwa v0.9.0 // indirect 88 | github.com/hugomods/search v0.20.0 // indirect 89 | github.com/hugomods/seo/modules/alternatives v0.1.1 // indirect 90 | github.com/hugomods/seo/modules/base v0.1.3 // indirect 91 | github.com/hugomods/seo/modules/favicons v0.2.2 // indirect 92 | github.com/hugomods/seo/modules/open-graph v0.1.1 // indirect 93 | github.com/hugomods/seo/modules/schema v0.1.3 // indirect 94 | github.com/hugomods/seo/modules/translations v0.1.1 // indirect 95 | github.com/hugomods/seo/modules/twitter-cards v0.1.1 // indirect 96 | github.com/hugomods/shortcodes v0.25.1 // indirect 97 | github.com/hugomods/simple-icons v13.21.0+incompatible // indirect 98 | github.com/hugomods/snackbar v0.1.2 // indirect 99 | github.com/hugomods/workbox v0.1.0 // indirect 100 | github.com/jakearchibald/idb v8.0.3+incompatible // indirect 101 | github.com/krisk/Fuse v7.1.0+incompatible // indirect 102 | github.com/twbs/bootstrap v5.3.6+incompatible // indirect 103 | github.com/twbs/icons v1.13.1 // indirect 104 | ) 105 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | github.com/GoogleChrome/workbox v7.0.0+incompatible h1:/bqYzSkS1O9leTJ8kT0v9d61ANMJKt+GemdhmcaSB9c= 2 | github.com/GoogleChrome/workbox v7.0.0+incompatible/go.mod h1:dyEoGLpJeO43pUVJb+nNNr1WRgoF81hNEl4UGLV+yow= 3 | github.com/GoogleChrome/workbox v7.1.0+incompatible h1:xy3Z0rMQTqBiAz2HiLMZH8DjamG7nriortPNgtWH7AY= 4 | github.com/GoogleChrome/workbox v7.1.0+incompatible/go.mod h1:dyEoGLpJeO43pUVJb+nNNr1WRgoF81hNEl4UGLV+yow= 5 | github.com/GoogleChrome/workbox v7.2.0+incompatible/go.mod h1:dyEoGLpJeO43pUVJb+nNNr1WRgoF81hNEl4UGLV+yow= 6 | github.com/GoogleChrome/workbox v7.3.0+incompatible/go.mod h1:dyEoGLpJeO43pUVJb+nNNr1WRgoF81hNEl4UGLV+yow= 7 | github.com/KaTeX/KaTeX v0.16.9 h1:4VYWM2nMSCfOPi63mTRJYQs0UmZPGTx3noiQ/vJu9Rk= 8 | github.com/KaTeX/KaTeX v0.16.9/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 9 | github.com/KaTeX/KaTeX v0.16.10/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 10 | github.com/KaTeX/KaTeX v0.16.11 h1:mJL23AnBPtkm8tT3rAP3nohDJvwQkAejyWiPDDq7Fns= 11 | github.com/KaTeX/KaTeX v0.16.11/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 12 | github.com/KaTeX/KaTeX v0.16.12/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 13 | github.com/KaTeX/KaTeX v0.16.14/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 14 | github.com/KaTeX/KaTeX v0.16.15/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 15 | github.com/KaTeX/KaTeX v0.16.17/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 16 | github.com/KaTeX/KaTeX v0.16.18/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 17 | github.com/KaTeX/KaTeX v0.16.19/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 18 | github.com/KaTeX/KaTeX v0.16.20/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 19 | github.com/KaTeX/KaTeX v0.16.21/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 20 | github.com/KaTeX/KaTeX v0.16.22/go.mod h1:VI+aE+CVs/VqtbHnuhstfQST46GmrwpXH7LQAzYIouw= 21 | github.com/desandro/masonry v4.2.2+incompatible h1:4LI69kwq5DJSF9jhHVGfCw+q2Nt3IgJ0KzEp19Z3YiA= 22 | github.com/desandro/masonry v4.2.2+incompatible/go.mod h1:4P4Or5YZcNuAtGW3JOYLTrmi+ZyqhCPj7xTgradMEVU= 23 | github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 h1:SmpwwN3DNzJWbV+IT8gaFu07ENUFpCvKou5BHYUKuVs= 24 | github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200/go.mod h1:kx8MBj9T7SFR8ZClWvKZPmmUxBaltkoXvnWlZZcSnYA= 25 | github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20400/go.mod h1:uekq1D4ebeXgduLj8VIZy8TgfTjrLdSl6nPtVczso78= 26 | github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000 h1:GZxx4Hc+yb0/t3/rau1j8XlAxLE4CyXns2fqQbyqWfs= 27 | github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000/go.mod h1:mFberT6ZtcchrsDtfvJM7aAH2bDKLdOnruUHl0hlapI= 28 | github.com/hbstack/back-to-top v0.2.0 h1:oVGYYL34PL4OX2O725YmRL9kHjZuxBuyT33/ZG1Zze0= 29 | github.com/hbstack/back-to-top v0.2.0/go.mod h1:lVnZhVZ8pabJJ/M27APUyayelJO5yr9jkwsVnxk1O4k= 30 | github.com/hbstack/base v0.4.1 h1:rRmnQonYwixoo/MzDAGOH5S1aIB6/ArPRueRDil0cnc= 31 | github.com/hbstack/base v0.4.1/go.mod h1:ihI8NSFogNNXLpt7vWEYTGgSWE9UvgnfyFKJqmyOauU= 32 | github.com/hbstack/base v0.4.2/go.mod h1:TimBDf5axaS0vfBwKOo4+NMGO4Qy5G7P8s909I/nd2o= 33 | github.com/hbstack/base v0.4.3/go.mod h1:J5A7oLAuKGyUU3SPhvwhZ9kWvVBRjWyWIANgR+6fppg= 34 | github.com/hbstack/base v0.4.4/go.mod h1:oSKOFOxBtKd2zHjWq68SaF+zgtrNar9icGmRxDGPT0M= 35 | github.com/hbstack/base v0.4.5/go.mod h1:03s6ySDgFTfhIKUc8y1C7xEp8eCtRp0NfYNY57myd1g= 36 | github.com/hbstack/base v0.4.6/go.mod h1:+kxOsRxZqtZG4BF9Vmk8APlSSez95515EQqoz0xPK7M= 37 | github.com/hbstack/base v0.5.0/go.mod h1:4A2bxdXMjpj4HSEnugN7hlFECiap4zUX56jOqtu4YPY= 38 | github.com/hbstack/base v0.5.1/go.mod h1:4A2bxdXMjpj4HSEnugN7hlFECiap4zUX56jOqtu4YPY= 39 | github.com/hbstack/base v0.5.2/go.mod h1:4A2bxdXMjpj4HSEnugN7hlFECiap4zUX56jOqtu4YPY= 40 | github.com/hbstack/base v0.6.0/go.mod h1:4A2bxdXMjpj4HSEnugN7hlFECiap4zUX56jOqtu4YPY= 41 | github.com/hbstack/base v0.6.1/go.mod h1:rDOIrQy8GKXqam3dvHPQnrvwadQByiGcDY1Q35wBrT4= 42 | github.com/hbstack/base v0.6.2 h1:ihsxMroTujvjVnKZwueujELNXGo9gsCQdrBrJ32zkuU= 43 | github.com/hbstack/base v0.6.2/go.mod h1:eO3xP3CJ2Dwc38+FjVqZuzmvT8dYF2D2Dw4Sx4pi9Ng= 44 | github.com/hbstack/bigger-picture v0.10.1 h1:EgUYZgSGhl4KwKVqryf6ncB2QY4YYgOqTpDW6+5tq14= 45 | github.com/hbstack/bigger-picture v0.10.1/go.mod h1:wZpRrOlTFrt2lO3tl9Y7cIAJbAJN1MdvRu0UsbCnkaE= 46 | github.com/hbstack/blog v0.24.3 h1:87PoTQ9oi/mwPeR08FMRquPw0FKm0bFB7b1xWKI8wvg= 47 | github.com/hbstack/blog v0.24.3/go.mod h1:54ctuT+rObZR1Ta9PvHvFGfpR+lP4chp5QRsJksht5c= 48 | github.com/hbstack/blog v0.25.0/go.mod h1:tBpnIWjlf0ybe/0j3LVj3dS7FD2GQL0/RMP2qpMYveM= 49 | github.com/hbstack/blog v0.25.1/go.mod h1:XBIbUVJR4ueJQmt8h1C+rB9Q7dZ06EVc36g2ffH0TiU= 50 | github.com/hbstack/blog v0.25.2/go.mod h1:RHtaIph9jKCXLIMVzdc9voX7pSu6fpk2IPzVwGLWjKc= 51 | github.com/hbstack/blog v0.26.0/go.mod h1:y3guhi3enHGM4+RKekB8NaewEw8EczmCU+HvmgIsjSU= 52 | github.com/hbstack/blog v0.26.1/go.mod h1:WBmo3M7F5HFabY2nWU8g2oJ8RK7rAynxKwVWf15AAIQ= 53 | github.com/hbstack/blog v0.26.2/go.mod h1:WBmo3M7F5HFabY2nWU8g2oJ8RK7rAynxKwVWf15AAIQ= 54 | github.com/hbstack/blog v0.26.3/go.mod h1:WBmo3M7F5HFabY2nWU8g2oJ8RK7rAynxKwVWf15AAIQ= 55 | github.com/hbstack/blog v0.27.0/go.mod h1:WBmo3M7F5HFabY2nWU8g2oJ8RK7rAynxKwVWf15AAIQ= 56 | github.com/hbstack/blog v0.27.2/go.mod h1:WBmo3M7F5HFabY2nWU8g2oJ8RK7rAynxKwVWf15AAIQ= 57 | github.com/hbstack/blog v0.29.0/go.mod h1:JeosIMEAE5RvRokP03xIVhPL1n19e0oyfvaMNzr+OpE= 58 | github.com/hbstack/blog v0.29.1/go.mod h1:seD+hskGzqejUgQJeif45jFXJDP9ltY7UkWBvb0Q/To= 59 | github.com/hbstack/blog v0.30.0/go.mod h1:VRcCQo79uAPKJJ9zILRovLEi5GhJ5kWcfuCcSmbWpa4= 60 | github.com/hbstack/blog v0.31.0/go.mod h1:VRcCQo79uAPKJJ9zILRovLEi5GhJ5kWcfuCcSmbWpa4= 61 | github.com/hbstack/blog v0.31.1/go.mod h1:GO9bM+547de/TtOGP6cETsz8zymLkLrximZHj06B6Co= 62 | github.com/hbstack/blog v0.32.0/go.mod h1:GO9bM+547de/TtOGP6cETsz8zymLkLrximZHj06B6Co= 63 | github.com/hbstack/blog v0.32.1/go.mod h1:GO9bM+547de/TtOGP6cETsz8zymLkLrximZHj06B6Co= 64 | github.com/hbstack/blog v0.32.2/go.mod h1:ArJ8ucu5m8PHmRNk/Y/K5y5JHXZvhnuyV1XKoGuWqd4= 65 | github.com/hbstack/blog v0.33.0/go.mod h1:oYyhhRNxUTAv3zSKPmu43YUgImEn0qsugj6ZdrAshsY= 66 | github.com/hbstack/blog v0.34.0/go.mod h1:X27vP5wZXzOSyOO44Ma0TFd187/SU8z/I1FTZhfmSWM= 67 | github.com/hbstack/blog v0.35.0/go.mod h1:NFSWnd34kl/9062qIgVsJU0Pi4BqLKiLw6BItG3D0VA= 68 | github.com/hbstack/blog v0.35.1/go.mod h1:/A1EQoCCs9zlcn7dWecP0YMUmH2n1juv3DO4e/mfQ+o= 69 | github.com/hbstack/blog v0.35.2/go.mod h1:6uWETL+fybTZEKOJ1BEMXG84B+Ucy0GmfFy1t8Itjjg= 70 | github.com/hbstack/blog v0.35.3/go.mod h1:4yQsuqIiYIyQCLWxgaueK3lRCmAm30pVRdwGEdHE95I= 71 | github.com/hbstack/blog v0.35.4/go.mod h1:noV38aLO4c2nWZPUYgRyvjIX4seSTToaRt4kKImo4KQ= 72 | github.com/hbstack/blog v0.36.1/go.mod h1:IJuliGxBkgSi8wmacZ9CGSlUIRFCCnhyViCzrWxjnlo= 73 | github.com/hbstack/blog v0.37.0/go.mod h1:9yZB+gkRkINisP5uWk5CllGJ4bv211KjkHdsTtvEdjM= 74 | github.com/hbstack/blog v0.37.1/go.mod h1:X4Wo3ClIdrMNXiZ7JbI65pKLNCVt5HJeidFMSIFIwb8= 75 | github.com/hbstack/blog v0.37.2/go.mod h1:ivXn9g7VMsTmlbkrBsY6rA/+8KWESGXZI60CTTCBLyw= 76 | github.com/hbstack/blog v0.37.3/go.mod h1:AIDU/s/QGVJhMB9Y20ZR4L7h2zOCI9XuPBpv11O6rJY= 77 | github.com/hbstack/blog v0.37.4/go.mod h1:kPLAw+tLZGjcnaNevNjo86KS2zQNkblFLiG01qF2O1Q= 78 | github.com/hbstack/blog v0.38.0 h1:8Q88168t8c2s8eA5DCAebJtQG8h1Zuxcrt+42I+rRmY= 79 | github.com/hbstack/blog v0.38.0/go.mod h1:mSWZq1M68aJSjGPv+yfbduABOSNbpBJ9HAM/EIKWxfQ= 80 | github.com/hbstack/blog v0.38.1/go.mod h1:BGktOnBav5+EUdCmwaTfJCKS/mfA4guz2s4RVbDCTQI= 81 | github.com/hbstack/blog v0.39.0/go.mod h1:w5k8+HF1YmuU+A5SCEkMpz5CwHhcO1mx/h3rhj0Tilc= 82 | github.com/hbstack/blog v0.40.0/go.mod h1:xFBVf4/UOvkqPoRYeUoJqwxx8/0SrWlijQwgVLCK5cs= 83 | github.com/hbstack/blog v0.40.1/go.mod h1:0hnPIZ2nusfXE4jkYQCXNLv7eXud4CBea3ymc8w3JAM= 84 | github.com/hbstack/blog v0.40.2/go.mod h1:iU3JUXZDCmd2zcLDYlrFTCfNRFx3h2QXGPt2xfzjwXg= 85 | github.com/hbstack/blog/modules/breadcrumb v0.1.22 h1:NDcjR5805LBDRcLaDF12VAIAJiRqCL/e/GX+1DE7O0k= 86 | github.com/hbstack/blog/modules/breadcrumb v0.1.22/go.mod h1:abqj7FTsHihbv3B2szGm4YmVGVZWzWg2VVA5ZhqUyKY= 87 | github.com/hbstack/blog/modules/breadcrumb v0.1.23 h1:MgUR88vv4cs/M1/cVBKUInFw3DcRw0W2AlmmcdhxewY= 88 | github.com/hbstack/blog/modules/breadcrumb v0.1.23/go.mod h1:smQySqXDtUv2pP7bb+XBr+QGNFxhDGN0fLmQkOIWa5g= 89 | github.com/hbstack/blog/modules/content-panel v0.1.21 h1:g43IVjn3O6QCQSvCbgr9iYCgZcI5XG8YAiuVPb269Ok= 90 | github.com/hbstack/blog/modules/content-panel v0.1.21/go.mod h1:fVnvVtnfo3R78jnGLgckfC43j7rYMMN+l1PhU9E6Jas= 91 | github.com/hbstack/blog/modules/featured-image v0.2.21 h1:G4nwll995EsnEAJOBUKJMjH12HtJ0YFPL0nH8m7qneI= 92 | github.com/hbstack/blog/modules/featured-image v0.2.21/go.mod h1:+gxtGAEh7aXDDKQA0wWzdi9HPLcqCSRtRp63F+NN8QU= 93 | github.com/hbstack/blog/modules/giscus v0.1.23 h1:k70d91K6mU6LJGhXYh1Mrpk+MFFrxwTOGyCVWHWHgbo= 94 | github.com/hbstack/blog/modules/giscus v0.1.23/go.mod h1:oWy++0xYLRWvAuszra5zyFNpepgWG43HINvZvpcwBeg= 95 | github.com/hbstack/blog/modules/giscus v0.1.24 h1:GeucCT1a8HizwqEW74yuLNEETrShbXXkrI3WKHawK20= 96 | github.com/hbstack/blog/modules/giscus v0.1.24/go.mod h1:20QJYVmHFOMptQ6xBKU/tcGWGbJ8RsfKSo+inOPsB3U= 97 | github.com/hbstack/blog/modules/heading-sign v0.1.23 h1:Z6QZvCKER/O3Y0eXQtRtkICEzYllFZW0m5fkT5OXrTE= 98 | github.com/hbstack/blog/modules/heading-sign v0.1.23/go.mod h1:fBpZ5ifaLbAVClB/cXGQCD45wFc7bU/GBuNyTwTMjJ8= 99 | github.com/hbstack/blog/modules/post-nav v0.3.6 h1:ZyYbLdPCfV8bILLliBiCm6TxJOY/nLR7y6renUVB8KA= 100 | github.com/hbstack/blog/modules/post-nav v0.3.6/go.mod h1:NjxKH/72tO9mtUwUvtgD3mIGSNYHmFe6YisS6zSJd6s= 101 | github.com/hbstack/blog/modules/post-nav v0.3.7/go.mod h1:GZ0npVaGdRhaQNlNoCFqPexC7YYoWCLl82ZIAWQ7h6c= 102 | github.com/hbstack/blog/modules/post-nav v0.3.8/go.mod h1:sofELsR4vKeCqgtG4tzIHDqM9PFCgNBVXMcCZ7N4CSs= 103 | github.com/hbstack/blog/modules/post-nav v0.4.0 h1:oc90hYrFTQXXAgbi73xeaD+BxYjDwCvpCAxKJRDx4UE= 104 | github.com/hbstack/blog/modules/post-nav v0.4.0/go.mod h1:tgP0PtW87TQPYz52S6rAjwusQcBheJLBC8US/bwxy0Q= 105 | github.com/hbstack/blog/modules/related-posts v0.2.5 h1:e5IF1TK8A/7Tpp6Eso43Ns2//BSbJYsFmOW+1yeKN0U= 106 | github.com/hbstack/blog/modules/related-posts v0.2.5/go.mod h1:MG7gAdmJIMDTRD9Qyx3ANsJCY/xmG12zO69aDSKWDlE= 107 | github.com/hbstack/blog/modules/related-posts v0.3.0/go.mod h1:CdfAPmda/Sakyt+hvicJudKIuwx3/pwfHTDb2dNk8FQ= 108 | github.com/hbstack/blog/modules/related-posts v0.4.0 h1:FujQXAfdqixHGJibxkO3wSBhidElq/kM0XxfoSAJVus= 109 | github.com/hbstack/blog/modules/related-posts v0.4.0/go.mod h1:h+O7tmtrhKImBt6/RS0GYDnOgDXCE632yyzlVVHTtN0= 110 | github.com/hbstack/blog/modules/sidebar/posts v0.7.0 h1:xy70nHr/Qznc1Xmmn2RJdmxK8imXx9G6LPAPFkwzSLg= 111 | github.com/hbstack/blog/modules/sidebar/posts v0.7.0/go.mod h1:jmdYFY1EtH74KWOS89xnCowNtaEkkhI6G/vHJaT6OJ0= 112 | github.com/hbstack/blog/modules/sidebar/posts v0.7.1/go.mod h1:8ejk5W76XVgKuI2KidI5KbQ/etlqHT0b7xLe0hpiE28= 113 | github.com/hbstack/blog/modules/sidebar/posts v0.8.0 h1:Omwn7GjMKkP1B9pQyApIHb90+rCnS00YWOMMIigMFpU= 114 | github.com/hbstack/blog/modules/sidebar/posts v0.8.0/go.mod h1:t0v/hv96x8m2FAFS0QieZ6OpTEd0jEbXaWhOzTI/EqI= 115 | github.com/hbstack/blog/modules/sidebar/profile v1.1.5 h1:e546kxltRyQj/A8bp2SBjm8LIQwZN45qK5V+5zU67nM= 116 | github.com/hbstack/blog/modules/sidebar/profile v1.1.5/go.mod h1:DY8Vqs6jGrRAYP/hnazG0Eao1l+5OUz3CtcUEfFf5u4= 117 | github.com/hbstack/blog/modules/sidebar/profile v1.2.0/go.mod h1:zvoiNQ7172hApT+Guo5qlaLr+e3mrgwGzGDfY13AorY= 118 | github.com/hbstack/blog/modules/sidebar/profile v1.3.0 h1:0EReIxJF8cbJpiEZfIWbcrWBOKlRXRRhCe3InG07/jQ= 119 | github.com/hbstack/blog/modules/sidebar/profile v1.3.0/go.mod h1:UcQOQ+dQbHnMcsGEafZ7QanbvaM9N1k9ul/X8jLfNSU= 120 | github.com/hbstack/blog/modules/sidebar/taxonomies v0.4.0 h1:0wdAtJi3gZ3e3HTEJNo7IDieQjZuRF8GDOlMxy2XJ5E= 121 | github.com/hbstack/blog/modules/sidebar/taxonomies v0.4.0/go.mod h1:4u8cA6erhu3ddE9lUaiAlOSTEsD7PsmM4WKni/zCIjI= 122 | github.com/hbstack/blog/modules/sidebar/taxonomies v0.4.1/go.mod h1:1ZTyPsnn2d7dySr/vSNNEvexhr7pszjoSx2B1xhVvyc= 123 | github.com/hbstack/blog/modules/sidebar/taxonomies v0.5.0 h1:zv0qlWCIydyVfh8gndDWaadh0dSj1ovOCuzaexYmNQM= 124 | github.com/hbstack/blog/modules/sidebar/taxonomies v0.5.0/go.mod h1:oHqLXqcB/bp2rx7+Bb2mYubh4CoYlvH0tjR1SNs3+iQ= 125 | github.com/hbstack/blog/modules/toc-scrollspy v0.1.20 h1:DnN7Vl7rvsl5pPRpwcMkW9hQgCaO7mASLd778VLQOHI= 126 | github.com/hbstack/blog/modules/toc-scrollspy v0.1.20/go.mod h1:Ord7TP0ZP4C+l6a83oEAvPyTOnnGsmrIC26MTJaKYmI= 127 | github.com/hbstack/blog/modules/toc-scrollspy v0.2.0 h1:UgA7UxoHTOzFDRp1XxhCmCNiSZlfpXqyEBnkPMCMjsM= 128 | github.com/hbstack/blog/modules/toc-scrollspy v0.2.0/go.mod h1:61D0fK0cilgwUzQm4fhVqfAc0cFYkvTE4pVSP6+FvHI= 129 | github.com/hbstack/bootstrap v0.2.1 h1:q8V9pBQPPfLQQWWHadOMoSomNjvUq0SGZMXdNDnga4U= 130 | github.com/hbstack/bootstrap v0.2.1/go.mod h1:IvEwsxbTINkAbiwCC9Nqvuguh6V+Z/8Dg3eZ+TLwWHc= 131 | github.com/hbstack/bootstrap v0.2.2 h1:Kiy+XEiyDvH9KVfuS7uWYTDoTLbiww0PWTheEXO/fdM= 132 | github.com/hbstack/bootstrap v0.2.2/go.mod h1:2Qd2g72fKgje8fCMSaz8KlKIv60c6PAak59Zg2FJHs0= 133 | github.com/hbstack/breadcrumb v0.6.0 h1:2IZJQSARImGXlX1sTp5XJQhpVWmp1095CAeM2hnK000= 134 | github.com/hbstack/breadcrumb v0.6.0/go.mod h1:ToD1n+vdG4bfhyresQV7aoV3OUuNk4huw2hFu+0xdfc= 135 | github.com/hbstack/breadcrumb v0.7.1/go.mod h1:iLp0/AKYRVTNo+Sae1V55hX7CfhX9i0F/nMZ0SnicLQ= 136 | github.com/hbstack/breadcrumb v0.7.2/go.mod h1:iLp0/AKYRVTNo+Sae1V55hX7CfhX9i0F/nMZ0SnicLQ= 137 | github.com/hbstack/breadcrumb v0.7.3/go.mod h1:Xh93KE3dzXP7fYKcV7mjiMgw7P4JUOFfFgsx28jTo5o= 138 | github.com/hbstack/breadcrumb v0.7.4 h1:+AN+vB5yAIbaJVQlfa0M7bxREQa1SLxqqgKxPZPkMqk= 139 | github.com/hbstack/breadcrumb v0.7.4/go.mod h1:PuwTpChVZHvvcEEEf7XmSNr4vwKEgVJxxSLKUuD5TUc= 140 | github.com/hbstack/breadcrumb v0.8.0/go.mod h1:VU6j9DqY+2mkRuzJVu6vYvL9/psUSxxKg28/Us7c21Y= 141 | github.com/hbstack/bs-tooltip v0.1.1 h1:3ne4fgVrn90TUPhU5r94AKqY2zD6ZmUFZGVW1wzZEv4= 142 | github.com/hbstack/bs-tooltip v0.1.1/go.mod h1:CHhLg2OQq5CdRI1UCe52NbBUQb+pNkXFPdyj32gB/uk= 143 | github.com/hbstack/carousel v0.2.4 h1:OkMRqyhklJBMbOXo8p/dsS+iQVQTrMUI7Jfm13Js3L4= 144 | github.com/hbstack/carousel v0.2.4/go.mod h1:AchKlXiqYNZouE3Ee/VSSQle2FUZV5CJgTnPBFI7Gj0= 145 | github.com/hbstack/carousel v0.2.5/go.mod h1:37ffr9r5ilAS4b7KrplyCeOcTPmFd2PMygLo+VPe3oY= 146 | github.com/hbstack/carousel v0.2.6/go.mod h1:XWL7LkRRjyy4g/NF83cnLi49NpWBgW554HGb52lvrzc= 147 | github.com/hbstack/carousel v0.2.7 h1:CeAYTFjFfVd8NSU0/iWLwmRwAnZBuzWn+2Own1eKkp0= 148 | github.com/hbstack/carousel v0.2.7/go.mod h1:jjsMHn99vOq5Vbu9WVyPOq9vm+0NBgWuGaNW6vjumZE= 149 | github.com/hbstack/code-block-panel v0.1.1 h1:9fHjXmlU7x8nbWI3Qr9t5YnRDtaF9auqPWMpsUNMGuc= 150 | github.com/hbstack/code-block-panel v0.1.1/go.mod h1:EJ9PgJrLnJ8DQ0SxU6DrdOesLF1h+YF1MCtMd0DodQg= 151 | github.com/hbstack/code-block-panel v0.1.2 h1:7ZW54ZA7tBNr5oQSWrBrAvEyXfm0Usk9+Nsp7X7Xhko= 152 | github.com/hbstack/code-block-panel v0.1.2/go.mod h1:VK2kn+hD3pr5HPz8izFAUyFG0lB/nXybe8ix5uc/LLs= 153 | github.com/hbstack/content-panel v0.7.2 h1:/KaWkrjDxUZ2CIhLtGgdykkfUBi6AvXn4f98ZBtQrF4= 154 | github.com/hbstack/content-panel v0.7.2/go.mod h1:Hu7l0CBytB9B83NFZ0bWFffV1WRPSrJEaAilApnyxzY= 155 | github.com/hbstack/content-panel v0.8.0/go.mod h1:lEyMXJYCNHL6fkT260oX2FnXF6gD5Vd3EytifVuz3iQ= 156 | github.com/hbstack/content-panel v0.9.0/go.mod h1:lEyMXJYCNHL6fkT260oX2FnXF6gD5Vd3EytifVuz3iQ= 157 | github.com/hbstack/content-panel v0.10.0/go.mod h1:lEyMXJYCNHL6fkT260oX2FnXF6gD5Vd3EytifVuz3iQ= 158 | github.com/hbstack/content-panel v0.10.1/go.mod h1:lEyMXJYCNHL6fkT260oX2FnXF6gD5Vd3EytifVuz3iQ= 159 | github.com/hbstack/content-panel v0.10.2 h1:rga9bbr2hiFd0Lzuq36cZQ43yvTWr2s9+VyG/B1mCrw= 160 | github.com/hbstack/content-panel v0.10.2/go.mod h1:KwqGZkheSR7BfSBzuP13oAurMSaIh2atCeweNRFUUqA= 161 | github.com/hbstack/docs v0.11.6 h1:bC+X5qZLA/3F5buMzaY75kSClJYFaQHT+Q5le8mdJgg= 162 | github.com/hbstack/docs v0.11.6/go.mod h1:/zkJ3wq0ZfDGYuK9SoQ1perr3fuh26+9jaLEQTdapIU= 163 | github.com/hbstack/docs v0.11.7/go.mod h1:cvXBPmA+1TqRIf7CqL6Q3YFO820VsI9ZFEtF91/Uvx0= 164 | github.com/hbstack/docs v0.12.0/go.mod h1:riLih1YZKqRbm7L7roN7Z6AwbCFQMX2xYPVIj/IWqSY= 165 | github.com/hbstack/docs v0.13.0/go.mod h1:75rhXYO+Y2bfCnLqJRVby1IA4b3BBFBmaIpKkLXOXOI= 166 | github.com/hbstack/docs v0.13.1/go.mod h1:iey13n4+pBonrrBX8+GUULMOBIQEyLSlezec7rcwloY= 167 | github.com/hbstack/docs v0.13.2/go.mod h1:PQ3F3OXkDcKxBO46MSSdnqssGBbZjox26kNNx9aAJQ8= 168 | github.com/hbstack/docs v0.14.0/go.mod h1:wXdXKn/rEWXXJyouep5Z4O1Atr898Cxh0Aa36qmKRls= 169 | github.com/hbstack/docs v0.14.1/go.mod h1:wXdXKn/rEWXXJyouep5Z4O1Atr898Cxh0Aa36qmKRls= 170 | github.com/hbstack/docs v0.15.0/go.mod h1:VAj1PCNArRNXMrDnhZEvVlX6QXqgI9mXBChBm91XXYk= 171 | github.com/hbstack/docs v0.16.0/go.mod h1:YJefwfpWdeXDsgkSDCJUnvPadycxDwgnpWHOMUpUNjg= 172 | github.com/hbstack/docs v0.17.0/go.mod h1:yk/D2ab4vnD5cNwoHsnpBDruPFYI6jPzc/rg5xnM0q8= 173 | github.com/hbstack/docs v0.17.1/go.mod h1:8nM1YwlDGfIkb51arJR8Viy35NFkytHfKqKUjdjLb8w= 174 | github.com/hbstack/docs v0.17.2/go.mod h1:8nM1YwlDGfIkb51arJR8Viy35NFkytHfKqKUjdjLb8w= 175 | github.com/hbstack/docs v0.17.3/go.mod h1:kB7GEXmLn1lOE/QUhMHf3hMxTE2n4fwrvbU9AegHGvQ= 176 | github.com/hbstack/docs v0.18.0/go.mod h1:VsGPvObHOsKYEQL6a4LgC2baFmru1O9gZavEsBmrIq0= 177 | github.com/hbstack/docs v0.18.1/go.mod h1:C58ZH20u3yjzwcZL4emE+HIYrudHPAd94/c/xZdqp1w= 178 | github.com/hbstack/docs v0.19.0/go.mod h1:C58ZH20u3yjzwcZL4emE+HIYrudHPAd94/c/xZdqp1w= 179 | github.com/hbstack/docs v0.20.0/go.mod h1:34Lnp91olEaYg2Ipbgx667U2EXz+aNRcPq7VUyYNook= 180 | github.com/hbstack/docs v0.20.1 h1:v/ByBrh8lvHpZ2q5hYPt30SUwEGSHT9W64fsLs4irJQ= 181 | github.com/hbstack/docs v0.20.1/go.mod h1:34Lnp91olEaYg2Ipbgx667U2EXz+aNRcPq7VUyYNook= 182 | github.com/hbstack/docs v0.21.0/go.mod h1:ELqW8PDL68RHa8RwdmfyEB2smfP8nYN4ryhLmYptawU= 183 | github.com/hbstack/docs v0.22.0/go.mod h1:hAPrZzKLNTYYzcDDpKoaskXaQLzRHz4rgM0ajFjxg+w= 184 | github.com/hbstack/docs v0.23.0/go.mod h1:8MmOryl2Ko6LRXzcRpHC8Qg5InSx958JXTZ2Rk05EhI= 185 | github.com/hbstack/docs v0.23.1/go.mod h1:3+Oga44hHLytYYkYimHqC09uOKSno75S1vzLzp+yL3M= 186 | github.com/hbstack/docs/modules/breadcrumb v0.1.9 h1:znf/33KfQFZXOXVKezdksy/euM0FDnoNKeKSyw3SwCk= 187 | github.com/hbstack/docs/modules/breadcrumb v0.1.9/go.mod h1:vpQYRcZmRTqYpVb7x7sOgw13MxBuNgUt82wQDz6ZtZU= 188 | github.com/hbstack/docs/modules/breadcrumb v0.1.10 h1:Ryp68WkRdOxL2UlGNYtN5ZJUxbbHv7bWe0NdzDt2Obg= 189 | github.com/hbstack/docs/modules/breadcrumb v0.1.10/go.mod h1:pTh43gl04dPERZZVDQ70KVU0j0Z4hmPK7GrxUfLw15s= 190 | github.com/hbstack/docs/modules/content-panel v0.1.8 h1:jdvI05iKD3awcCFx9UoGNh7DfNK60jWLJjVAspqEH+o= 191 | github.com/hbstack/docs/modules/content-panel v0.1.8/go.mod h1:hlcrr8ZLfC+hOuzgCZh3YIlmwzKOiUvbb2oP20PBO8k= 192 | github.com/hbstack/docs/modules/doc-nav v0.3.4 h1:HZrUltvsaLuGJKrDDzaC/qinzww9IDTMikeCy8UqghQ= 193 | github.com/hbstack/docs/modules/doc-nav v0.3.4/go.mod h1:52tWPJSu6DO7q5KXK/O6F+nUWKbveNOHkJC1yie51Es= 194 | github.com/hbstack/docs/modules/doc-nav v0.3.5/go.mod h1:Kr+QaGD0Uq6WGxLGO6vGv6WA7l6ssXMuSa4aVi9Kpsg= 195 | github.com/hbstack/docs/modules/doc-nav v0.3.6/go.mod h1:cRImUxU04/2EnsFnhtg3cVS/lH4V4cPCeCCJJEfU+Ao= 196 | github.com/hbstack/docs/modules/doc-nav v0.3.7 h1:K0U0EAsYYsnOV4AGYMbbkMEJe2HrBSmuWipbpBg4V4A= 197 | github.com/hbstack/docs/modules/doc-nav v0.3.7/go.mod h1:EoYAPHmhHmM7hDgDvIJIRNRiy6G+n/Eeto6HUgsw5ww= 198 | github.com/hbstack/docs/modules/featured-image v0.2.8 h1:5sYRhNxVa/EYGCsgS5SKiZMIAdhZQJxam4CEyTFWL8Q= 199 | github.com/hbstack/docs/modules/featured-image v0.2.8/go.mod h1:zg3OOJK2GXuggE0w/Ov2M0FDzyCHs8BRoWiD7Nz5o58= 200 | github.com/hbstack/docs/modules/giscus v0.1.10 h1:rSZKSrgiZeuf4nizv2A9BJGikm7PSsQy7T6u/6u+/Yw= 201 | github.com/hbstack/docs/modules/giscus v0.1.10/go.mod h1:6MTfPyydWOJ2hH/9vhQw1r6Z5lvNTgDN7zpAfgjIQz0= 202 | github.com/hbstack/docs/modules/giscus v0.1.11 h1:AgfBQAQW6/cjVyRXWE4aruLGY66oQj4UFcEtux6HyU4= 203 | github.com/hbstack/docs/modules/giscus v0.1.11/go.mod h1:Vycwif1BgqhN5qZp9kg8ZtKOdsr8tXOCzHlrKiHNR8g= 204 | github.com/hbstack/docs/modules/heading-sign v0.1.9 h1:gwqg3R5YGwqCHFXrnV1ligZ2wFHbOj9chFS6bmqh2f8= 205 | github.com/hbstack/docs/modules/heading-sign v0.1.9/go.mod h1:64D1dr+tmjfQh0F1PtYa+cs9PiZttR6LCoXaiBXD4bI= 206 | github.com/hbstack/docs/modules/toc-scrollspy v0.1.7 h1:uBSdzKiDVYjqMxCr7UIC25J+YcC26q64bxmE2tWU0eI= 207 | github.com/hbstack/docs/modules/toc-scrollspy v0.1.7/go.mod h1:gRkFkDSPj8+j0rqIXbo1SQiD0UC7ZlDbbW+6FmilX0g= 208 | github.com/hbstack/docs/modules/toc-scrollspy v0.1.8 h1:KTsm2cMZVW2bubV9MbSz0I/knB+Ut1YKdHVO2pSlqa8= 209 | github.com/hbstack/docs/modules/toc-scrollspy v0.1.8/go.mod h1:C6hk9KKlfsP4O/fMY6a77PBZZNkA+D7SwbNUlolDdRs= 210 | github.com/hbstack/featured-image v0.1.2 h1:Bc/deRi++p4rmoM8SWwgVR8sLpaythdceZYqPM5RGYQ= 211 | github.com/hbstack/featured-image v0.1.2/go.mod h1:zVzCNnwRWcxv9mdrUooPigdIGBFqD1RUPUcGxrKiTVM= 212 | github.com/hbstack/featured-image v0.2.0/go.mod h1:Y9qKO6T6zHYYHdmic3D4U1U3fbCo+KmX+kawwa9YHxk= 213 | github.com/hbstack/featured-image v0.2.1/go.mod h1:hux3nYqQUVnQHPttJxVrvwfTsULGuVGRGFk3lO2Si54= 214 | github.com/hbstack/featured-image v0.2.2 h1:CdhyEWD+0Nj30eHHwb+/lquWwR8bRPvOM/srlNGU0F8= 215 | github.com/hbstack/featured-image v0.2.2/go.mod h1:ZStnhdgLr/uq5yuRM0PpVJ7WTwSjrbnRDK0C/XdyS3E= 216 | github.com/hbstack/footer v0.2.10 h1:1w8fUXLajGSvEsu7UeWgnrDZumTqnC3pfl4vmmi+feU= 217 | github.com/hbstack/footer v0.2.10/go.mod h1:z779/sE1prEcABuz4RjhSwA8QkFLkmf+xv/5yM3BtPc= 218 | github.com/hbstack/footer v0.3.0/go.mod h1:mYITqQNk4PJWxPciS4/r0bRuB3cDDOXZ3dGwIHuYTME= 219 | github.com/hbstack/footer v0.4.0/go.mod h1:5eB1ETT2WO5pNHObzRpFdwzrcQnHDGoBUOi+gtX/fa4= 220 | github.com/hbstack/footer v0.4.1 h1:dGEIcqCM6K/s9bygnFQlPcVMJn+BblAjaESied8H7ug= 221 | github.com/hbstack/footer v0.4.1/go.mod h1:EvignAN0ShrWDbPAlf9+lrRfJSha9G4wYPDUed4wPzg= 222 | github.com/hbstack/footer/modules/socials v0.2.5 h1:VmIBdRc8+ujwOjurcltNW0yU7rX2CzectEtmhgy9I6Y= 223 | github.com/hbstack/footer/modules/socials v0.2.5/go.mod h1:bggKfxJiylFYCG3AP3cKkhNBNtQrYnZzU9S5UBJ3gu8= 224 | github.com/hbstack/footer/modules/socials v0.3.0 h1:m8d8o9j+3BQUfxpONEaGP4tL8WSgnrA50bM4ux6twg8= 225 | github.com/hbstack/footer/modules/socials v0.3.0/go.mod h1:clVl77mC1//pSZuHEr8aHqDk8Ylggk+I+XOQoBiim8w= 226 | github.com/hbstack/gallery v0.11.0 h1:JP5juBRkO09WpVvSM0gEgOjS6yG0YEiwpi/1pr/0OnE= 227 | github.com/hbstack/gallery v0.11.0/go.mod h1:ni5LadxEx6YVdu+/67+VQZ0FEgSAj5Zqd+tfXLd1RFY= 228 | github.com/hbstack/gallery v0.12.0/go.mod h1:FeLNZqjpKCj1ryfPoTJVk59Bph2N1BfDcNBHyudWT4o= 229 | github.com/hbstack/gallery v0.13.0/go.mod h1:FeLNZqjpKCj1ryfPoTJVk59Bph2N1BfDcNBHyudWT4o= 230 | github.com/hbstack/gallery v0.13.1 h1:4raqbENd7EjTM7ump0EItIAkYQQFhnUwQ35e7wgh+40= 231 | github.com/hbstack/gallery v0.13.1/go.mod h1:SlO4eo4aoLjjTfrqEnTEr6ocabHrqZjclWDCI1bUY+o= 232 | github.com/hbstack/gallery/modules/breadcrumb v0.1.0 h1:zenzwq4EiE2PIB2gx8QU4I2Zx9KAK901EWpgLGu5XqA= 233 | github.com/hbstack/gallery/modules/breadcrumb v0.1.0/go.mod h1:7E1zwN0GC59OsXAUEALUiYWJhQw5hGPnpHfRHQDS/5Q= 234 | github.com/hbstack/gallery/modules/breadcrumb v0.1.1 h1:hPP+FuHcBo2nieDA3eY/f7714JBe/egECb6TRnmPHTo= 235 | github.com/hbstack/gallery/modules/breadcrumb v0.1.1/go.mod h1:LdbDrxkgYlIOn/x9HFrde+mpIagFayRuLjIDXL1zCHw= 236 | github.com/hbstack/giscus v0.1.1 h1:jKbA17XjAcbD59QIDUVoFOdbi9P2WzQMtOcIpG/Znuo= 237 | github.com/hbstack/giscus v0.1.1/go.mod h1:XElW8oNLnS0dRVFzoo9Gq8xknvz3D2PuTHC7yw9h3EE= 238 | github.com/hbstack/hb v0.9.2 h1:KtqQaqU6ZIJN2w2cXpoUolfmukSdpib+1UXig0JdMdI= 239 | github.com/hbstack/hb v0.9.2/go.mod h1:6T8TytCOb1C0EIRVcjzwuhI/G/H0ytTOaJbT1xwiDuY= 240 | github.com/hbstack/hb v0.10.0/go.mod h1:6T8TytCOb1C0EIRVcjzwuhI/G/H0ytTOaJbT1xwiDuY= 241 | github.com/hbstack/hb v0.11.0/go.mod h1:6T8TytCOb1C0EIRVcjzwuhI/G/H0ytTOaJbT1xwiDuY= 242 | github.com/hbstack/hb v0.11.1/go.mod h1:udGcwypPlkMBU+HmhxwJ31w5q/Zak37X8MWTRPeAaBI= 243 | github.com/hbstack/hb v0.11.2/go.mod h1:8liwfjapaZK09pXP6XqZ49GOqFPTn7H9jIZsy7S6esg= 244 | github.com/hbstack/hb v0.12.0/go.mod h1:8liwfjapaZK09pXP6XqZ49GOqFPTn7H9jIZsy7S6esg= 245 | github.com/hbstack/hb v0.12.1/go.mod h1:8liwfjapaZK09pXP6XqZ49GOqFPTn7H9jIZsy7S6esg= 246 | github.com/hbstack/hb v0.12.2/go.mod h1:gwKZN1bsmMuSjEkI/l/9zJCG0Xz96h0r7Cv/WOjjNjc= 247 | github.com/hbstack/hb v0.12.3/go.mod h1:K+8F6OQKKAVneWZKzW/Jj3vbqaG1ewFIH/P7HKNeF3o= 248 | github.com/hbstack/hb v0.12.4/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 249 | github.com/hbstack/hb v0.13.0/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 250 | github.com/hbstack/hb v0.14.0/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 251 | github.com/hbstack/hb v0.15.1/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 252 | github.com/hbstack/hb v0.15.2/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 253 | github.com/hbstack/hb v0.15.3 h1:Q7XKGYLJobkRYKiMd4tLmmBQDaIBX7n3f8QlwAohKvA= 254 | github.com/hbstack/hb v0.15.3/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 255 | github.com/hbstack/hb v0.15.4/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 256 | github.com/hbstack/hb v0.16.0/go.mod h1:FJilVCHtkVpfXZT+Ii2OFCVeu9wQh/YGgRMuPKX5ycA= 257 | github.com/hbstack/hb v0.16.2/go.mod h1:f17XbKHV29zgwV0OaayneXU1nMXFpQUdBYApAPNjFMo= 258 | github.com/hbstack/header v0.12.7 h1:hiE+w7kKgHe/jOOHEAv2wHlxnYZVgfDH+Twdrtw2CXg= 259 | github.com/hbstack/header v0.12.7/go.mod h1:UmRz21kEHDZjFA+TGjWSM/68WL8xHK15CmNgWBM9BEM= 260 | github.com/hbstack/header v0.13.0/go.mod h1:F50k0BteNpwlfSs4V+5k4jn+ozqRnjTfxugUT7esA80= 261 | github.com/hbstack/header v0.14.0/go.mod h1:F50k0BteNpwlfSs4V+5k4jn+ozqRnjTfxugUT7esA80= 262 | github.com/hbstack/header v0.14.1/go.mod h1:f0GHuDsvRYKmseNq10MAqX9yySxNQTKFNwW+z1p3YWg= 263 | github.com/hbstack/header v0.14.2/go.mod h1:ixl3LE1P436T4lVErrUVTyRv7fYqEs4zLc1OeBK+VqI= 264 | github.com/hbstack/header v0.14.3/go.mod h1:W7eolpYJctsTD8GVFEj09Ogbqqy8OAqcxBEbW3ZTYIg= 265 | github.com/hbstack/header v0.14.4/go.mod h1:W7eolpYJctsTD8GVFEj09Ogbqqy8OAqcxBEbW3ZTYIg= 266 | github.com/hbstack/header v0.14.5/go.mod h1:W7eolpYJctsTD8GVFEj09Ogbqqy8OAqcxBEbW3ZTYIg= 267 | github.com/hbstack/header v0.14.6/go.mod h1:L/d+aYCUxWqzvdGzsVUI8hWJNESs1qw4emI4Gobvda4= 268 | github.com/hbstack/header v0.15.0/go.mod h1:L/d+aYCUxWqzvdGzsVUI8hWJNESs1qw4emI4Gobvda4= 269 | github.com/hbstack/header v0.15.1/go.mod h1:ruhJLStQ+YHY31W/PpcBSuvKJbWENbbB9RmNkuKnPpk= 270 | github.com/hbstack/header v0.16.0/go.mod h1:ruhJLStQ+YHY31W/PpcBSuvKJbWENbbB9RmNkuKnPpk= 271 | github.com/hbstack/header v0.16.1/go.mod h1:ruhJLStQ+YHY31W/PpcBSuvKJbWENbbB9RmNkuKnPpk= 272 | github.com/hbstack/header v0.16.2 h1:q+C+mzsjesqKC3M4i1bl30TiCCEHhwr54k2lveFPgUU= 273 | github.com/hbstack/header v0.16.2/go.mod h1:ruhJLStQ+YHY31W/PpcBSuvKJbWENbbB9RmNkuKnPpk= 274 | github.com/hbstack/header v0.16.3/go.mod h1:4f3Nhslt+UQ1Fo82HuspQO7jLJ/UrZ8GgDKImiZx5FA= 275 | github.com/hbstack/header v0.16.4/go.mod h1:4f3Nhslt+UQ1Fo82HuspQO7jLJ/UrZ8GgDKImiZx5FA= 276 | github.com/hbstack/header v0.16.5/go.mod h1:ZfeQNeNWaBeGPBZHtbRz2W9IWkmIoMrpOXoDsoYa/Gg= 277 | github.com/hbstack/header v0.16.6/go.mod h1:ZfeQNeNWaBeGPBZHtbRz2W9IWkmIoMrpOXoDsoYa/Gg= 278 | github.com/hbstack/header/modules/language-picker v0.1.24 h1:OEWy+B1PCJXgoz62EKwBhObq5lNOsfXdjjtESHBi81c= 279 | github.com/hbstack/header/modules/language-picker v0.1.24/go.mod h1:HeIUdvoG+2ni8dqQNnsUtOQVo1U8ydVBEowJ/U85KCA= 280 | github.com/hbstack/header/modules/language-picker v0.1.25/go.mod h1:kkNF76Y6HJUA+sCAVVlhAR9UoKJirpnZSIT2z/9tyoo= 281 | github.com/hbstack/header/modules/language-picker v0.1.26 h1:iu/PtI6ckZt/6o7ekzcpFZYZEwRsNM/rxRuqRrAr0m0= 282 | github.com/hbstack/header/modules/language-picker v0.1.26/go.mod h1:/U3czl4OdnIVkThN1hb1r0HCElgeCr4rZx0Rl/TCGME= 283 | github.com/hbstack/header/modules/language-picker v0.2.0/go.mod h1:opUZ/a9pSxmdAj41mv6M854F9u9XxbEsxUfQuNZx4DU= 284 | github.com/hbstack/header/modules/search v0.1.35 h1:aC+ehdtAdV/I2L18nQ/ZmwUYYEv9/Y/y+vvemIqypss= 285 | github.com/hbstack/header/modules/search v0.1.35/go.mod h1:86x1O6KwCi+oLWCNGCwPrVfbW0Px35hYdj9LOTzZv4I= 286 | github.com/hbstack/header/modules/search v0.1.36/go.mod h1:enMXYMhDd+V2OQ0e2xzD9qbkktwK5DzbpP5UxvdALXo= 287 | github.com/hbstack/header/modules/search v0.1.37 h1:V8mNq94Edah7uuWbzUJ45joo++X5yMs8NrUAUQODOtc= 288 | github.com/hbstack/header/modules/search v0.1.37/go.mod h1:6B9LOCIzdWw4AE6N2xzQ0mwHHuU1z3DPZly6uyVrVAc= 289 | github.com/hbstack/header/modules/search v0.1.38/go.mod h1:Y258ZdhdmujPDG51WfsAb6GIUmyr/gEIs5BHFXRReAA= 290 | github.com/hbstack/header/modules/socials v0.1.28 h1:C7E+aBhFdoLUgzlYtj5d2/Lxqbv6jGH0SMwyffTnk8E= 291 | github.com/hbstack/header/modules/socials v0.1.28/go.mod h1:N3tqnzmImktAMRJlwEBp7CX9zb2xrc4nyV4eSjNmGNM= 292 | github.com/hbstack/header/modules/socials v0.2.0/go.mod h1:OoJfwBEicrezWzSF+F/mKuqCoo9FfP1nb8Oo4vmGWG8= 293 | github.com/hbstack/header/modules/socials v0.2.1/go.mod h1:ntNP1E47dOuqKNPsw5XGsg0Wr9nAJhiGU8ZtZ33Ur8s= 294 | github.com/hbstack/header/modules/socials v0.2.2 h1:HZzeJg3Ncf0vv2QipccYYhSADVTG4Aqt1rYLml23u40= 295 | github.com/hbstack/header/modules/socials v0.2.2/go.mod h1:oy5kARWoEresORePUcmtFax0wTgCA4U7jsxExltgHC0= 296 | github.com/hbstack/header/modules/theme-toggle v0.4.4 h1:2abRpCpNxlL5k8KqnFMDvyUwaVo9s+uyRirxXf6mOD8= 297 | github.com/hbstack/header/modules/theme-toggle v0.4.4/go.mod h1:s0wry+fpt4OJO49dwHSaDW2aux7SZ+zvX5t6wlWSw5k= 298 | github.com/hbstack/header/modules/theme-toggle v0.5.0/go.mod h1:UDWiCLYAWmna+M4Uk5IDUgV4+zK1nvHUZiYvVfTj1YE= 299 | github.com/hbstack/header/modules/theme-toggle v0.5.1/go.mod h1:EHXmyYT45ZhcUIXdL45lRG3HpxodbHSr4KpD9Ynhzfg= 300 | github.com/hbstack/header/modules/theme-toggle v0.5.2 h1:i04Ti4LdVFXXn9Qh7V341NNYmjvBpFwlXKfSc3Hv1Z8= 301 | github.com/hbstack/header/modules/theme-toggle v0.5.2/go.mod h1:5WCCiPjN34SYO4CjhMlGgxv2N3r4NnjFLN/8PgiAeEc= 302 | github.com/hbstack/heading-sign v0.2.0 h1:yXKZQEjPn/+jKyQxCJh34X+wXbiG4Bnr1VVF6lgMhi8= 303 | github.com/hbstack/heading-sign v0.2.0/go.mod h1:SXJWIr9C/7phTOXfWMzNSVZCeimKbYualuwIOHDeOu0= 304 | github.com/hbstack/mermaid v0.2.1 h1:jcTPFIk5e5+4tS3qGr2R0l9Snky2XReAjKIrtRUZs18= 305 | github.com/hbstack/mermaid v0.2.1/go.mod h1:8teRAhZr8uLd/G5anYe0X7I2GLW5nCPZuE9lbrd12FI= 306 | github.com/hbstack/mermaid v0.2.2 h1:TtGzO04if+jgnLXdFDiI2opnzvcTDJqoaQAQvNgG0xs= 307 | github.com/hbstack/mermaid v0.2.2/go.mod h1:gVO/itIHv07hiGqzmUtLw78vkcTU8RMnOl72GVSUUrA= 308 | github.com/hbstack/meta/recommended v0.2.10 h1:RzRe2LT/lJxlsfGv5UzYC3onl7lp1VWbCm1jAb69kSw= 309 | github.com/hbstack/meta/recommended v0.2.10/go.mod h1:OdGN+zqdgFbet5A6XrfjaTNUTd5L91rOUNRJxgq38fo= 310 | github.com/hbstack/noscript v0.5.0 h1:pyuTLNlx+g2UjlGgQ+cafEu0onLuFA7m9FlgBTQpRV0= 311 | github.com/hbstack/noscript v0.5.0/go.mod h1:BvSmPt+YXX3boc6pIncpIi+hEAYDiCw18eldLBBWHJc= 312 | github.com/hbstack/noscript v0.6.0/go.mod h1:F0qU9/caEaqa45OfHiL+8nTCohs2rg97Hek2KQUzK8M= 313 | github.com/hbstack/noscript v0.7.0 h1:PxHaeCInP9SFofMOS+QUmAxujwP+Nh2D1kO5C0IlZIE= 314 | github.com/hbstack/noscript v0.7.0/go.mod h1:F0qU9/caEaqa45OfHiL+8nTCohs2rg97Hek2KQUzK8M= 315 | github.com/hbstack/pagination v0.6.0 h1:sUirQEsW9ZmRU0GxlsE2pN7ZYghI4aqJYgfWAgd+iys= 316 | github.com/hbstack/pagination v0.6.0/go.mod h1:xAvZzN0UZW0j/IAUipcRIIQ7P9Sq44M3k47HaHy7OuU= 317 | github.com/hbstack/pagination v0.7.0/go.mod h1:XaYSS/iReEFQo+fbVAx2YfjP4muWEraVNGeaTcVA35o= 318 | github.com/hbstack/pagination v0.8.0 h1:xnrLD6c7HalpQFQKN9pcQi1M8H0o8b3yrjbjBFs/03o= 319 | github.com/hbstack/pagination v0.8.0/go.mod h1:XaYSS/iReEFQo+fbVAx2YfjP4muWEraVNGeaTcVA35o= 320 | github.com/hbstack/progress-bar v0.1.0 h1:2ZiGS3RFZbZYBUbT2nFCoU9SJsbD9jtV4A7ab41B4jg= 321 | github.com/hbstack/progress-bar v0.1.0/go.mod h1:JZt160XK62FxThzt+RmokjOww3De8ZL0ITcxMJLVE7g= 322 | github.com/hbstack/progress-bar v0.1.1 h1:lDnWvTMzPfzJedmUBkPmD+PHzioSMDR7rDBIIuK8D0M= 323 | github.com/hbstack/progress-bar v0.1.1/go.mod h1:FIGc4o/OJjz79uyjOenyjKfinWu2r7oUzI+XRSRMaOM= 324 | github.com/hbstack/pwa v0.1.2 h1:zJhLf5Uf+jO9aCBKvFcASlw7sULK2i0qUJZxscBo0HM= 325 | github.com/hbstack/pwa v0.1.2/go.mod h1:8x01rczLrSw1aCWD+yrn6v5FRQPtaEh/PYCtFDICEWo= 326 | github.com/hbstack/scrollbar v0.1.0 h1:uQMNbkWbLxnjQMiD3zdt33RG48sY2a0XWyGQkK2HsyY= 327 | github.com/hbstack/scrollbar v0.1.0/go.mod h1:BEDha5gOjQfXBKZfwT+4vn8hCE88qElocjEI2SY1eAs= 328 | github.com/hbstack/search v0.2.1 h1:u7DbLPZ0WO1db2ARb2reubn5KzPE3wG6NLrgylB6WQg= 329 | github.com/hbstack/search v0.2.1/go.mod h1:w9dTxAjAhIaV7P6zdeFd1XDo4LOpMhfpm6it7NWZtD8= 330 | github.com/hbstack/search v0.2.2 h1:OcGCw2cVzZlB48wogNatcbaHk2BB7Boc/ESt9txI4Gw= 331 | github.com/hbstack/search v0.2.2/go.mod h1:sVNCCvokrCfydqCNF/q7kcAd+U73a7Y/0P+v8vJaC0I= 332 | github.com/hbstack/slide v0.3.1 h1:OdBsUs8w4/flxDlFAV8LelHSuJpckmyhZi8TWbY5zZA= 333 | github.com/hbstack/slide v0.3.1/go.mod h1:DXC2z0RZvREHl2+gcN6n90xD5c+l+edSkC1q/VUi8yI= 334 | github.com/hbstack/slide v0.3.2/go.mod h1:5LOWGyawNzSWFlW+3kuUBSrK15kottNvolEc7FVcYVg= 335 | github.com/hbstack/slide v0.4.0 h1:rWrbEmL1bKW1VF1coMtMblDUwzMvVcm1MgvauFX6vMg= 336 | github.com/hbstack/slide v0.4.0/go.mod h1:5LOWGyawNzSWFlW+3kuUBSrK15kottNvolEc7FVcYVg= 337 | github.com/hbstack/slide v0.4.1/go.mod h1:/K79cb1nsgmh+FhvvpdqmDje9AhROgDp+/uzWPdR764= 338 | github.com/hbstack/snackbar v0.1.2 h1:/9R2CdWnLcOBobxzdpe30cgM1gcKJAXtbVbZtp2pgmY= 339 | github.com/hbstack/snackbar v0.1.2/go.mod h1:4uZSGpI9ZtR9by0bA8yJW2y61sRks2W4a8VvyMluXuo= 340 | github.com/hbstack/socials v0.9.0 h1:Lru22qqydHTcBJkkYlsk0Dl91IuZPLWBpr+BQB6d87U= 341 | github.com/hbstack/socials v0.9.0/go.mod h1:8H+ztN27J59oWcQyQTFj95HsauF2a22GXqQlNMGTQw4= 342 | github.com/hbstack/socials v0.10.0/go.mod h1:VeK9k0+f+HsKuPbVAqRwwz5KqWm+2+NlYlJsMdja4c8= 343 | github.com/hbstack/socials v0.11.0/go.mod h1:VeK9k0+f+HsKuPbVAqRwwz5KqWm+2+NlYlJsMdja4c8= 344 | github.com/hbstack/socials v0.12.0/go.mod h1:VeK9k0+f+HsKuPbVAqRwwz5KqWm+2+NlYlJsMdja4c8= 345 | github.com/hbstack/socials v0.13.0/go.mod h1:xCbwzO1NzuLhll79QlkG9r/wS0r3Hl5Cy+GhxZBqceo= 346 | github.com/hbstack/socials v0.14.0/go.mod h1:xCbwzO1NzuLhll79QlkG9r/wS0r3Hl5Cy+GhxZBqceo= 347 | github.com/hbstack/socials v0.14.1/go.mod h1:xCbwzO1NzuLhll79QlkG9r/wS0r3Hl5Cy+GhxZBqceo= 348 | github.com/hbstack/socials v0.15.0/go.mod h1:Bu1TdfuxLKtpEImsmuvB8OwbYJaGzOriQbOh3u7gTtc= 349 | github.com/hbstack/socials v0.16.0/go.mod h1:9pfExMNoBMnQ0JV2ODURqUQsEC/HlgUo9b3jXdrHNM4= 350 | github.com/hbstack/socials v0.17.0 h1:xa4CRhQNmN9QJzE3wVbeA2HZix4TYa8TE5FGxQT+8Zw= 351 | github.com/hbstack/socials v0.17.0/go.mod h1:bGfRrGxVWfvwseOzJ+13vHhHpZ+e+f2z8k4ypPBhH10= 352 | github.com/hbstack/socials v0.17.1/go.mod h1:SxsgrMkupTV3fHpGpWZQ7HAaeGUvENZPW5z+0ywJ5ao= 353 | github.com/hbstack/socials v0.17.2/go.mod h1:SxsgrMkupTV3fHpGpWZQ7HAaeGUvENZPW5z+0ywJ5ao= 354 | github.com/hbstack/socials v0.18.0/go.mod h1:iZvyHnOhH2ZYGvUnO6QomRiCwirCB9CtxUbsHsJloL8= 355 | github.com/hbstack/syntax-highlighting v0.2.0 h1:BP5SR/AbVlJyAFtVdgYjeqVZKmncEmuplTR5R2AUbw8= 356 | github.com/hbstack/syntax-highlighting v0.2.0/go.mod h1:6IoaM+tSIkKZblIrT1i5L3zVH68nt4UScU9JB30FQsc= 357 | github.com/hbstack/syntax-highlighting v0.2.1/go.mod h1:6IoaM+tSIkKZblIrT1i5L3zVH68nt4UScU9JB30FQsc= 358 | github.com/hbstack/syntax-highlighting/styles/gruvbox v0.1.1 h1:IzJlnkHGS8XhibNjUFvyV3YE7rc7WMsAhdxWZTbORI4= 359 | github.com/hbstack/syntax-highlighting/styles/gruvbox v0.1.1/go.mod h1:ar5ZFplNyVZCVG6rvo69co1hNZwptxtrDz3zproGLPg= 360 | github.com/hbstack/syntax-highlighting/styles/gruvbox v0.1.2/go.mod h1:ar5ZFplNyVZCVG6rvo69co1hNZwptxtrDz3zproGLPg= 361 | github.com/hbstack/toc-scrollspy v0.1.0 h1:sr9HidxHVYeSZR1FVOGQzphONSsct/OscbWPSV+vMlo= 362 | github.com/hbstack/toc-scrollspy v0.1.0/go.mod h1:wIqdWFRjqGGKX6Y5XVRQzaBBeZ91kZBKgovQp8IPvtk= 363 | github.com/hbstack/toc-scrollspy v0.2.0 h1:JPBozafeDvTUwGFkR90m/SzcyBfKg40pVJOLFihr60k= 364 | github.com/hbstack/toc-scrollspy v0.2.0/go.mod h1:wIqdWFRjqGGKX6Y5XVRQzaBBeZ91kZBKgovQp8IPvtk= 365 | github.com/henrygd/bigger-picture v1.1.14 h1:cyLougM5oeL3+lwrwFgeklwBd54nJWxXadt53E4r5Lk= 366 | github.com/henrygd/bigger-picture v1.1.14/go.mod h1:LayqbjDNNsZH+ZXklmjBe5T02qxpH9Cah/ygAraOBIk= 367 | github.com/henrygd/bigger-picture v1.1.15/go.mod h1:LayqbjDNNsZH+ZXklmjBe5T02qxpH9Cah/ygAraOBIk= 368 | github.com/henrygd/bigger-picture v1.1.16/go.mod h1:LayqbjDNNsZH+ZXklmjBe5T02qxpH9Cah/ygAraOBIk= 369 | github.com/henrygd/bigger-picture v1.1.17 h1:X41lEdmfYbLLgMdkH4F3Mdhipy8EQjA2w16u1y+BgM8= 370 | github.com/henrygd/bigger-picture v1.1.17/go.mod h1:LayqbjDNNsZH+ZXklmjBe5T02qxpH9Cah/ygAraOBIk= 371 | github.com/henrygd/bigger-picture v1.1.18/go.mod h1:LayqbjDNNsZH+ZXklmjBe5T02qxpH9Cah/ygAraOBIk= 372 | github.com/henrygd/bigger-picture v1.1.19/go.mod h1:LayqbjDNNsZH+ZXklmjBe5T02qxpH9Cah/ygAraOBIk= 373 | github.com/hugomods/ascii v0.1.0 h1:c7E0nV3z7PiNchGXkIuFBWsKym17k0iOo+o6Bp6bw30= 374 | github.com/hugomods/ascii v0.1.0/go.mod h1:vvC2YaCuNBWl/8F/mfk9vMxVpwXluH80cROV9TDpmLk= 375 | github.com/hugomods/base v0.4.1 h1:Wadju82kW7m60sA1FIECB2HvYboUOBUL6rCypMuTI74= 376 | github.com/hugomods/base v0.4.1/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 377 | github.com/hugomods/base v0.4.2/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 378 | github.com/hugomods/base v0.5.0/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 379 | github.com/hugomods/base v0.6.0/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 380 | github.com/hugomods/base v0.7.0/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 381 | github.com/hugomods/base v0.7.1/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 382 | github.com/hugomods/base v0.7.2 h1:SShNl7koN79CEUdGQ65Knbf/c2k+bE+El5ManYWd8Cg= 383 | github.com/hugomods/base v0.7.2/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 384 | github.com/hugomods/base v0.7.3/go.mod h1:hnWCPbVxuhXBwdFax3mmbMlWKmIo/7OP36MCLOyHtT4= 385 | github.com/hugomods/bootstrap v0.17.0 h1:oH+V92q5W/kye9QPSQdZXYsO3V2wyfkAjdYLPFIfjPI= 386 | github.com/hugomods/bootstrap v0.17.0/go.mod h1:EA5CtuNQX+aNkwEt1xae7clZ+4087KFXWZGE+2/f5oc= 387 | github.com/hugomods/bootstrap v0.17.1/go.mod h1:njaGUZ2BIU2ypcXqb3JPP/aETSXWG2vlh5qMgcYHk4s= 388 | github.com/hugomods/bootstrap v0.17.3/go.mod h1:SaJtm/hMN0giD5tCUzT+6UsphTIFpAspsZHisGA081U= 389 | github.com/hugomods/bootstrap v0.18.0/go.mod h1:bu4OlverXWsu/CbN0Uy8q/Mif3x3YjRK9VtZGKqIp7A= 390 | github.com/hugomods/bootstrap v0.18.1/go.mod h1:bu4OlverXWsu/CbN0Uy8q/Mif3x3YjRK9VtZGKqIp7A= 391 | github.com/hugomods/bootstrap v0.18.2/go.mod h1:bu4OlverXWsu/CbN0Uy8q/Mif3x3YjRK9VtZGKqIp7A= 392 | github.com/hugomods/bootstrap v0.18.3/go.mod h1:BP8RUSKYeBIxl3hqG28j8Nhlxx6pJhIK15Rpb/So9I0= 393 | github.com/hugomods/bootstrap v0.18.4/go.mod h1:Ss7a4kP2fqt6qMlU4XUunU0XDc8GAN8mJlOWwwdUJaA= 394 | github.com/hugomods/bootstrap v0.18.5/go.mod h1:Ss7a4kP2fqt6qMlU4XUunU0XDc8GAN8mJlOWwwdUJaA= 395 | github.com/hugomods/bootstrap v0.19.0/go.mod h1:NsS0rxUANr6nWIUrOK2Qw0T90lu4SdPUuglpodNl93k= 396 | github.com/hugomods/bootstrap v0.20.0/go.mod h1:tgsR9DyDScHepk3srCRueNH6l+TmbFjWvx++3GPogc0= 397 | github.com/hugomods/bootstrap v0.20.1/go.mod h1:2zs5zNxeQ7OYaI5nd3JxrqIvRR44SVbRtpiAERzSFSw= 398 | github.com/hugomods/bootstrap v0.21.1/go.mod h1:3U2SkU7l1+n8/wJZwB8/2phYhvRyFwCMix7pPNJ4U+I= 399 | github.com/hugomods/bootstrap v0.21.2/go.mod h1:3U2SkU7l1+n8/wJZwB8/2phYhvRyFwCMix7pPNJ4U+I= 400 | github.com/hugomods/bootstrap v0.22.0/go.mod h1:3U2SkU7l1+n8/wJZwB8/2phYhvRyFwCMix7pPNJ4U+I= 401 | github.com/hugomods/bootstrap v0.22.1/go.mod h1:daEkGLSsmfI8vQ1SjKR7KELPSrm1G+yUnTptKdRxFN0= 402 | github.com/hugomods/bootstrap v0.22.2/go.mod h1:daEkGLSsmfI8vQ1SjKR7KELPSrm1G+yUnTptKdRxFN0= 403 | github.com/hugomods/bootstrap v0.22.3 h1:q/lqm4rx0TefUALFFD54j19y7uu3toqYCOAWStebkYw= 404 | github.com/hugomods/bootstrap v0.22.3/go.mod h1:OpcaTH8dMsWqCeSSJ8IGqjEvK2zghLm8wD8ka3d33jc= 405 | github.com/hugomods/bootstrap v0.23.0/go.mod h1:eL5Y6abDndTt/LZu1VtgprvkdZgsV7/d3jpSoCcDkKQ= 406 | github.com/hugomods/code-block-panel v0.5.0 h1:IjlVQZJccs02x0TaNxsLR4S2PRyzy3tBXE3nFT2vJxA= 407 | github.com/hugomods/code-block-panel v0.5.0/go.mod h1:3J9yUxaShbhYvFFZbGVHcBoHPl6TUKLL3f2fTsnVNNg= 408 | github.com/hugomods/code-block-panel v0.6.0/go.mod h1:3J9yUxaShbhYvFFZbGVHcBoHPl6TUKLL3f2fTsnVNNg= 409 | github.com/hugomods/code-block-panel v0.7.0/go.mod h1:3J9yUxaShbhYvFFZbGVHcBoHPl6TUKLL3f2fTsnVNNg= 410 | github.com/hugomods/code-block-panel v0.7.1 h1:WP3xzQC++Bh5SiSke0csO0H1O4G6VejwdPazHD9DY5o= 411 | github.com/hugomods/code-block-panel v0.7.1/go.mod h1:3J9yUxaShbhYvFFZbGVHcBoHPl6TUKLL3f2fTsnVNNg= 412 | github.com/hugomods/code-block-panel v0.8.0/go.mod h1:3J9yUxaShbhYvFFZbGVHcBoHPl6TUKLL3f2fTsnVNNg= 413 | github.com/hugomods/font-awesome v6.4.2+incompatible h1:oTdZYvNEXRuocAaGTa8f6ZET9e+cjD8JXpZRG7dx8Qw= 414 | github.com/hugomods/font-awesome v6.4.2+incompatible/go.mod h1:C2wW6xDvHkcMlJMVTPQ+Npt+rO0OGv13xT1iyll2z2Q= 415 | github.com/hugomods/font-awesome v6.5.1+incompatible/go.mod h1:C2wW6xDvHkcMlJMVTPQ+Npt+rO0OGv13xT1iyll2z2Q= 416 | github.com/hugomods/font-awesome v6.5.2+incompatible/go.mod h1:C2wW6xDvHkcMlJMVTPQ+Npt+rO0OGv13xT1iyll2z2Q= 417 | github.com/hugomods/font-awesome v6.6.0+incompatible h1:LRI2HqrbS2epfl5/DOfPzpCI6H33GBss1SLb670GsLw= 418 | github.com/hugomods/font-awesome v6.6.0+incompatible/go.mod h1:C2wW6xDvHkcMlJMVTPQ+Npt+rO0OGv13xT1iyll2z2Q= 419 | github.com/hugomods/font-awesome v6.7.0+incompatible/go.mod h1:C2wW6xDvHkcMlJMVTPQ+Npt+rO0OGv13xT1iyll2z2Q= 420 | github.com/hugomods/font-awesome v6.7.1+incompatible/go.mod h1:C2wW6xDvHkcMlJMVTPQ+Npt+rO0OGv13xT1iyll2z2Q= 421 | github.com/hugomods/fuse-js v0.1.0 h1:CmWHBZANvjOP44RDNQNLntqlLf9GLqeM29jekxTNcPE= 422 | github.com/hugomods/fuse-js v0.1.0/go.mod h1:srCqvtBQR02HS/abTraDU4oINv1D3PljNPdexdoHhpo= 423 | github.com/hugomods/giscus v0.1.1 h1:Kb8137Cp2nQJPFb6e+CdXy8nyIAJ2dFIymG4bDdaXWI= 424 | github.com/hugomods/giscus v0.1.1/go.mod h1:tCRkqNi/sMsLh3kjDesXZNzf4R/w+b5oc5boS/l8Jtw= 425 | github.com/hugomods/gravatar v0.2.0 h1:642HNhGN7Mw7qefNcUFJKzLoT2zJKt4IQkrS53mIUfA= 426 | github.com/hugomods/gravatar v0.2.0/go.mod h1:oATWuh5u2XUK/ZKzOD0VEP5I/TZfVZwplTyhT61Q4Fc= 427 | github.com/hugomods/gravatar v0.2.1/go.mod h1:oATWuh5u2XUK/ZKzOD0VEP5I/TZfVZwplTyhT61Q4Fc= 428 | github.com/hugomods/hugopress v0.2.3 h1:tbQlJkGcou1KQJOeCN7E3oK8ZREFZoP3kSHcM/Kz718= 429 | github.com/hugomods/hugopress v0.2.3/go.mod h1:CRYvr60xOkZOf4Atkuj+uEj2EH5pjJ39Ws3aJAkoMkA= 430 | github.com/hugomods/hugopress v0.3.0/go.mod h1:CRYvr60xOkZOf4Atkuj+uEj2EH5pjJ39Ws3aJAkoMkA= 431 | github.com/hugomods/hugopress v0.4.0/go.mod h1:CRYvr60xOkZOf4Atkuj+uEj2EH5pjJ39Ws3aJAkoMkA= 432 | github.com/hugomods/hugopress v0.4.1/go.mod h1:CRYvr60xOkZOf4Atkuj+uEj2EH5pjJ39Ws3aJAkoMkA= 433 | github.com/hugomods/hugopress v0.5.0 h1:eQHg1aKnc5StGFnV5H0BORhE0UmHYpaWHnX9QNseHrw= 434 | github.com/hugomods/hugopress v0.5.0/go.mod h1:CRYvr60xOkZOf4Atkuj+uEj2EH5pjJ39Ws3aJAkoMkA= 435 | github.com/hugomods/i18n-js v0.2.1 h1:uIUl4LiYdwo8IK08oq7OmluYLedL21Wc9Rig1taDTSI= 436 | github.com/hugomods/i18n-js v0.2.1/go.mod h1:eJfxjgI2CQsNA1/ReIVvr5127DftUKcbHd2A2SQmDvU= 437 | github.com/hugomods/icons v0.6.0 h1:G6RU93okhPPRDh/jqcew9gwkcYpSpg0rCBv4S6yUAFw= 438 | github.com/hugomods/icons v0.6.0/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 439 | github.com/hugomods/icons v0.6.1/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 440 | github.com/hugomods/icons v0.6.2/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 441 | github.com/hugomods/icons v0.6.3/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 442 | github.com/hugomods/icons v0.6.4 h1:SeDMpN2kjc8mbuXfi8zED4IN5IGZmqJdmmUQr9tIpxw= 443 | github.com/hugomods/icons v0.6.4/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 444 | github.com/hugomods/icons v0.6.5/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 445 | github.com/hugomods/icons v0.6.6/go.mod h1:cIkSvK6W0q6N4U6n9KGz+QfRWQXAW0INd+1P31gPNGg= 446 | github.com/hugomods/icons/vendors/bootstrap v0.5.3 h1:3twbdiKpeCudV0UFNBZqUgBLIjG5qcv4lvvlALgR5ro= 447 | github.com/hugomods/icons/vendors/bootstrap v0.5.3/go.mod h1:SuPcqO3u8gN4epmf+2L1G8pg6X3nXj2D6FYRWd+OIrw= 448 | github.com/hugomods/icons/vendors/bootstrap v0.5.4/go.mod h1:DtuYP+dG9Sttfsggd9k09h/hapZBsel6JJ1vNetkaCg= 449 | github.com/hugomods/icons/vendors/bootstrap v0.5.5/go.mod h1:DtuYP+dG9Sttfsggd9k09h/hapZBsel6JJ1vNetkaCg= 450 | github.com/hugomods/icons/vendors/bootstrap v0.5.6/go.mod h1:Sw1RhQvFcsQlJ5a4SKpp7A0XHDYQ0DK0pQwnnx+l+Ao= 451 | github.com/hugomods/icons/vendors/bootstrap v0.5.7 h1:k2oXx7EOqiqPv9SRb2mtSiPtdWMQUFhtwE3kd0+5QK4= 452 | github.com/hugomods/icons/vendors/bootstrap v0.5.7/go.mod h1:bTxiIPJ/idHEc35EtvtwSODLpjI+R54BkGdikO3gCmY= 453 | github.com/hugomods/icons/vendors/bootstrap v0.5.8/go.mod h1:jla3IbQAByyz45AikUAw/c7h0wUMUn5Z2j4gh+zVDj4= 454 | github.com/hugomods/icons/vendors/bootstrap v0.5.9/go.mod h1:DuB5N1o3GCUyvYFnEeBvJRBrCHqbMWEbjoEWVLULggw= 455 | github.com/hugomods/icons/vendors/bootstrap v0.5.10/go.mod h1:WK/K+Ig81G833kx39zJKehOvdVI02Ih7v1K8GQExITA= 456 | github.com/hugomods/icons/vendors/bootstrap v0.5.11/go.mod h1:PAN+bzB4MW4dkA2gZbmKRJQ6lskHzoosqZzlCTgPv0k= 457 | github.com/hugomods/icons/vendors/font-awesome v0.6.1 h1:MyYF67fPthN4EDkT/IwY0ydowxzE6J/oKFTltOCY2vY= 458 | github.com/hugomods/icons/vendors/font-awesome v0.6.1/go.mod h1:kmMci4qX8yTQPT28sskzKRudJiQAAiZZugjNbkakRhk= 459 | github.com/hugomods/icons/vendors/font-awesome v0.6.2/go.mod h1:S7BE6/wpDplzG9uTnZqG6Q7ruMFi8MN1R+DqE8gNc3Y= 460 | github.com/hugomods/icons/vendors/font-awesome v0.6.3/go.mod h1:S7BE6/wpDplzG9uTnZqG6Q7ruMFi8MN1R+DqE8gNc3Y= 461 | github.com/hugomods/icons/vendors/font-awesome v0.6.4/go.mod h1:IgzWg991046eqnwM3e+kCnMEQASnIdA7MvBXMY+s/W4= 462 | github.com/hugomods/icons/vendors/font-awesome v0.6.5/go.mod h1:olo6073bAL17apxc7lTLfQKpT9sIam8Zx+d9lrCwV/o= 463 | github.com/hugomods/icons/vendors/font-awesome v0.6.6/go.mod h1:2IVdmnq+IWCnPFYsvbxq59dTuW3+prPLerpu8Ezobro= 464 | github.com/hugomods/icons/vendors/font-awesome v0.6.7/go.mod h1:aVL3nnSpH24/y4NJTNow1IWDbkLewDUuZUc1EYJIQAg= 465 | github.com/hugomods/icons/vendors/font-awesome v0.6.8 h1:wcqovckhWxcYTkOn4JOp2HljVmus+59AwDP9cAYWiMg= 466 | github.com/hugomods/icons/vendors/font-awesome v0.6.8/go.mod h1:IwJEJX8eFwDFCcxMjFBIgVWlPTf16yFVk78Rc3RUBjs= 467 | github.com/hugomods/icons/vendors/font-awesome v0.6.9/go.mod h1:YPxdyI0WHuZfvwNeG8ADHXwnWmWIuu3PqiYGz8q9Skw= 468 | github.com/hugomods/icons/vendors/font-awesome v0.6.10/go.mod h1:3izAIdRkMg2O0N1RWB4Uw615VErx75b/nC/199BYV50= 469 | github.com/hugomods/icons/vendors/font-awesome v0.6.11/go.mod h1:WHsS+MubOTORHHZyMWyNLVGpDpHNUBiXwlu3OKk5pKE= 470 | github.com/hugomods/icons/vendors/font-awesome v0.6.12/go.mod h1:6YBo/5GaNpAocKwnKNWcd9xkliiRJXmwz2mstY5lr9I= 471 | github.com/hugomods/icons/vendors/simple-icons v1.0.28 h1:d8cDvQXKc+hLWvngP0RZl1q6Ygv4/WxMD9pGDGTwQrk= 472 | github.com/hugomods/icons/vendors/simple-icons v1.0.28/go.mod h1:p1h2vSOPRPf+wlqISlrZPNZqF6dLdg4T0l9A05KM4BM= 473 | github.com/hugomods/icons/vendors/simple-icons v1.0.29/go.mod h1:xarNh9bs80owlZgbN9TP894ITqsjiClD3B/JIJtfYL8= 474 | github.com/hugomods/icons/vendors/simple-icons v1.0.30/go.mod h1:xarNh9bs80owlZgbN9TP894ITqsjiClD3B/JIJtfYL8= 475 | github.com/hugomods/icons/vendors/simple-icons v1.0.31/go.mod h1:mXoItc29/obFr5EOEiDmrLMZQ+3juCch3YyQ8Jo6ElA= 476 | github.com/hugomods/icons/vendors/simple-icons v1.0.32/go.mod h1:l038jUYiTs8kdeAcGBVj4cuP25KQku6gb/H0NDjix3Y= 477 | github.com/hugomods/icons/vendors/simple-icons v1.0.33/go.mod h1:La0IFKLpjIf2fJduy4tD89ZYlyv8rfcDA+WW5enNUFM= 478 | github.com/hugomods/icons/vendors/simple-icons v1.0.34/go.mod h1:5gxe7UQ8FingkIsuIid/a3C0BwhH9aYtCzwjf/2Cm/o= 479 | github.com/hugomods/icons/vendors/simple-icons v1.0.35/go.mod h1:uc0Ig96nm0s46VMxdy1Hzy9BEmLq0c1nIbPzuMlgILI= 480 | github.com/hugomods/icons/vendors/simple-icons v1.0.36/go.mod h1:831A05oHGziqogtDl3NW7ZjtHpnPTzhK/w/19/mnH+E= 481 | github.com/hugomods/icons/vendors/simple-icons v1.0.37/go.mod h1:YnC8ZUSGAKOhW3aY8qugJLe6w5Ck/k8EXBzGmKN5YdA= 482 | github.com/hugomods/icons/vendors/simple-icons v1.0.38/go.mod h1:XhswsNEfVeOhYACVe9+IIN7Z2AN0keT1ddnWv/vHp9A= 483 | github.com/hugomods/icons/vendors/simple-icons v1.0.39/go.mod h1:Y+C3h6tOJ938GK7dqUxC7nYPtcIcmKOFLlWaikRv+8c= 484 | github.com/hugomods/icons/vendors/simple-icons v1.0.40/go.mod h1:594XsVTJ2lgbzAUy/4OopxsZEeAOKmg8GfOBwiBiCe8= 485 | github.com/hugomods/icons/vendors/simple-icons v1.0.41/go.mod h1:LppcJG9cNDKHw5NRGmyGPBsZoqo+I18HegEgmo2/LVg= 486 | github.com/hugomods/icons/vendors/simple-icons v1.0.42/go.mod h1:fjtQc/rNlpZdGmcT7vmOGbh33/xMD1EKqloJ+A2/1Eo= 487 | github.com/hugomods/icons/vendors/simple-icons v1.0.43/go.mod h1:4XiukTwoxx4f9qLYUsSppODCq7mQx/P/cJp2UDHzECw= 488 | github.com/hugomods/icons/vendors/simple-icons v1.0.44/go.mod h1:7LcqEe8I+bPorVukiTA8m+HHKH/i413NgyItgGuhtRQ= 489 | github.com/hugomods/icons/vendors/simple-icons v1.0.45/go.mod h1:uCOLQy1qICLIFyWZMPUG5FCH2nJEFvZRjEZ4UM4Pvto= 490 | github.com/hugomods/icons/vendors/simple-icons v1.0.46/go.mod h1:OkG7GY2x/zFC9k3ueYcm2vmtNhIMczRb188FLfg+mJI= 491 | github.com/hugomods/icons/vendors/simple-icons v1.0.47/go.mod h1:+OxJaLg5ElwlUW/JhUq7IeuXg0tKLoB8MaOhkWQW0Eg= 492 | github.com/hugomods/icons/vendors/simple-icons v1.0.48/go.mod h1:OW3DGGP2A2ArBfZWjnLsiZShjXr2fltoP57HySYrsTg= 493 | github.com/hugomods/icons/vendors/simple-icons v1.0.49/go.mod h1:K3F3oFb6euvhpRXzWw8sSO+c68uZJZAcazuzxT8XIhc= 494 | github.com/hugomods/icons/vendors/simple-icons v1.0.50/go.mod h1:yc7MBoWIZX7Da0f6beE/Ppxmp7/stWqyGZRZMBErVJw= 495 | github.com/hugomods/icons/vendors/simple-icons v1.0.51/go.mod h1:Uk4BMaWL6ohfjicOQEPZJuhCgWD9beDOkJ8+3zD0m2Q= 496 | github.com/hugomods/icons/vendors/simple-icons v1.0.52/go.mod h1:JkyLPirnYf5HbI2GUZ4O2PGDMA9BsBfNSakPfrOoG00= 497 | github.com/hugomods/icons/vendors/simple-icons v1.0.53/go.mod h1:uhL0lxvPii4EnmJhJcG0yvzgzoGDxw6+95Ouzez+jvc= 498 | github.com/hugomods/icons/vendors/simple-icons v1.0.54/go.mod h1:lAfVp+/D/p4trFjOYi4E+xjzOi4Pp0Sn1r32AhGofXc= 499 | github.com/hugomods/icons/vendors/simple-icons v1.0.55/go.mod h1:DgADd72ssALNAevP4aSMLRFRIdvbPaMA5FKTWfFA+lc= 500 | github.com/hugomods/icons/vendors/simple-icons v1.0.56 h1:gJKcAae67kb4FYa6N7g1ljyvP8x/JKc1b6nIhwMhw9g= 501 | github.com/hugomods/icons/vendors/simple-icons v1.0.56/go.mod h1:amg6gmRchBb2zrdPIbLAqXViVtNplSvnYL+MZrZSX6g= 502 | github.com/hugomods/icons/vendors/simple-icons v1.0.57/go.mod h1:QNKkX7+q1fzI51xUGX4qmA11b6B+xTXZ8UMHJAKQEhY= 503 | github.com/hugomods/icons/vendors/simple-icons v1.0.58/go.mod h1:FNv3PHfJQi+Ri6tPkwjmpoCb437VqyWZdrLxO6VfmTk= 504 | github.com/hugomods/icons/vendors/simple-icons v1.0.59/go.mod h1:orl9o8nQFUF8h4m0qS+ympS8btJTaTxx4ZsXHSvXzHw= 505 | github.com/hugomods/icons/vendors/simple-icons v1.0.60/go.mod h1:/skqfU1fJ+WnPV8nX3sP2yTBJc7PLMdciMp8qNXDKYU= 506 | github.com/hugomods/icons/vendors/simple-icons v1.0.61/go.mod h1:x5TsryarJP5xAGVAXiZCa/7tP8+b22n5BbHfxtjX2uc= 507 | github.com/hugomods/icons/vendors/simple-icons v1.1.0/go.mod h1:x5TsryarJP5xAGVAXiZCa/7tP8+b22n5BbHfxtjX2uc= 508 | github.com/hugomods/icons/vendors/simple-icons v1.1.1/go.mod h1:ZKdcZ++UGSRnEoaVL+MTth91x4NJRIe8aJOD8oAFcRA= 509 | github.com/hugomods/idb-js v0.1.0 h1:mA6hEGtR0aFEdmq9zYMGpfSpCU6SMilx9RzC4uK3DqY= 510 | github.com/hugomods/idb-js v0.1.0/go.mod h1:GPfnmr+BQpP4s6Epd4Yu+RlUog8q/Djw8qy8BZFWZ04= 511 | github.com/hugomods/images v0.9.0 h1:qPIJisJw5cSN6xsUYpmBeGVQ6tFE8JphJkUhOkumsxI= 512 | github.com/hugomods/images v0.9.0/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 513 | github.com/hugomods/images v0.9.1/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 514 | github.com/hugomods/images v0.9.2/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 515 | github.com/hugomods/images v0.9.3/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 516 | github.com/hugomods/images v0.10.0/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 517 | github.com/hugomods/images v0.10.1/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 518 | github.com/hugomods/images v0.11.0/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 519 | github.com/hugomods/images v0.11.2 h1:d7u3c/ePboeOGx8OI5eUnilpA79YvD7KJjUgqVMR83Y= 520 | github.com/hugomods/images v0.11.2/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 521 | github.com/hugomods/images v0.12.0/go.mod h1:U6Gwj16LKvk66rOMyGFrnF6f0aV8lT89lqOsckOAjYY= 522 | github.com/hugomods/katex v0.3.0 h1:hq0Kels9clL38Y2K/QZgXFKF7hQuumyQYz16TT4/Hhk= 523 | github.com/hugomods/katex v0.3.0/go.mod h1:EBY1YQTN6F8FDQz+mWp3EzEh8vDN31YjL9luVni+Wm0= 524 | github.com/hugomods/katex v0.3.1/go.mod h1:EBY1YQTN6F8FDQz+mWp3EzEh8vDN31YjL9luVni+Wm0= 525 | github.com/hugomods/katex v0.3.2/go.mod h1:i+fKI52f3QbiuK0ug5yRCB9ZJ/qUFERTk8UGuSZMQNQ= 526 | github.com/hugomods/katex v0.3.3 h1:TX6Tl5jgYXAXcNWKTC/0vI8p9MSBfwkVMTgJfakM3XA= 527 | github.com/hugomods/katex v0.3.3/go.mod h1:i+fKI52f3QbiuK0ug5yRCB9ZJ/qUFERTk8UGuSZMQNQ= 528 | github.com/hugomods/katex v0.3.4/go.mod h1:i+fKI52f3QbiuK0ug5yRCB9ZJ/qUFERTk8UGuSZMQNQ= 529 | github.com/hugomods/katex v0.3.5/go.mod h1:i+fKI52f3QbiuK0ug5yRCB9ZJ/qUFERTk8UGuSZMQNQ= 530 | github.com/hugomods/katex v0.3.6/go.mod h1:6ACkMfCEOjLIRwcbS33Yji29C113+zGdBF/5oMfWfZI= 531 | github.com/hugomods/masonry-js v0.1.0 h1:mZagvVEWsgyIFViMY1ZkOOJfdFV5D76eB99SHgwhbRU= 532 | github.com/hugomods/masonry-js v0.1.0/go.mod h1:+RHcqWxaZ9R4Z0GeAji1WiQ006/VxR5RLhOLpfVypio= 533 | github.com/hugomods/mermaid v0.1.1 h1:12b8DbdiKOTtPmkWOMXsBz3LKkAWVqa5tGkbEboj0a4= 534 | github.com/hugomods/mermaid v0.1.1/go.mod h1:7sKIZLAeYsXXnKRh4KR70UQx27xnzf0mSQ2o99zTLS0= 535 | github.com/hugomods/mermaid v0.1.2/go.mod h1:GOID2Ko1vdrX03ZMaFNQL/vdTU1tZmGcVjOgBN8O42Y= 536 | github.com/hugomods/mermaid v0.1.3/go.mod h1:GOID2Ko1vdrX03ZMaFNQL/vdTU1tZmGcVjOgBN8O42Y= 537 | github.com/hugomods/mermaid v0.1.4 h1:/u0FZRSBMpqTbDh4XPBL7c6p0DUjvIkoo9cC89GASSI= 538 | github.com/hugomods/mermaid v0.1.4/go.mod h1:GOID2Ko1vdrX03ZMaFNQL/vdTU1tZmGcVjOgBN8O42Y= 539 | github.com/hugomods/pwa v0.7.0 h1:4m8WTkWSEWi2FCnfHMJm1ZbcAPbPbHElh2gepPzfM3A= 540 | github.com/hugomods/pwa v0.7.0/go.mod h1:KpYK2Ffn969+Py5SzV3+iXYase4UoUeRAsd9jY7Q2Us= 541 | github.com/hugomods/pwa v0.8.0/go.mod h1:KpYK2Ffn969+Py5SzV3+iXYase4UoUeRAsd9jY7Q2Us= 542 | github.com/hugomods/pwa v0.9.0 h1:bEKFkP7xkow6IadY9hKEwPbdKeLC0XZfVT31gGP7CPc= 543 | github.com/hugomods/pwa v0.9.0/go.mod h1:KpYK2Ffn969+Py5SzV3+iXYase4UoUeRAsd9jY7Q2Us= 544 | github.com/hugomods/search v0.8.3 h1:IIeU8Xw5t+SRYwpX08NjROt+YtDtWjjW0Xa00nEaYVs= 545 | github.com/hugomods/search v0.8.3/go.mod h1:FURp5HBUm8JiuJajLk9sZ1Z1QUSJATboYEp1sFi46a4= 546 | github.com/hugomods/search v0.8.4/go.mod h1:FURp5HBUm8JiuJajLk9sZ1Z1QUSJATboYEp1sFi46a4= 547 | github.com/hugomods/search v0.8.5/go.mod h1:FURp5HBUm8JiuJajLk9sZ1Z1QUSJATboYEp1sFi46a4= 548 | github.com/hugomods/search v0.8.6/go.mod h1:FURp5HBUm8JiuJajLk9sZ1Z1QUSJATboYEp1sFi46a4= 549 | github.com/hugomods/search v0.8.7/go.mod h1:FURp5HBUm8JiuJajLk9sZ1Z1QUSJATboYEp1sFi46a4= 550 | github.com/hugomods/search v0.9.0/go.mod h1:FURp5HBUm8JiuJajLk9sZ1Z1QUSJATboYEp1sFi46a4= 551 | github.com/hugomods/search v0.10.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 552 | github.com/hugomods/search v0.11.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 553 | github.com/hugomods/search v0.11.1/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 554 | github.com/hugomods/search v0.12.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 555 | github.com/hugomods/search v0.13.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 556 | github.com/hugomods/search v0.13.1/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 557 | github.com/hugomods/search v0.13.2/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 558 | github.com/hugomods/search v0.13.3/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 559 | github.com/hugomods/search v0.13.4/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 560 | github.com/hugomods/search v0.14.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 561 | github.com/hugomods/search v0.14.1/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 562 | github.com/hugomods/search v0.15.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 563 | github.com/hugomods/search v0.16.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 564 | github.com/hugomods/search v0.17.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 565 | github.com/hugomods/search v0.17.1/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 566 | github.com/hugomods/search v0.17.2 h1:B9AdAD+kUathCvsA+zS+tgBu7YzFutCVLP6wqJsiUpw= 567 | github.com/hugomods/search v0.17.2/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 568 | github.com/hugomods/search v0.18.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 569 | github.com/hugomods/search v0.18.1/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 570 | github.com/hugomods/search v0.18.2/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 571 | github.com/hugomods/search v0.18.3/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 572 | github.com/hugomods/search v0.19.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 573 | github.com/hugomods/search v0.19.1/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 574 | github.com/hugomods/search v0.19.2/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 575 | github.com/hugomods/search v0.20.0/go.mod h1:xPnDGjP/HCdEWJrJBwwdI2mEtdxFxp+wHBwSl/r2m00= 576 | github.com/hugomods/seo/modules/alternatives v0.1.0 h1:G5IjM7j7ExgXEMyxQj1Z/5JwwRW8DEmL0nDJYxA3NhE= 577 | github.com/hugomods/seo/modules/alternatives v0.1.0/go.mod h1:ff9uz+f5yii9k2jbwt/HKM3RpLR3EYZrNQBAOabNxMA= 578 | github.com/hugomods/seo/modules/alternatives v0.1.1 h1:Y8NdyBhvkSfr43ZKtXvQBgOW9lHL0a6vC1UIZFNbMpo= 579 | github.com/hugomods/seo/modules/alternatives v0.1.1/go.mod h1:y/VmIbVDnJWgcbhw0Rp8PP4RtvLhAx+URfvwl5SrWg0= 580 | github.com/hugomods/seo/modules/base v0.1.0 h1:ZEkWuYeRJeQakBkBThO3N3lmGzOZoPixs4pDugJXfJk= 581 | github.com/hugomods/seo/modules/base v0.1.0/go.mod h1:qfm1Vga0eGxL+Szgz8Jopm+NtJ5PGov2a2dikTg1qSg= 582 | github.com/hugomods/seo/modules/base v0.1.1/go.mod h1:qfm1Vga0eGxL+Szgz8Jopm+NtJ5PGov2a2dikTg1qSg= 583 | github.com/hugomods/seo/modules/base v0.1.2/go.mod h1:qfm1Vga0eGxL+Szgz8Jopm+NtJ5PGov2a2dikTg1qSg= 584 | github.com/hugomods/seo/modules/base v0.1.3 h1:1RYumYqpmNTamOnoVjhu1u5S8dxx71awYcJaiIuJw60= 585 | github.com/hugomods/seo/modules/base v0.1.3/go.mod h1:kKuDlSh6uMjNAfe4j1RFQze4HwTHVKWuLIRsMwENqxs= 586 | github.com/hugomods/seo/modules/favicons v0.2.1 h1:9FP4DIbdmBhmUpBuJVJYo60iwv9Xc/XNQX1mT8zCNj0= 587 | github.com/hugomods/seo/modules/favicons v0.2.1/go.mod h1:xFDhrpWUZR4NMMVkilzT6xFBHiF5eyCQ8PlzOS2K9lY= 588 | github.com/hugomods/seo/modules/favicons v0.2.2 h1:EMpCg9ef2bexFM8uz4UGCyYtM+X4x/aQWK5/0VaP1Y0= 589 | github.com/hugomods/seo/modules/favicons v0.2.2/go.mod h1:Bb/Se6JHet2xnWBa2vxmePR/gCBptqVB82oy0GwN/Y8= 590 | github.com/hugomods/seo/modules/open-graph v0.1.0 h1:Whveal1j1n2xZWcAlNAd2rdfKp7Fh5apol36wLGLb54= 591 | github.com/hugomods/seo/modules/open-graph v0.1.0/go.mod h1:G7mXf7D1QtRN/i7A9v+cUF5P55H/QaxRqxJ8tp9fVq4= 592 | github.com/hugomods/seo/modules/open-graph v0.1.1 h1:7IzWUnvvdbHQpCJWWJEDN1Ekw3cHrQ6wBXL8x6so0cA= 593 | github.com/hugomods/seo/modules/open-graph v0.1.1/go.mod h1:LZ8Pg5t2eri5itVVlndGCjGyBH5zxcCOj3LM4dLehNo= 594 | github.com/hugomods/seo/modules/schema v0.1.1 h1:8IuJxCOxk9pfKpCFMik5fDCX7zaFwkGoeKacnYV0sgA= 595 | github.com/hugomods/seo/modules/schema v0.1.1/go.mod h1:R6hRr2FIJITcMnFA/3V3dPAZgGQLNWGS7v1PLsmVRxU= 596 | github.com/hugomods/seo/modules/schema v0.1.2/go.mod h1:R6hRr2FIJITcMnFA/3V3dPAZgGQLNWGS7v1PLsmVRxU= 597 | github.com/hugomods/seo/modules/schema v0.1.3 h1:BoP40It+8jLyLJIk+QDQOS/ioKJvyIsNH81IXJjwxNE= 598 | github.com/hugomods/seo/modules/schema v0.1.3/go.mod h1:BObpqP67u8l/hPm3iy0J5gSO/ZFCG0tYK/vRZ4JoZTw= 599 | github.com/hugomods/seo/modules/translations v0.1.0 h1:wPDuPKGx/x+otHn2HfAankKCGQxSrC3gLHhRHpNjC18= 600 | github.com/hugomods/seo/modules/translations v0.1.0/go.mod h1:yU2p2hk2dK86YNRU9zfoWRoCrYmrjEmf3oN7cCTbzcM= 601 | github.com/hugomods/seo/modules/translations v0.1.1 h1:FFgOHA5qtkHt1YuyYoLnicrkaVYvEhbbSdT3k+38h4g= 602 | github.com/hugomods/seo/modules/translations v0.1.1/go.mod h1:ARboWQ31UeIwpB2AiN/efWLfplTTjarZRGEgKkkg3CA= 603 | github.com/hugomods/seo/modules/twitter-cards v0.1.0 h1:jH9WfmFZ3kCndUkATM/D/BYL+TQYoXA7/IxgQJbifKQ= 604 | github.com/hugomods/seo/modules/twitter-cards v0.1.0/go.mod h1:QYs7SWbhXSQrsn/RHZSD7DwzaCHFpoLQdVPxEI3j63k= 605 | github.com/hugomods/seo/modules/twitter-cards v0.1.1 h1:1cxNnftQ8MdajH48tB46DQ6eoCzrV1dQuVKLiKGFWwM= 606 | github.com/hugomods/seo/modules/twitter-cards v0.1.1/go.mod h1:KA6MA3GbyQZdd3vloDgcTFBoztmqEJI8R59whcSxpf4= 607 | github.com/hugomods/shortcodes v0.13.2 h1:l/pahltOVCYv8Mz0Mg5bL1BLXWUxnTYYEVsy1XyorbM= 608 | github.com/hugomods/shortcodes v0.13.2/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 609 | github.com/hugomods/shortcodes v0.14.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 610 | github.com/hugomods/shortcodes v0.15.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 611 | github.com/hugomods/shortcodes v0.16.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 612 | github.com/hugomods/shortcodes v0.17.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 613 | github.com/hugomods/shortcodes v0.18.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 614 | github.com/hugomods/shortcodes v0.18.1/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 615 | github.com/hugomods/shortcodes v0.19.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 616 | github.com/hugomods/shortcodes v0.21.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 617 | github.com/hugomods/shortcodes v0.22.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 618 | github.com/hugomods/shortcodes v0.22.1/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 619 | github.com/hugomods/shortcodes v0.23.0 h1:ZB7bY7vvx917IkXg+ab08QD5H4biKzAsLKDMrWeoziI= 620 | github.com/hugomods/shortcodes v0.23.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 621 | github.com/hugomods/shortcodes v0.24.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 622 | github.com/hugomods/shortcodes v0.25.0/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 623 | github.com/hugomods/shortcodes v0.25.1/go.mod h1:EnVopbZMNI/HeteM3Lp3phBTCRLvPSe7l142qhRFFPY= 624 | github.com/hugomods/simple-icons v11.1.0+incompatible h1:TasyEtFv3AdBrW+hbh35t6VQsg4fIdPlLUmGiOvDb6c= 625 | github.com/hugomods/simple-icons v11.1.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 626 | github.com/hugomods/simple-icons v11.4.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 627 | github.com/hugomods/simple-icons v11.6.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 628 | github.com/hugomods/simple-icons v11.8.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 629 | github.com/hugomods/simple-icons v11.9.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 630 | github.com/hugomods/simple-icons v11.10.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 631 | github.com/hugomods/simple-icons v11.11.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 632 | github.com/hugomods/simple-icons v11.13.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 633 | github.com/hugomods/simple-icons v11.14.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 634 | github.com/hugomods/simple-icons v11.15.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 635 | github.com/hugomods/simple-icons v12.0.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 636 | github.com/hugomods/simple-icons v12.1.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 637 | github.com/hugomods/simple-icons v12.2.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 638 | github.com/hugomods/simple-icons v12.3.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 639 | github.com/hugomods/simple-icons v12.4.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 640 | github.com/hugomods/simple-icons v13.0.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 641 | github.com/hugomods/simple-icons v13.1.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 642 | github.com/hugomods/simple-icons v13.2.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 643 | github.com/hugomods/simple-icons v13.3.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 644 | github.com/hugomods/simple-icons v13.4.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 645 | github.com/hugomods/simple-icons v13.5.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 646 | github.com/hugomods/simple-icons v13.6.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 647 | github.com/hugomods/simple-icons v13.7.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 648 | github.com/hugomods/simple-icons v13.8.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 649 | github.com/hugomods/simple-icons v13.10.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 650 | github.com/hugomods/simple-icons v13.11.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 651 | github.com/hugomods/simple-icons v13.12.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 652 | github.com/hugomods/simple-icons v13.13.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 653 | github.com/hugomods/simple-icons v13.14.0+incompatible h1:e9sqmoq9kUVYta3mmBsnu8+Adrtm19QNSnC0q1RIs+o= 654 | github.com/hugomods/simple-icons v13.14.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 655 | github.com/hugomods/simple-icons v13.14.1+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 656 | github.com/hugomods/simple-icons v13.15.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 657 | github.com/hugomods/simple-icons v13.18.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 658 | github.com/hugomods/simple-icons v13.19.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 659 | github.com/hugomods/simple-icons v13.21.0+incompatible/go.mod h1:1Lvymol7AMVY7ji/o88jMoDHHZIJ5Wc+WwNe5hjmk+U= 660 | github.com/hugomods/snackbar v0.1.2 h1:SLpfH9jlYwf81epH7DvM2XTZHo+3fXXpk6XKtxmo964= 661 | github.com/hugomods/snackbar v0.1.2/go.mod h1:ykFm0IFibeQPuPAm8Gaa27xJS/bNZcSez4omVSl2gQ0= 662 | github.com/hugomods/workbox v0.1.0 h1:yxuTj3gT1BNf6OitxrjxSJXfmbFBj2UTwdWr142eYFQ= 663 | github.com/hugomods/workbox v0.1.0/go.mod h1:RpFcIcltqYsiHWJV6PHPOdMagFZxO7nrO5XUpn/TMoc= 664 | github.com/jakearchibald/idb v8.0.0+incompatible h1:sTNGHgh+JoyQ4Eqey+1ScX4F03uTsYGhs2MbVSJNfF4= 665 | github.com/jakearchibald/idb v8.0.0+incompatible/go.mod h1:AuDoW54s2DKfbclM+ScrnPp8ahUQ9rHph9bb8sZTEXc= 666 | github.com/jakearchibald/idb v8.0.1+incompatible/go.mod h1:AuDoW54s2DKfbclM+ScrnPp8ahUQ9rHph9bb8sZTEXc= 667 | github.com/jakearchibald/idb v8.0.2+incompatible/go.mod h1:AuDoW54s2DKfbclM+ScrnPp8ahUQ9rHph9bb8sZTEXc= 668 | github.com/jakearchibald/idb v8.0.3+incompatible/go.mod h1:AuDoW54s2DKfbclM+ScrnPp8ahUQ9rHph9bb8sZTEXc= 669 | github.com/krisk/Fuse v7.0.0+incompatible h1:jVyg6No+Joc51Rn97QQYJZIpCxzd4ywACn/4+FKWjvo= 670 | github.com/krisk/Fuse v7.0.0+incompatible/go.mod h1:3moWv8rDjwoKic9nwiPLgZjldkbdTAbtzJHCu/Vsj4A= 671 | github.com/krisk/Fuse v7.1.0+incompatible/go.mod h1:3moWv8rDjwoKic9nwiPLgZjldkbdTAbtzJHCu/Vsj4A= 672 | github.com/twbs/bootstrap v5.3.2+incompatible h1:tuiO5acc6xnZUR77Sbi5aKWXxjYxbmsSbJwYrhAKoQQ= 673 | github.com/twbs/bootstrap v5.3.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= 674 | github.com/twbs/bootstrap v5.3.3+incompatible h1:goFoqinzdHfkeegpFP7pvhbd0g+A3O2hbU3XCjuNrEQ= 675 | github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= 676 | github.com/twbs/bootstrap v5.3.4+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= 677 | github.com/twbs/bootstrap v5.3.5+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= 678 | github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= 679 | github.com/twbs/icons v1.11.3 h1:XhvrQ1XDom9ggBbQx3wQCFGEr8qAQwQP/dAcw8OXMtA= 680 | github.com/twbs/icons v1.11.3/go.mod h1:GnRlymgVWp5iVJCMa0Me5b6tFyGpVc2bSxPMRGIJmyA= 681 | github.com/twbs/icons v1.11.4/go.mod h1:GnRlymgVWp5iVJCMa0Me5b6tFyGpVc2bSxPMRGIJmyA= 682 | github.com/twbs/icons v1.12.1/go.mod h1:GnRlymgVWp5iVJCMa0Me5b6tFyGpVc2bSxPMRGIJmyA= 683 | github.com/twbs/icons v1.13.1/go.mod h1:GnRlymgVWp5iVJCMa0Me5b6tFyGpVc2bSxPMRGIJmyA= 684 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbstack/theme/b58d46f367af52fc509e066b4563547436ab77b7/images/tn.png -------------------------------------------------------------------------------- /layouts/partials/hugopress/modules/hb-custom/hooks/body-end.html: -------------------------------------------------------------------------------- 1 | {{/* Put custom HTML markup before the end of . */}} 2 | -------------------------------------------------------------------------------- /layouts/partials/hugopress/modules/hb-custom/hooks/hb-blog-sidebar.html: -------------------------------------------------------------------------------- 1 |