├── .editorconfig ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── screenshot.png ├── settings.yaml ├── src ├── alpine-data │ └── upvote.ts ├── css │ ├── style.scss │ └── tailwind.css ├── libs │ └── github-markdown-css │ │ ├── github-markdown-dark.css │ │ ├── github-markdown-light.css │ │ ├── github-markdown.css │ │ ├── license │ │ ├── package.json │ │ └── readme.md ├── main.ts └── vite-env.d.ts ├── tailwind.config.js ├── templates ├── archives.html ├── assets │ ├── dist │ │ ├── main.iife.js │ │ └── style.css │ ├── libs │ │ └── katex │ │ │ ├── README.md │ │ │ ├── contrib │ │ │ ├── auto-render.js │ │ │ ├── auto-render.min.js │ │ │ ├── auto-render.mjs │ │ │ ├── copy-tex.css │ │ │ ├── copy-tex.js │ │ │ ├── copy-tex.min.css │ │ │ ├── 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 │ └── photo │ │ ├── css │ │ ├── images │ │ │ ├── arrow-small.svg │ │ │ ├── arrow.svg │ │ │ ├── close-small-alt.svg │ │ │ ├── close-small.svg │ │ │ ├── close.svg │ │ │ ├── open-small.svg │ │ │ ├── open.svg │ │ │ └── spinner.svg │ │ ├── main.css │ │ └── noscript.css │ │ └── js │ │ ├── jquery.min.js │ │ ├── main.js │ │ └── skel.min.js ├── categories.html ├── category.html ├── index.html ├── links.html ├── module │ ├── layout.html │ ├── page-heading.html │ ├── page-top.html │ ├── post-entry.html │ ├── sidebar.html │ ├── social-list.html │ └── styles.html ├── moments.html ├── page.html ├── photos.html ├── post.html ├── search.html ├── tag.html └── tags.html ├── theme.yaml ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/prettier.config.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/screenshot.png -------------------------------------------------------------------------------- /settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/settings.yaml -------------------------------------------------------------------------------- /src/alpine-data/upvote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/alpine-data/upvote.ts -------------------------------------------------------------------------------- /src/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/css/style.scss -------------------------------------------------------------------------------- /src/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/css/tailwind.css -------------------------------------------------------------------------------- /src/libs/github-markdown-css/github-markdown-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/libs/github-markdown-css/github-markdown-dark.css -------------------------------------------------------------------------------- /src/libs/github-markdown-css/github-markdown-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/libs/github-markdown-css/github-markdown-light.css -------------------------------------------------------------------------------- /src/libs/github-markdown-css/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/libs/github-markdown-css/github-markdown.css -------------------------------------------------------------------------------- /src/libs/github-markdown-css/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/libs/github-markdown-css/license -------------------------------------------------------------------------------- /src/libs/github-markdown-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/libs/github-markdown-css/package.json -------------------------------------------------------------------------------- /src/libs/github-markdown-css/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/libs/github-markdown-css/readme.md -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/archives.html -------------------------------------------------------------------------------- /templates/assets/dist/main.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/dist/main.iife.js -------------------------------------------------------------------------------- /templates/assets/dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/dist/style.css -------------------------------------------------------------------------------- /templates/assets/libs/katex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/README.md -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/auto-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/auto-render.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/auto-render.min.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/auto-render.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/auto-render.mjs -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/copy-tex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/copy-tex.css -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/copy-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/copy-tex.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/copy-tex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/copy-tex.min.css -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/copy-tex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/copy-tex.min.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/copy-tex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/copy-tex.mjs -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/mathtex-script-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/mathtex-script-type.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/mathtex-script-type.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/mathtex-script-type.min.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/mathtex-script-type.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/mathtex-script-type.mjs -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/mhchem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/mhchem.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/mhchem.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/mhchem.min.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/mhchem.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/mhchem.mjs -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/render-a11y-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/render-a11y-string.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/render-a11y-string.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/render-a11y-string.min.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/contrib/render-a11y-string.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/contrib/render-a11y-string.mjs -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /templates/assets/libs/katex/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /templates/assets/libs/katex/katex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/katex.css -------------------------------------------------------------------------------- /templates/assets/libs/katex/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/katex.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/katex.min.css -------------------------------------------------------------------------------- /templates/assets/libs/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/katex.min.js -------------------------------------------------------------------------------- /templates/assets/libs/katex/katex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/libs/katex/katex.mjs -------------------------------------------------------------------------------- /templates/assets/photo/css/images/arrow-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/arrow-small.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/arrow.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/close-small-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/close-small-alt.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/close-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/close-small.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/close.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/open-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/open-small.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/open.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/images/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/images/spinner.svg -------------------------------------------------------------------------------- /templates/assets/photo/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/main.css -------------------------------------------------------------------------------- /templates/assets/photo/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/css/noscript.css -------------------------------------------------------------------------------- /templates/assets/photo/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/js/jquery.min.js -------------------------------------------------------------------------------- /templates/assets/photo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/js/main.js -------------------------------------------------------------------------------- /templates/assets/photo/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/assets/photo/js/skel.min.js -------------------------------------------------------------------------------- /templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/categories.html -------------------------------------------------------------------------------- /templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/category.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/links.html -------------------------------------------------------------------------------- /templates/module/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/layout.html -------------------------------------------------------------------------------- /templates/module/page-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/page-heading.html -------------------------------------------------------------------------------- /templates/module/page-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/page-top.html -------------------------------------------------------------------------------- /templates/module/post-entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/post-entry.html -------------------------------------------------------------------------------- /templates/module/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/sidebar.html -------------------------------------------------------------------------------- /templates/module/social-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/social-list.html -------------------------------------------------------------------------------- /templates/module/styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/module/styles.html -------------------------------------------------------------------------------- /templates/moments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/moments.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/page.html -------------------------------------------------------------------------------- /templates/photos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/photos.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/post.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/tag.html -------------------------------------------------------------------------------- /templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/templates/tags.html -------------------------------------------------------------------------------- /theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/theme.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-theme-anatole/HEAD/vite.config.ts --------------------------------------------------------------------------------