├── .github └── workflows │ └── hugo.yml ├── .gitignore ├── LICENSE ├── README.md ├── archetypes ├── about.md ├── archives.md ├── default.md ├── post.md └── search.md ├── assets ├── css │ ├── bulma-no-dark-mode.min.css │ ├── bulma.css │ ├── custom.scss │ ├── functions.scss │ ├── hulga.scss │ ├── monokai.css │ ├── steamdeck.scss │ └── toc.scss ├── js │ ├── hulga.js │ └── pwa.js └── sw.js ├── exampleSite ├── content │ ├── _index.md │ ├── about.md │ ├── archives │ │ └── index.md │ ├── post │ │ ├── _index.md │ │ ├── emoji-support.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.md │ │ └── placeholder-text.md │ └── search │ │ └── index.md └── hugo.toml ├── i18n ├── en.toml └── zh-cn.toml ├── images ├── material.png ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── single.html │ ├── taxonomy.html │ └── term.html ├── archives │ └── single.html ├── index.html ├── partials │ ├── anchor.html │ ├── author.html │ ├── backtotop.html │ ├── dark.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── highlight.html │ ├── hulgajs.html │ ├── math.html │ ├── nav.html │ ├── paginator.html │ ├── post-header.html │ ├── post.html │ ├── posts.html │ ├── pwa.html │ └── toc.html └── search │ └── single.html ├── package.json ├── postcss.config.js ├── static ├── css │ ├── fonts │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ └── katex.min.css ├── js │ ├── anchor.min.js │ ├── auto-render.min.js │ ├── katex.min.js │ ├── tocbot.min.js │ └── vanilla-back-to-top.min.js └── manifest.json └── theme.toml /.github/workflows/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/.github/workflows/hugo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/archetypes/about.md -------------------------------------------------------------------------------- /archetypes/archives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/archetypes/archives.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /archetypes/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/archetypes/post.md -------------------------------------------------------------------------------- /archetypes/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/archetypes/search.md -------------------------------------------------------------------------------- /assets/css/bulma-no-dark-mode.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/bulma-no-dark-mode.min.css -------------------------------------------------------------------------------- /assets/css/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/bulma.css -------------------------------------------------------------------------------- /assets/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/custom.scss -------------------------------------------------------------------------------- /assets/css/functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/functions.scss -------------------------------------------------------------------------------- /assets/css/hulga.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/hulga.scss -------------------------------------------------------------------------------- /assets/css/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/monokai.css -------------------------------------------------------------------------------- /assets/css/steamdeck.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/steamdeck.scss -------------------------------------------------------------------------------- /assets/css/toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/css/toc.scss -------------------------------------------------------------------------------- /assets/js/hulga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/js/hulga.js -------------------------------------------------------------------------------- /assets/js/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/js/pwa.js -------------------------------------------------------------------------------- /assets/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/assets/sw.js -------------------------------------------------------------------------------- /exampleSite/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/_index.md -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/archives/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/archives/index.md -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/post/_index.md -------------------------------------------------------------------------------- /exampleSite/content/post/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/post/emoji-support.md -------------------------------------------------------------------------------- /exampleSite/content/post/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/post/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/post/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/post/math-typesetting.md -------------------------------------------------------------------------------- /exampleSite/content/post/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/post/placeholder-text.md -------------------------------------------------------------------------------- /exampleSite/content/search/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/content/search/index.md -------------------------------------------------------------------------------- /exampleSite/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/exampleSite/hugo.toml -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/zh-cn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/i18n/zh-cn.toml -------------------------------------------------------------------------------- /images/material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/images/material.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /layouts/_default/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/_default/term.html -------------------------------------------------------------------------------- /layouts/archives/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/archives/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/anchor.html -------------------------------------------------------------------------------- /layouts/partials/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/author.html -------------------------------------------------------------------------------- /layouts/partials/backtotop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/backtotop.html -------------------------------------------------------------------------------- /layouts/partials/dark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/dark.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/highlight.html -------------------------------------------------------------------------------- /layouts/partials/hulgajs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/hulgajs.html -------------------------------------------------------------------------------- /layouts/partials/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/math.html -------------------------------------------------------------------------------- /layouts/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/nav.html -------------------------------------------------------------------------------- /layouts/partials/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/paginator.html -------------------------------------------------------------------------------- /layouts/partials/post-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/post-header.html -------------------------------------------------------------------------------- /layouts/partials/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/post.html -------------------------------------------------------------------------------- /layouts/partials/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/posts.html -------------------------------------------------------------------------------- /layouts/partials/pwa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/pwa.html -------------------------------------------------------------------------------- /layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/partials/toc.html -------------------------------------------------------------------------------- /layouts/search/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/layouts/search/single.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/postcss.config.js -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /static/css/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /static/css/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/css/katex.min.css -------------------------------------------------------------------------------- /static/js/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/js/anchor.min.js -------------------------------------------------------------------------------- /static/js/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/js/auto-render.min.js -------------------------------------------------------------------------------- /static/js/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/js/katex.min.js -------------------------------------------------------------------------------- /static/js/tocbot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/js/tocbot.min.js -------------------------------------------------------------------------------- /static/js/vanilla-back-to-top.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/js/vanilla-back-to-top.min.js -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/static/manifest.json -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wlh320/hugo-theme-hulga/HEAD/theme.toml --------------------------------------------------------------------------------