├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── css │ ├── dark.css │ ├── light.css │ └── main.css ├── images │ └── link.svg └── js │ └── copy-code.js ├── data └── social.yaml ├── exampleSite ├── .gitignore ├── content │ ├── _index.md │ ├── about-subpage.md │ ├── about-subpage2.md │ ├── about.md │ ├── archives.md │ ├── homepage │ │ ├── about.md │ │ ├── index.md │ │ └── work.md │ └── post │ │ ├── _index.md │ │ ├── emoji-support.md │ │ ├── hidden-post.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.md │ │ ├── placeholder-text.md │ │ └── rich-content.md ├── hugo.toml ├── netlify.toml └── static │ └── fa-icons │ └── docs.svg ├── exampleSiteMultilingual ├── .gitignore ├── content │ ├── _index.md │ ├── _index.pl.md │ ├── about-subpage.md │ ├── about-subpage.pl.md │ ├── about-subpage2.md │ ├── about-subpage2.pl.md │ ├── about.md │ ├── about.pl.md │ ├── archives.md │ ├── homepage │ │ ├── about.md │ │ ├── index.md │ │ └── work.md │ └── post │ │ ├── _index.md │ │ ├── _index.pl.md │ │ ├── emoji-support.md │ │ ├── emoji-support.pl.md │ │ ├── hidden-post.md │ │ ├── hidden-post.pl.md │ │ ├── markdown-syntax.md │ │ ├── markdown-syntax.pl.md │ │ ├── math-typesetting.md │ │ ├── math-typesetting.pl.md │ │ ├── placeholder-text.md │ │ ├── placeholder-text.pl.md │ │ ├── rich-content.md │ │ └── rich-content.pl.md ├── hugo.toml ├── netlify.toml └── static │ └── fa-icons │ └── docs.svg ├── go.mod ├── i18n ├── bn.yaml ├── de.yaml ├── en.yaml ├── es.yaml ├── fr.yaml ├── id.yaml ├── pl.yaml ├── pt.yaml ├── ru.yaml ├── tw.yaml └── zh-cn.yaml ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-heading.html │ ├── baseof.html │ ├── list.html │ ├── rss.xml │ ├── single.html │ ├── sitemap.xml │ ├── taxonomy.html │ └── terms.html ├── index.html ├── partials │ ├── comments.html │ ├── disqus.html │ ├── fa-icons │ │ ├── email.svg │ │ ├── facebook.svg │ │ ├── github.svg │ │ ├── halfcircle.svg │ │ ├── instagram.svg │ │ ├── linkedin.svg │ │ ├── mastodon.svg │ │ ├── patreon.svg │ │ ├── reddit.svg │ │ ├── rss.svg │ │ ├── snapchat.svg │ │ ├── soundcloud.svg │ │ ├── spotify.svg │ │ ├── telegram.svg │ │ ├── twitch.svg │ │ ├── twitter.svg │ │ ├── vk.svg │ │ └── youtube.svg │ ├── favicons.html │ ├── font-awesome.html │ ├── footer-extra.html │ ├── footer.html │ ├── giscus.html │ ├── graphcomment.html │ ├── h-card.html │ ├── head-extra.html │ ├── head.html │ ├── header-extra.html │ ├── header.html │ ├── isso.html │ ├── language-switcher.html │ ├── mathjax_support.html │ ├── pagination-extra.html │ ├── pagination.html │ ├── post-info.html │ ├── post-language-switcher.html │ ├── post-pagination.html │ ├── post-summary.html │ ├── resource.html │ ├── site-title.html │ ├── social.html │ ├── theme-switcher.html │ ├── title.html │ ├── toc.html │ ├── umami_analytics.html │ └── utterances.html ├── robots.txt └── shortcodes │ └── video.html ├── netlify.toml └── theme.toml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/assets/css/dark.css -------------------------------------------------------------------------------- /assets/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/assets/css/light.css -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/images/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/assets/images/link.svg -------------------------------------------------------------------------------- /assets/js/copy-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/assets/js/copy-code.js -------------------------------------------------------------------------------- /data/social.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/data/social.yaml -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | public/ 3 | resources/ -------------------------------------------------------------------------------- /exampleSite/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/_index.md -------------------------------------------------------------------------------- /exampleSite/content/about-subpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/about-subpage.md -------------------------------------------------------------------------------- /exampleSite/content/about-subpage2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/about-subpage2.md -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/archives.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2019-05-28 3 | type: section 4 | layout: "archives" 5 | --- -------------------------------------------------------------------------------- /exampleSite/content/homepage/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/homepage/about.md -------------------------------------------------------------------------------- /exampleSite/content/homepage/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless : true 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/homepage/work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/homepage/work.md -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/_index.md -------------------------------------------------------------------------------- /exampleSite/content/post/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/emoji-support.md -------------------------------------------------------------------------------- /exampleSite/content/post/hidden-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/hidden-post.md -------------------------------------------------------------------------------- /exampleSite/content/post/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/post/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/math-typesetting.md -------------------------------------------------------------------------------- /exampleSite/content/post/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/placeholder-text.md -------------------------------------------------------------------------------- /exampleSite/content/post/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/content/post/rich-content.md -------------------------------------------------------------------------------- /exampleSite/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/hugo.toml -------------------------------------------------------------------------------- /exampleSite/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/netlify.toml -------------------------------------------------------------------------------- /exampleSite/static/fa-icons/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSite/static/fa-icons/docs.svg -------------------------------------------------------------------------------- /exampleSiteMultilingual/.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | public/ 3 | resources/ -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/_index.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/_index.pl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/about-subpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/about-subpage.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/about-subpage.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/about-subpage.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/about-subpage2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/about-subpage2.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/about-subpage2.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/about-subpage2.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/about.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/about.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/about.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/archives.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2019-05-28 3 | type: section 4 | layout: "archives" 5 | --- -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/homepage/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/homepage/about.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/homepage/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless : true 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/homepage/work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/homepage/work.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/_index.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/_index.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/_index.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/emoji-support.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/emoji-support.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/emoji-support.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/hidden-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/hidden-post.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/hidden-post.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/hidden-post.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/markdown-syntax.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/markdown-syntax.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/math-typesetting.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/math-typesetting.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/math-typesetting.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/placeholder-text.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/placeholder-text.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/placeholder-text.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/rich-content.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/content/post/rich-content.pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/content/post/rich-content.pl.md -------------------------------------------------------------------------------- /exampleSiteMultilingual/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/hugo.toml -------------------------------------------------------------------------------- /exampleSiteMultilingual/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/netlify.toml -------------------------------------------------------------------------------- /exampleSiteMultilingual/static/fa-icons/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/exampleSiteMultilingual/static/fa-icons/docs.svg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Mitrichius/hugo-theme-anubis 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /i18n/bn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/bn.yaml -------------------------------------------------------------------------------- /i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/de.yaml -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/es.yaml -------------------------------------------------------------------------------- /i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/fr.yaml -------------------------------------------------------------------------------- /i18n/id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/id.yaml -------------------------------------------------------------------------------- /i18n/pl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/pl.yaml -------------------------------------------------------------------------------- /i18n/pt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/pt.yaml -------------------------------------------------------------------------------- /i18n/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/ru.yaml -------------------------------------------------------------------------------- /i18n/tw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/tw.yaml -------------------------------------------------------------------------------- /i18n/zh-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/i18n/zh-cn.yaml -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/rss.xml -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/sitemap.xml -------------------------------------------------------------------------------- /layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/comments.html -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- 1 | {{ template "_internal/disqus.html" . }} 2 | -------------------------------------------------------------------------------- /layouts/partials/fa-icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/email.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/facebook.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/github.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/halfcircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/halfcircle.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/instagram.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/linkedin.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/mastodon.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/patreon.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/reddit.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/rss.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/snapchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/snapchat.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/soundcloud.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/spotify.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/telegram.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/twitch.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/twitter.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/vk.svg -------------------------------------------------------------------------------- /layouts/partials/fa-icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/fa-icons/youtube.svg -------------------------------------------------------------------------------- /layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/favicons.html -------------------------------------------------------------------------------- /layouts/partials/font-awesome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/font-awesome.html -------------------------------------------------------------------------------- /layouts/partials/footer-extra.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/giscus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/giscus.html -------------------------------------------------------------------------------- /layouts/partials/graphcomment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/graphcomment.html -------------------------------------------------------------------------------- /layouts/partials/h-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/h-card.html -------------------------------------------------------------------------------- /layouts/partials/head-extra.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header-extra.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/isso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/isso.html -------------------------------------------------------------------------------- /layouts/partials/language-switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/language-switcher.html -------------------------------------------------------------------------------- /layouts/partials/mathjax_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/mathjax_support.html -------------------------------------------------------------------------------- /layouts/partials/pagination-extra.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /layouts/partials/post-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/post-info.html -------------------------------------------------------------------------------- /layouts/partials/post-language-switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/post-language-switcher.html -------------------------------------------------------------------------------- /layouts/partials/post-pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/post-pagination.html -------------------------------------------------------------------------------- /layouts/partials/post-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/post-summary.html -------------------------------------------------------------------------------- /layouts/partials/resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/resource.html -------------------------------------------------------------------------------- /layouts/partials/site-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/site-title.html -------------------------------------------------------------------------------- /layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/social.html -------------------------------------------------------------------------------- /layouts/partials/theme-switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/theme-switcher.html -------------------------------------------------------------------------------- /layouts/partials/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/title.html -------------------------------------------------------------------------------- /layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/toc.html -------------------------------------------------------------------------------- /layouts/partials/umami_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/umami_analytics.html -------------------------------------------------------------------------------- /layouts/partials/utterances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/partials/utterances.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /layouts/shortcodes/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/layouts/shortcodes/video.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/netlify.toml -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mitrichius/hugo-theme-anubis/HEAD/theme.toml --------------------------------------------------------------------------------