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