├── .github └── workflows │ └── hugo.yml ├── .gitignore ├── LICENSE ├── README.md ├── archetypes └── default.md ├── exampleSite ├── config.toml └── content │ ├── about.md │ ├── essays │ ├── What-Is-Hugo.md │ ├── _index.md │ └── add-picture-in-post │ │ ├── TEIDE.JPG │ │ ├── index.md │ │ └── markdown-30x20.png │ └── posts │ ├── _index.md │ ├── emoji-support.md │ ├── latex-support.md │ ├── markdown-syntax.md │ ├── math-typesetting.md │ ├── placeholder-text.md │ ├── rich-content.md │ └── test.md ├── images ├── screenshot.png └── tn.png ├── layouts ├── _markup │ ├── render-codeblock-mermaid.html │ └── render-heading.html ├── _partials │ ├── comment.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── pagination.html │ ├── side-categories.html │ ├── side-recent.html │ └── side-tags.html ├── baseof.html ├── index.html ├── robots.txt ├── rss.xml ├── section.html ├── single.html ├── taxonomy.html └── term.html ├── static ├── css │ ├── style.css │ └── syntax.css ├── js │ ├── copy-code-block.js │ └── mermaid-9.0.0.min.js └── lib │ ├── icofont │ ├── demo.html │ ├── fonts │ │ ├── icofont.eot │ │ ├── icofont.svg │ │ ├── icofont.ttf │ │ ├── icofont.woff │ │ └── icofont.woff2 │ ├── icofont.css │ └── icofont.min.css │ └── katex │ ├── README.md │ ├── contrib │ ├── auto-render.js │ ├── auto-render.min.js │ ├── auto-render.mjs │ ├── copy-tex.js │ ├── copy-tex.min.js │ ├── copy-tex.mjs │ ├── mathtex-script-type.js │ ├── mathtex-script-type.min.js │ ├── mathtex-script-type.mjs │ ├── mhchem.js │ ├── mhchem.min.js │ ├── mhchem.mjs │ ├── render-a11y-string.js │ ├── render-a11y-string.min.js │ └── render-a11y-string.mjs │ ├── 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.css │ ├── katex.js │ ├── katex.min.css │ ├── katex.min.js │ └── katex.mjs └── theme.toml /.github/workflows/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/.github/workflows/hugo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/essays/What-Is-Hugo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/essays/What-Is-Hugo.md -------------------------------------------------------------------------------- /exampleSite/content/essays/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/essays/_index.md -------------------------------------------------------------------------------- /exampleSite/content/essays/add-picture-in-post/TEIDE.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/essays/add-picture-in-post/TEIDE.JPG -------------------------------------------------------------------------------- /exampleSite/content/essays/add-picture-in-post/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/essays/add-picture-in-post/index.md -------------------------------------------------------------------------------- /exampleSite/content/essays/add-picture-in-post/markdown-30x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/essays/add-picture-in-post/markdown-30x20.png -------------------------------------------------------------------------------- /exampleSite/content/posts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/_index.md -------------------------------------------------------------------------------- /exampleSite/content/posts/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/emoji-support.md -------------------------------------------------------------------------------- /exampleSite/content/posts/latex-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/latex-support.md -------------------------------------------------------------------------------- /exampleSite/content/posts/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/posts/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/math-typesetting.md -------------------------------------------------------------------------------- /exampleSite/content/posts/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/placeholder-text.md -------------------------------------------------------------------------------- /exampleSite/content/posts/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/rich-content.md -------------------------------------------------------------------------------- /exampleSite/content/posts/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/exampleSite/content/posts/test.md -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_markup/render-codeblock-mermaid.html -------------------------------------------------------------------------------- /layouts/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_partials/comment.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /layouts/_partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/footer.html -------------------------------------------------------------------------------- /layouts/_partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/head.html -------------------------------------------------------------------------------- /layouts/_partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/header.html -------------------------------------------------------------------------------- /layouts/_partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/pagination.html -------------------------------------------------------------------------------- /layouts/_partials/side-categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/side-categories.html -------------------------------------------------------------------------------- /layouts/_partials/side-recent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/side-recent.html -------------------------------------------------------------------------------- /layouts/_partials/side-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/_partials/side-tags.html -------------------------------------------------------------------------------- /layouts/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/baseof.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /layouts/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/rss.xml -------------------------------------------------------------------------------- /layouts/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/section.html -------------------------------------------------------------------------------- /layouts/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/single.html -------------------------------------------------------------------------------- /layouts/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/taxonomy.html -------------------------------------------------------------------------------- /layouts/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/layouts/term.html -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/css/syntax.css -------------------------------------------------------------------------------- /static/js/copy-code-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/js/copy-code-block.js -------------------------------------------------------------------------------- /static/js/mermaid-9.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/js/mermaid-9.0.0.min.js -------------------------------------------------------------------------------- /static/lib/icofont/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/demo.html -------------------------------------------------------------------------------- /static/lib/icofont/fonts/icofont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/fonts/icofont.eot -------------------------------------------------------------------------------- /static/lib/icofont/fonts/icofont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/fonts/icofont.svg -------------------------------------------------------------------------------- /static/lib/icofont/fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/fonts/icofont.ttf -------------------------------------------------------------------------------- /static/lib/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /static/lib/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /static/lib/icofont/icofont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/icofont.css -------------------------------------------------------------------------------- /static/lib/icofont/icofont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/icofont/icofont.min.css -------------------------------------------------------------------------------- /static/lib/katex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/README.md -------------------------------------------------------------------------------- /static/lib/katex/contrib/auto-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/auto-render.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/auto-render.min.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/auto-render.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/auto-render.mjs -------------------------------------------------------------------------------- /static/lib/katex/contrib/copy-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/copy-tex.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/copy-tex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/copy-tex.min.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/copy-tex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/copy-tex.mjs -------------------------------------------------------------------------------- /static/lib/katex/contrib/mathtex-script-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/mathtex-script-type.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/mathtex-script-type.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/mathtex-script-type.min.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/mathtex-script-type.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/mathtex-script-type.mjs -------------------------------------------------------------------------------- /static/lib/katex/contrib/mhchem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/mhchem.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/mhchem.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/mhchem.min.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/mhchem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/mhchem.mjs -------------------------------------------------------------------------------- /static/lib/katex/contrib/render-a11y-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/render-a11y-string.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/render-a11y-string.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/render-a11y-string.min.js -------------------------------------------------------------------------------- /static/lib/katex/contrib/render-a11y-string.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/contrib/render-a11y-string.mjs -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /static/lib/katex/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/katex.css -------------------------------------------------------------------------------- /static/lib/katex/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/katex.js -------------------------------------------------------------------------------- /static/lib/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/katex.min.css -------------------------------------------------------------------------------- /static/lib/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/katex.min.js -------------------------------------------------------------------------------- /static/lib/katex/katex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/static/lib/katex/katex.mjs -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafee98/hugo-theme-flat/HEAD/theme.toml --------------------------------------------------------------------------------