├── .hugo_build.lock ├── .gitignore ├── exampleSite ├── content │ ├── search │ │ └── placeholder.md │ ├── archive │ │ └── index.md │ ├── notes │ │ └── index.md │ ├── post │ │ ├── 2017-11-03-hello-world.md │ │ ├── 2018-02-09-docker-without-sudo.md │ │ ├── 2018-03-13-use-docker-behind-http-proxy.md │ │ ├── 2018-02-09-vim-tips.md │ │ ├── 2018-05-24-set_up_my_ubuntu_desktop.md │ │ ├── 2018-05-23-service_2_service_auth.md │ │ ├── 2018-04-11-service-mesh-vs-api-gateway.md │ │ ├── 2017-11-07-istio-traffic-shifting.md │ │ ├── 2018-06-02-istio08.md │ │ ├── 2018-05-23-external_system_auth.md │ │ ├── 2018-05-23-istio-auto-injection-with-webhook.md │ │ ├── 2018-05-22-user_authentication_authorization.md │ │ ├── 2018-05-01-may-day-jiulonghu.md │ │ ├── 2018-05-21-algolia-integration-with-jekyll.md │ │ └── 2025-07-06-mathematical-formulae.md │ └── about │ │ ├── index-zh.md │ │ └── index.md ├── .gitignore ├── build_algolia_index.sh ├── static │ └── img │ │ ├── tn.png │ │ ├── post.png │ │ ├── 404-bg.jpg │ │ ├── disqus.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── rewards.png │ │ ├── search.png │ │ ├── tag-bg.jpg │ │ ├── contact-bg.jpg │ │ ├── sitesearch.png │ │ ├── home-bg-jeep.jpg │ │ ├── zhaohuabing.png │ │ ├── fullscreenshot.png │ │ ├── post-bg-coffee.jpeg │ │ ├── wechat_qrcode.jpg │ │ └── post-bg-unix-linux.jpg ├── deploy.sh └── hugo.toml ├── layouts ├── shortcodes │ ├── rawhtml.html │ ├── mind.html │ ├── bilibili.html │ ├── notice.html │ ├── figure.html │ ├── post-image.html │ ├── gallery.html │ ├── load-photoswipe.html │ └── load-photoswipe-theme.html ├── index.html ├── taxonomy │ ├── tag.html │ ├── category.html │ └── terms.html ├── partials │ ├── category.html │ ├── portfolio.html │ ├── multilingual-sel.html │ ├── search-pagefind.html │ ├── pagination.html │ ├── posts.html │ ├── math │ │ ├── katex-css.html │ │ └── katex-fonts.html │ ├── header.html │ ├── post_list.html │ ├── reward.html │ ├── comments.html │ ├── search-algolia.html │ ├── nav.html │ ├── head.html │ └── page_view_counter.html ├── _markup │ ├── render-codeblock-mermaid.html │ ├── render-codeblock-chem.html │ ├── render-codeblock-math.html │ └── render-passthrough.html ├── _default │ ├── _markup │ │ └── render-image.html │ ├── page.html │ ├── baseof.html │ ├── list.algolia.json │ ├── archive.html │ ├── section.html │ ├── top.html │ ├── post.html │ └── single.html ├── 404.html ├── search │ └── list.html └── top │ └── single.html ├── go.mod ├── images ├── tn.png ├── disqus.png ├── post.png ├── archive.png ├── bilibili.png ├── mindmap.png ├── plantuml.png ├── rewards.png ├── screenshot.png ├── sitesearch.png └── fullscreenshot.png ├── static ├── img │ ├── favicon.ico │ ├── search.png │ └── reward │ │ ├── alipay-1.png │ │ ├── alipay-10.png │ │ ├── alipay-100.png │ │ ├── alipay-2.png │ │ ├── alipay-5.png │ │ ├── alipay-50.png │ │ ├── alipay-btn.png │ │ ├── wechat-1.png │ │ ├── wechat-10.png │ │ ├── wechat-100.png │ │ ├── wechat-2.png │ │ ├── wechat-5.png │ │ ├── wechat-50.png │ │ └── wechat-btn.png ├── css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── hugo-easy-gallery.min.css │ ├── zanshang.min.css │ ├── zanshang.css │ ├── mindmap.css │ └── hugo-easy-gallery.css ├── webfonts │ ├── fa-brands-400.woff │ ├── fa-solid-900.woff2 │ └── fa-brands-400.woff2 └── js │ ├── mindmap.min.js │ ├── mindmap.js │ ├── hux-blog.min.js │ ├── reward.js │ ├── jquery.tagcloud.js │ ├── load-photoswipe.js │ ├── hux-blog.js │ ├── fitvids.js │ ├── jquery.nav.js │ └── lazysizes.min.js ├── archetypes └── post.md ├── .github ├── stale.yml └── FUNDING.yml └── theme.toml /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /exampleSite/content/search/placeholder.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | /public/ -------------------------------------------------------------------------------- /exampleSite/build_algolia_index.sh: -------------------------------------------------------------------------------- 1 | npm run algolia 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | 2 | {{.Inner}} 3 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/zhaohuabing/hugo-theme-cleanwhite 2 | 3 | go 1.21 4 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "portfolio.html" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /images/disqus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/disqus.png -------------------------------------------------------------------------------- /images/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/post.png -------------------------------------------------------------------------------- /layouts/taxonomy/tag.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "category.html" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /images/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/archive.png -------------------------------------------------------------------------------- /images/bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/bilibili.png -------------------------------------------------------------------------------- /images/mindmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/mindmap.png -------------------------------------------------------------------------------- /images/plantuml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/plantuml.png -------------------------------------------------------------------------------- /images/rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/rewards.png -------------------------------------------------------------------------------- /layouts/taxonomy/category.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "category.html" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/sitesearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/sitesearch.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/search.png -------------------------------------------------------------------------------- /images/fullscreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/images/fullscreenshot.png -------------------------------------------------------------------------------- /exampleSite/static/img/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/tn.png -------------------------------------------------------------------------------- /exampleSite/static/img/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/post.png -------------------------------------------------------------------------------- /static/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/img/reward/alipay-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-1.png -------------------------------------------------------------------------------- /static/img/reward/alipay-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-10.png -------------------------------------------------------------------------------- /static/img/reward/alipay-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-100.png -------------------------------------------------------------------------------- /static/img/reward/alipay-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-2.png -------------------------------------------------------------------------------- /static/img/reward/alipay-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-5.png -------------------------------------------------------------------------------- /static/img/reward/alipay-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-50.png -------------------------------------------------------------------------------- /static/img/reward/alipay-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/alipay-btn.png -------------------------------------------------------------------------------- /static/img/reward/wechat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-1.png -------------------------------------------------------------------------------- /static/img/reward/wechat-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-10.png -------------------------------------------------------------------------------- /static/img/reward/wechat-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-100.png -------------------------------------------------------------------------------- /static/img/reward/wechat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-2.png -------------------------------------------------------------------------------- /static/img/reward/wechat-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-5.png -------------------------------------------------------------------------------- /static/img/reward/wechat-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-50.png -------------------------------------------------------------------------------- /static/img/reward/wechat-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/img/reward/wechat-btn.png -------------------------------------------------------------------------------- /exampleSite/static/img/404-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/404-bg.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/disqus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/disqus.png -------------------------------------------------------------------------------- /exampleSite/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/favicon.ico -------------------------------------------------------------------------------- /exampleSite/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/favicon.png -------------------------------------------------------------------------------- /exampleSite/static/img/rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/rewards.png -------------------------------------------------------------------------------- /exampleSite/static/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/search.png -------------------------------------------------------------------------------- /exampleSite/static/img/tag-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/tag-bg.jpg -------------------------------------------------------------------------------- /layouts/partials/category.html: -------------------------------------------------------------------------------- 1 | {{ $paginator := .Paginate (where .Data.Pages "Section" "post") }} 2 | {{ partial "posts.html" . }} 3 | -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /exampleSite/static/img/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/contact-bg.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/sitesearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/sitesearch.png -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /exampleSite/static/img/home-bg-jeep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/home-bg-jeep.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/zhaohuabing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/zhaohuabing.png -------------------------------------------------------------------------------- /exampleSite/static/img/fullscreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/fullscreenshot.png -------------------------------------------------------------------------------- /exampleSite/static/img/post-bg-coffee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/post-bg-coffee.jpeg -------------------------------------------------------------------------------- /exampleSite/static/img/wechat_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/wechat_qrcode.jpg -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /exampleSite/content/archive/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Posts Archive" 3 | layout: archive 4 | type: archive 5 | description: Archive of historical posts. 6 | --- -------------------------------------------------------------------------------- /layouts/partials/portfolio.html: -------------------------------------------------------------------------------- 1 | {{ $paginator := .Paginate (where (where .Site.Pages "Type" "post") "IsPage" true) }} 2 | {{ partial "posts.html" . }} 3 | -------------------------------------------------------------------------------- /exampleSite/static/img/post-bg-unix-linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaohuabing/hugo-theme-cleanwhite/HEAD/exampleSite/static/img/post-bg-unix-linux.jpg -------------------------------------------------------------------------------- /layouts/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner | htmlEscape | safeHTML }}
3 |
4 | {{ .Page.Store.Set "hasMermaid" true }}
5 |
--------------------------------------------------------------------------------
/exampleSite/content/notes/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | ---
4 |
5 | ## [Go 语言学习笔记](https://zhaohuabing.com/learning-golang)
6 |
7 | ## [Envoy 学习笔记](https://zhaohuabing.com/learning-envoy)
8 |
9 |
--------------------------------------------------------------------------------
/archetypes/post.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "An Example Post"
3 | subtitle: ""
4 | description: ""
5 | date: 2018-06-04
6 | author: ""
7 | image: ""
8 | tags: ["tag1", "tag2"]
9 | categories: ["Tech" ]
10 | ---
11 |
--------------------------------------------------------------------------------
/layouts/partials/multilingual-sel.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/layouts/_default/_markup/render-image.html:
--------------------------------------------------------------------------------
1 | {{ if .Title }}
2 |