+
+
+The [Emoji cheat sheet](https://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+***
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+{{< highlight html >}}
+.emoji {
+font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
+}
+{{< /highlight >}}
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
\ No newline at end of file
diff --git a/themes/anubis2/exampleSite/content/post/hidden-post.md b/themes/anubis2/exampleSite/content/post/hidden-post.md
new file mode 100644
index 0000000..96b33ed
--- /dev/null
+++ b/themes/anubis2/exampleSite/content/post/hidden-post.md
@@ -0,0 +1,12 @@
++++
+author = "Junyi"
+title = "Hidden Post"
+date = "2021-12-24"
+description = "Post available only by link"
+tags = [
+ "privacy"
+]
+hidden = true
++++
+
+This is hidden post
\ No newline at end of file
diff --git a/themes/anubis2/exampleSite/content/post/markdown-syntax.md b/themes/anubis2/exampleSite/content/post/markdown-syntax.md
new file mode 100644
index 0000000..49114db
--- /dev/null
+++ b/themes/anubis2/exampleSite/content/post/markdown-syntax.md
@@ -0,0 +1,146 @@
++++
+author = "Hugo Authors"
+title = "Markdown Syntax Guide"
+date = "2019-03-11"
+description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
+tags = [
+ "markdown",
+ "css",
+ "html",
+ "themes",
+]
+categories = [
+ "themes",
+ "syntax",
+]
+aliases = ["migrate-from-jekyl"]
+favorite = true
++++
+
+This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
+
+
+## Headings
+
+The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+#### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+#### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1]
+
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+#### Inline Markdown within tables
+
+| Inline | Markdown | In | Table |
+| ---------- | --------- | ----------------- | ---------- |
+| *italics* | **bold** | ~~strikethrough~~ | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+```html
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+```
+#### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+
+#### Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+{{< /highlight >}}
+
+## List Types
+
+#### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+#### Unordered List
+
+* List item
+* Another item
+* And another item
+
+#### Nested list
+
+* Item
+1. First Sub-item
+2. Second Sub-item
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+GIF is a bitmap image format.
+
+H2O
+
+Xn + Yn = Zn
+
+Press CTRL+ALT+Delete to end the session.
+
+Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
+
diff --git a/themes/anubis2/exampleSite/content/post/math-typesetting.md b/themes/anubis2/exampleSite/content/post/math-typesetting.md
new file mode 100644
index 0000000..a1467e3
--- /dev/null
+++ b/themes/anubis2/exampleSite/content/post/math-typesetting.md
@@ -0,0 +1,45 @@
+---
+author: Hugo Authors
+title: Math Typesetting
+date: 2019-03-08
+description: A brief guide to setup KaTeX
+math: true
+---
+
+Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
+
+
+In this example we will be using [KaTeX](https://katex.org/)
+
+- Create a partial under `/layouts/partials/math.html`
+- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
+- Include the partial in your templates like so:
+
+```
+{{ if or .Params.math .Site.Params.math }}
+{{ partial "math.html" . }}
+{{ end }}
+```
+- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
+- To enable KaTex on a per page basis include the parameter `math: true` in content files.
+
+**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
+{{< math.inline >}}
+{{ if or .Page.Params.math .Site.Params.math }}
+
+
+
+
+{{ end }}
+{{ math.inline >}}
+
+### Examples
+
+Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887… $$
+
+Block math:
+
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
+
diff --git a/themes/anubis2/exampleSite/content/post/placeholder-text.md b/themes/anubis2/exampleSite/content/post/placeholder-text.md
new file mode 100644
index 0000000..29ff09f
--- /dev/null
+++ b/themes/anubis2/exampleSite/content/post/placeholder-text.md
@@ -0,0 +1,58 @@
++++
+author = "Hugo Authors"
+title = "Placeholder Text"
+date = "2019-03-09"
+description = "Lorem Ipsum Dolor Si Amet"
+tags = [
+ "markdown",
+ "text",
+]
++++
+
+Lorem est tota propiore conpellat pectoribus de
+pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice
+subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc
+caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis
+lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus
+silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria
+tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+# Vagus elidunt
+
+
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mane refeci capiebant unda mulcebat
+
+Victa caducifer, malo vulnere contra
+dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere
+furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli
+Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare
+Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert
+ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae
+vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem
+Propoetides **parte**.
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
diff --git a/themes/anubis2/exampleSite/content/post/rich-content.md b/themes/anubis2/exampleSite/content/post/rich-content.md
new file mode 100644
index 0000000..71a36e1
--- /dev/null
+++ b/themes/anubis2/exampleSite/content/post/rich-content.md
@@ -0,0 +1,34 @@
++++
+author = "Hugo Authors"
+title = "Rich Content"
+date = "2019-03-10"
+description = "A brief description of Hugo Shortcodes"
+tags = [
+ "shortcodes",
+ "privacy",
+]
++++
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+
+
+---
+
+## Twitter Simple Shortcode
+
+{{< tweet user="DesignReviewed" id="1085870671291310081" >}}
+
+
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/themes/anubis2/exampleSite/hugo.toml b/themes/anubis2/exampleSite/hugo.toml
new file mode 100644
index 0000000..c91b795
--- /dev/null
+++ b/themes/anubis2/exampleSite/hugo.toml
@@ -0,0 +1,74 @@
+baseURL = "https://example.com"
+languageCode = "en-us"
+title = "Anubis"
+theme = "anubis"
+paginate = 3
+
+disqusShortname = ""
+googleAnalytics = ""
+
+[author]
+name = "Junyi"
+
+[params]
+author = "Junyi"
+description = "Anubis2 is another simple minimalist theme for Hugo blog engine."
+dateFormat = "2006-01-02"
+paginationSinglePost = true
+style = "auto"
+readMore = false
+readNextPosts = 2
+copyCodeButton = true
+rssAsSocialIcon = true
+mathjax = false
+
+# Graphcomment support
+graphcommentId = ""
+
+# utteranc.es support
+utterancesRepo = "" # mandatory
+utterancesTheme = "" # optional
+utterancesIssue = "" # optional
+utterancesLabel = "" # optional
+
+# Giscus support
+GiscusRepo = "" # mandatory
+GiscusRepoId = "" # mandatory
+GiscusCategory = "Announcements" # mandatory
+GiscusCategoryId = "" # mandatory
+GiscusLazyLoad = false # optional
+
+[[params.social]]
+id = "docs"
+url = "https://gohugo.io/documentation/"
+
+[[params.social]]
+id = "github"
+url = "https://github.com/Junyi-99/hugo-theme-anubis2"
+
+[menu]
+
+[[menu.main]]
+identifier = "about"
+name = "About"
+url = "/about/"
+weight = 1
+
+[[menu.main]]
+identifier = "tags"
+name = "Tags"
+url = "/tags/"
+weight = 2
+
+[[menu.main]]
+name = "Archive"
+identifier = "archive"
+url = "/posts/"
+weight = 3
+
+[taxonomies]
+category = "categories"
+tag = "tags"
+
+[markup.goldmark.renderer]
+unsafe = true
diff --git a/themes/anubis2/exampleSite/netlify.toml b/themes/anubis2/exampleSite/netlify.toml
new file mode 100644
index 0000000..8b1ea78
--- /dev/null
+++ b/themes/anubis2/exampleSite/netlify.toml
@@ -0,0 +1,8 @@
+[build]
+publish = "public"
+command = "hugo --gc --minify"
+
+[context.production.environment]
+HUGO_VERSION = "0.115.4"
+HUGO_ENV = "production"
+HUGO_ENABLEGITINFO = "true"
\ No newline at end of file
diff --git a/themes/anubis2/exampleSite/static/fa-icons/docs.svg b/themes/anubis2/exampleSite/static/fa-icons/docs.svg
new file mode 100644
index 0000000..5380074
--- /dev/null
+++ b/themes/anubis2/exampleSite/static/fa-icons/docs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/.gitignore b/themes/anubis2/exampleSiteMultilingual/.gitignore
new file mode 100644
index 0000000..df410c6
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/.gitignore
@@ -0,0 +1,3 @@
+.hugo_build.lock
+public/
+resources/
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/_index.md b/themes/anubis2/exampleSiteMultilingual/content/_index.md
new file mode 100644
index 0000000..6abc75e
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/_index.md
@@ -0,0 +1,4 @@
++++
+author = "Hugo Authors"
++++
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/_index.pl.md b/themes/anubis2/exampleSiteMultilingual/content/_index.pl.md
new file mode 100644
index 0000000..e69de29
diff --git a/themes/anubis2/exampleSiteMultilingual/content/_index.zh.md b/themes/anubis2/exampleSiteMultilingual/content/_index.zh.md
new file mode 100644
index 0000000..e69de29
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about-subpage.md b/themes/anubis2/exampleSiteMultilingual/content/about-subpage.md
new file mode 100644
index 0000000..413f0ea
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about-subpage.md
@@ -0,0 +1,24 @@
+---
+title: "About Subpage"
+description: "About Subpage"
+date: "2019-02-28"
+author: "Hugo Authors"
+slug: /about/subpage
+menu:
+ subpage:
+ identifier: about-subpage-s
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2-s
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+About subpage
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about-subpage.pl.md b/themes/anubis2/exampleSiteMultilingual/content/about-subpage.pl.md
new file mode 100644
index 0000000..413f0ea
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about-subpage.pl.md
@@ -0,0 +1,24 @@
+---
+title: "About Subpage"
+description: "About Subpage"
+date: "2019-02-28"
+author: "Hugo Authors"
+slug: /about/subpage
+menu:
+ subpage:
+ identifier: about-subpage-s
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2-s
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+About subpage
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about-subpage2.md b/themes/anubis2/exampleSiteMultilingual/content/about-subpage2.md
new file mode 100644
index 0000000..372dced
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about-subpage2.md
@@ -0,0 +1,24 @@
+---
+title: "Second About Subpage"
+description: "Second About Subpage"
+date: "2019-02-28"
+author: "Hugo Authors"
+slug: /about/subpage2
+menu:
+ subpage:
+ identifier: about-subpage-s2
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2-s2
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+Second About subpage
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about-subpage2.pl.md b/themes/anubis2/exampleSiteMultilingual/content/about-subpage2.pl.md
new file mode 100644
index 0000000..372dced
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about-subpage2.pl.md
@@ -0,0 +1,24 @@
+---
+title: "Second About Subpage"
+description: "Second About Subpage"
+date: "2019-02-28"
+author: "Hugo Authors"
+slug: /about/subpage2
+menu:
+ subpage:
+ identifier: about-subpage-s2
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2-s2
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+Second About subpage
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about.md b/themes/anubis2/exampleSiteMultilingual/content/about.md
new file mode 100644
index 0000000..438c830
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about.md
@@ -0,0 +1,43 @@
+---
+title: "About"
+description: "Hugo, the world’s fastest framework for building websites"
+date: "2019-02-28"
+aliases: ["about-us","about-hugo","contact"]
+author: "Hugo Authors"
+menu:
+ subpage:
+ identifier: about-subpage
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+Written in Go, Hugo is an open source static site generator available under the [Apache License 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
+
+Hugo makes use of a variety of open source projects including:
+
+* https://github.com/yuin/goldmark
+* https://github.com/alecthomas/chroma
+* https://github.com/muesli/smartcrop
+* https://github.com/spf13/cobra
+* https://github.com/spf13/viper
+
+Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
+
+Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
+
+Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
+
+Learn more and contribute on [GitHub](https://github.com/gohugoio).
+
+
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about.pl.md b/themes/anubis2/exampleSiteMultilingual/content/about.pl.md
new file mode 100644
index 0000000..438c830
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about.pl.md
@@ -0,0 +1,43 @@
+---
+title: "About"
+description: "Hugo, the world’s fastest framework for building websites"
+date: "2019-02-28"
+aliases: ["about-us","about-hugo","contact"]
+author: "Hugo Authors"
+menu:
+ subpage:
+ identifier: about-subpage
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+Written in Go, Hugo is an open source static site generator available under the [Apache License 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
+
+Hugo makes use of a variety of open source projects including:
+
+* https://github.com/yuin/goldmark
+* https://github.com/alecthomas/chroma
+* https://github.com/muesli/smartcrop
+* https://github.com/spf13/cobra
+* https://github.com/spf13/viper
+
+Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
+
+Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
+
+Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
+
+Learn more and contribute on [GitHub](https://github.com/gohugoio).
+
+
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/about.zh.md b/themes/anubis2/exampleSiteMultilingual/content/about.zh.md
new file mode 100644
index 0000000..438c830
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/about.zh.md
@@ -0,0 +1,43 @@
+---
+title: "About"
+description: "Hugo, the world’s fastest framework for building websites"
+date: "2019-02-28"
+aliases: ["about-us","about-hugo","contact"]
+author: "Hugo Authors"
+menu:
+ subpage:
+ identifier: about-subpage
+ parent: about
+ name: About Subpage
+ title: About Subpage
+ url: /about/subpage/
+ weight: 1
+ subpage2:
+ identifier: about-subpage2
+ parent: about
+ name: Second About Subpage
+ title: Second About Subpage
+ url: /about/subpage2/
+ weight: 10
+---
+
+Written in Go, Hugo is an open source static site generator available under the [Apache License 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
+
+Hugo makes use of a variety of open source projects including:
+
+* https://github.com/yuin/goldmark
+* https://github.com/alecthomas/chroma
+* https://github.com/muesli/smartcrop
+* https://github.com/spf13/cobra
+* https://github.com/spf13/viper
+
+Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
+
+Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
+
+Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
+
+Learn more and contribute on [GitHub](https://github.com/gohugoio).
+
+
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/archives.md b/themes/anubis2/exampleSiteMultilingual/content/archives.md
new file mode 100644
index 0000000..98a1ee9
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/archives.md
@@ -0,0 +1,5 @@
+---
+date: 2019-05-28
+type: section
+layout: "archives"
+---
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/homepage/about.md b/themes/anubis2/exampleSiteMultilingual/content/homepage/about.md
new file mode 100644
index 0000000..c2ba680
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/homepage/about.md
@@ -0,0 +1,7 @@
+---
+title: 'Our Difference'
+button: 'About us'
+weight: 2
+---
+
+Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. ipsum dolor sit amet, et essent mediocritatem quo,
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/homepage/index.md b/themes/anubis2/exampleSiteMultilingual/content/homepage/index.md
new file mode 100644
index 0000000..01ffa31
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/homepage/index.md
@@ -0,0 +1,3 @@
+---
+headless : true
+---
diff --git a/themes/anubis2/exampleSiteMultilingual/content/homepage/work.md b/themes/anubis2/exampleSiteMultilingual/content/homepage/work.md
new file mode 100644
index 0000000..f2fee73
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/homepage/work.md
@@ -0,0 +1,7 @@
+---
+title: 'We Help Business Grow'
+button: 'Our Work'
+weight: 1
+---
+
+Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Numquam dolores mel eu, mea docendi omittantur et, mea ea duis erat. Elit melius cu ius. Per ex novum tantas putant, ei his nullam aliquam apeirian. Aeterno quaestio constituto sea an, no eum intellegat assueverit.
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/_index.md b/themes/anubis2/exampleSiteMultilingual/content/post/_index.md
new file mode 100644
index 0000000..7c6bd54
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/_index.md
@@ -0,0 +1,6 @@
++++
+aliases = ["posts","articles","blog","showcase","docs"]
+title = "Posts"
+author = "Hugo Authors"
+tags = ["index"]
++++
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/_index.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/_index.pl.md
new file mode 100644
index 0000000..7c6bd54
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/_index.pl.md
@@ -0,0 +1,6 @@
++++
+aliases = ["posts","articles","blog","showcase","docs"]
+title = "Posts"
+author = "Hugo Authors"
+tags = ["index"]
++++
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/emoji-support.md b/themes/anubis2/exampleSiteMultilingual/content/post/emoji-support.md
new file mode 100644
index 0000000..ecf6c86
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/emoji-support.md
@@ -0,0 +1,47 @@
++++
+author = "Hugo Authors"
+title = "Emoji Support"
+date = "2019-03-05"
+description = "Guide to emoji usage in Hugo"
+tags = [
+ "emoji",
+]
++++
+
+Emoji can be enabled in a Hugo project in a number of ways.
+
+The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
+
+To enable emoji globally, set `enableEmoji` to `true` in your site’s [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
+
+
+
🙈:see_no_evil:🙉:hear_no_evil:🙊:speak_no_evil:
+
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+***
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+{{< highlight html >}}
+.emoji {
+font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
+}
+{{< /highlight >}}
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/emoji-support.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/emoji-support.pl.md
new file mode 100644
index 0000000..ecf6c86
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/emoji-support.pl.md
@@ -0,0 +1,47 @@
++++
+author = "Hugo Authors"
+title = "Emoji Support"
+date = "2019-03-05"
+description = "Guide to emoji usage in Hugo"
+tags = [
+ "emoji",
+]
++++
+
+Emoji can be enabled in a Hugo project in a number of ways.
+
+The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
+
+To enable emoji globally, set `enableEmoji` to `true` in your site’s [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
+
+
+
🙈:see_no_evil:🙉:hear_no_evil:🙊:speak_no_evil:
+
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+***
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+{{< highlight html >}}
+.emoji {
+font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
+}
+{{< /highlight >}}
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/hidden-post.md b/themes/anubis2/exampleSiteMultilingual/content/post/hidden-post.md
new file mode 100644
index 0000000..96b33ed
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/hidden-post.md
@@ -0,0 +1,12 @@
++++
+author = "Junyi"
+title = "Hidden Post"
+date = "2021-12-24"
+description = "Post available only by link"
+tags = [
+ "privacy"
+]
+hidden = true
++++
+
+This is hidden post
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/hidden-post.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/hidden-post.pl.md
new file mode 100644
index 0000000..96b33ed
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/hidden-post.pl.md
@@ -0,0 +1,12 @@
++++
+author = "Junyi"
+title = "Hidden Post"
+date = "2021-12-24"
+description = "Post available only by link"
+tags = [
+ "privacy"
+]
+hidden = true
++++
+
+This is hidden post
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/markdown-syntax.md b/themes/anubis2/exampleSiteMultilingual/content/post/markdown-syntax.md
new file mode 100644
index 0000000..534b67b
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/markdown-syntax.md
@@ -0,0 +1,147 @@
++++
+author = "Hugo Authors"
+title = "Markdown Syntax Guide"
+date = "2019-03-11"
+description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
+tags = [
+ "markdown",
+ "css",
+ "html",
+ "themes",
+]
+categories = [
+ "themes",
+ "syntax",
+]
+authors = ["Junyi-99", "hugo"]
+aliases = ["migrate-from-jekyl"]
+favorite = true
++++
+
+This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
+
+
+## Headings
+
+The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+#### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+#### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1]
+
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+#### Inline Markdown within tables
+
+| Inline | Markdown | In | Table |
+| ---------- | --------- | ----------------- | ---------- |
+| *italics* | **bold** | ~~strikethrough~~ | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+```html
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+```
+#### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+
+#### Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+{{< /highlight >}}
+
+## List Types
+
+#### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+#### Unordered List
+
+* List item
+* Another item
+* And another item
+
+#### Nested list
+
+* Item
+1. First Sub-item
+2. Second Sub-item
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+GIF is a bitmap image format.
+
+H2O
+
+Xn + Yn = Zn
+
+Press CTRL+ALT+Delete to end the session.
+
+Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/markdown-syntax.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/markdown-syntax.pl.md
new file mode 100644
index 0000000..49114db
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/markdown-syntax.pl.md
@@ -0,0 +1,146 @@
++++
+author = "Hugo Authors"
+title = "Markdown Syntax Guide"
+date = "2019-03-11"
+description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
+tags = [
+ "markdown",
+ "css",
+ "html",
+ "themes",
+]
+categories = [
+ "themes",
+ "syntax",
+]
+aliases = ["migrate-from-jekyl"]
+favorite = true
++++
+
+This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
+
+
+## Headings
+
+The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+#### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+#### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1]
+
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+#### Inline Markdown within tables
+
+| Inline | Markdown | In | Table |
+| ---------- | --------- | ----------------- | ---------- |
+| *italics* | **bold** | ~~strikethrough~~ | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+```html
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+```
+#### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+
+#### Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+{{< /highlight >}}
+
+## List Types
+
+#### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+#### Unordered List
+
+* List item
+* Another item
+* And another item
+
+#### Nested list
+
+* Item
+1. First Sub-item
+2. Second Sub-item
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+GIF is a bitmap image format.
+
+H2O
+
+Xn + Yn = Zn
+
+Press CTRL+ALT+Delete to end the session.
+
+Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/math-typesetting.md b/themes/anubis2/exampleSiteMultilingual/content/post/math-typesetting.md
new file mode 100644
index 0000000..a1467e3
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/math-typesetting.md
@@ -0,0 +1,45 @@
+---
+author: Hugo Authors
+title: Math Typesetting
+date: 2019-03-08
+description: A brief guide to setup KaTeX
+math: true
+---
+
+Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
+
+
+In this example we will be using [KaTeX](https://katex.org/)
+
+- Create a partial under `/layouts/partials/math.html`
+- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
+- Include the partial in your templates like so:
+
+```
+{{ if or .Params.math .Site.Params.math }}
+{{ partial "math.html" . }}
+{{ end }}
+```
+- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
+- To enable KaTex on a per page basis include the parameter `math: true` in content files.
+
+**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
+{{< math.inline >}}
+{{ if or .Page.Params.math .Site.Params.math }}
+
+
+
+
+{{ end }}
+{{ math.inline >}}
+
+### Examples
+
+Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887… $$
+
+Block math:
+
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/math-typesetting.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/math-typesetting.pl.md
new file mode 100644
index 0000000..a1467e3
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/math-typesetting.pl.md
@@ -0,0 +1,45 @@
+---
+author: Hugo Authors
+title: Math Typesetting
+date: 2019-03-08
+description: A brief guide to setup KaTeX
+math: true
+---
+
+Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
+
+
+In this example we will be using [KaTeX](https://katex.org/)
+
+- Create a partial under `/layouts/partials/math.html`
+- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
+- Include the partial in your templates like so:
+
+```
+{{ if or .Params.math .Site.Params.math }}
+{{ partial "math.html" . }}
+{{ end }}
+```
+- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
+- To enable KaTex on a per page basis include the parameter `math: true` in content files.
+
+**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
+{{< math.inline >}}
+{{ if or .Page.Params.math .Site.Params.math }}
+
+
+
+
+{{ end }}
+{{ math.inline >}}
+
+### Examples
+
+Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887… $$
+
+Block math:
+
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
+
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/placeholder-text.md b/themes/anubis2/exampleSiteMultilingual/content/post/placeholder-text.md
new file mode 100644
index 0000000..1e9ee4e
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/placeholder-text.md
@@ -0,0 +1,59 @@
++++
+author = "Hugo Authors"
+title = "Placeholder Text"
+date = "2019-03-09"
+description = "Lorem Ipsum Dolor Si Amet"
+tags = [
+ "markdown",
+ "text",
+]
+authors = ["hugo"]
++++
+
+Lorem est tota propiore conpellat pectoribus de
+pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice
+subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc
+caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis
+lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus
+silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria
+tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+# Vagus elidunt
+
+
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mane refeci capiebant unda mulcebat
+
+Victa caducifer, malo vulnere contra
+dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere
+furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli
+Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare
+Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert
+ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae
+vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem
+Propoetides **parte**.
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/placeholder-text.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/placeholder-text.pl.md
new file mode 100644
index 0000000..29ff09f
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/placeholder-text.pl.md
@@ -0,0 +1,58 @@
++++
+author = "Hugo Authors"
+title = "Placeholder Text"
+date = "2019-03-09"
+description = "Lorem Ipsum Dolor Si Amet"
+tags = [
+ "markdown",
+ "text",
+]
++++
+
+Lorem est tota propiore conpellat pectoribus de
+pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice
+subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc
+caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis
+lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus
+silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria
+tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+# Vagus elidunt
+
+
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mane refeci capiebant unda mulcebat
+
+Victa caducifer, malo vulnere contra
+dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere
+furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli
+Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare
+Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert
+ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae
+vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem
+Propoetides **parte**.
+
+{{< css.inline >}}
+
+{{< /css.inline >}}
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/rich-content.md b/themes/anubis2/exampleSiteMultilingual/content/post/rich-content.md
new file mode 100644
index 0000000..71a36e1
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/rich-content.md
@@ -0,0 +1,34 @@
++++
+author = "Hugo Authors"
+title = "Rich Content"
+date = "2019-03-10"
+description = "A brief description of Hugo Shortcodes"
+tags = [
+ "shortcodes",
+ "privacy",
+]
++++
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+
+
+---
+
+## Twitter Simple Shortcode
+
+{{< tweet user="DesignReviewed" id="1085870671291310081" >}}
+
+
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/themes/anubis2/exampleSiteMultilingual/content/post/rich-content.pl.md b/themes/anubis2/exampleSiteMultilingual/content/post/rich-content.pl.md
new file mode 100644
index 0000000..71a36e1
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/content/post/rich-content.pl.md
@@ -0,0 +1,34 @@
++++
+author = "Hugo Authors"
+title = "Rich Content"
+date = "2019-03-10"
+description = "A brief description of Hugo Shortcodes"
+tags = [
+ "shortcodes",
+ "privacy",
+]
++++
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+
+
+---
+
+## Twitter Simple Shortcode
+
+{{< tweet user="DesignReviewed" id="1085870671291310081" >}}
+
+
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/themes/anubis2/exampleSiteMultilingual/hugo.toml b/themes/anubis2/exampleSiteMultilingual/hugo.toml
new file mode 100644
index 0000000..bcc2ce6
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/hugo.toml
@@ -0,0 +1,139 @@
+baseURL = "https://example.com"
+languageCode = "en-us"
+defaultContentLanguage = "en"
+title = "Anubis2"
+theme = "anubis2"
+paginate = 3
+
+disqusShortname = ""
+googleAnalytics = ""
+
+[author]
+name = "Junyi"
+
+[params]
+author = "Junyi"
+description = "Anubis2 is another simple minimalist theme for Hugo blog engine."
+dateFormat = "2006-01-02"
+paginationSinglePost = true
+style = "auto"
+readMore = false
+readNextPosts = 2
+copyCodeButton = true
+rssAsSocialIcon = true
+locale = "en-us"
+mathjax = false
+toc = true
+
+# Graphcomment support
+graphcommentId = ""
+
+# utteranc.es support
+utterancesRepo = "" # mandatory
+utterancesTheme = "" # optional
+utterancesIssue = "" # optional
+utterancesLabel = "" # optional
+
+[[params.social]]
+id = "docs"
+url = "https://gohugo.io/documentation/"
+
+[[params.social]]
+id = "github"
+url = "https://github.com/Junyi-99/hugo-theme-anubis2"
+
+[languages.en]
+languageName = "English"
+
+[[menu.main]]
+identifier = "home"
+name = "Home"
+url = "/"
+weight = 1
+
+[[menu.main]]
+identifier = "about"
+name = "About"
+url = "/about/"
+weight = 2
+
+[[menu.main]]
+identifier = "tags"
+name = "Tags"
+url = "/tags/"
+weight = 3
+
+[[menu.main]]
+name = "Archive"
+identifier = "archive"
+url = "/posts/"
+weight = 4
+
+[languages.pl]
+languageName = "Polski"
+
+
+[[languages.pl.menu.main]]
+identifier = "home"
+name = "Strona Główna"
+url = "/"
+weight = 1
+
+[[languages.pl.menu.main]]
+identifier = "about"
+name = "O Hugo"
+url = "/about/"
+weight = 2
+
+[[languages.pl.menu.main]]
+identifier = "tags"
+name = "Tagi"
+url = "/tags/"
+weight = 3
+
+[[languages.pl.menu.main]]
+identifier = "archive"
+name = "Archiwum"
+url = "/posts/"
+weight = 4
+
+[languages.pl.params]
+languageCode = "pl-pl"
+
+[languages.zh]
+languageName = "Chinese"
+
+[[languages.zh.menu.main]]
+identifier = "home"
+name = "首页"
+url = "/"
+weight = 1
+
+[[languages.zh.menu.main]]
+identifier = "about"
+name = "关于"
+url = "/about/"
+weight = 2
+
+[[languages.zh.menu.main]]
+identifier = "tags"
+name = "标签"
+url = "/tags/"
+weight = 3
+
+[[languages.zh.menu.main]]
+identifier = "archive"
+name = "归档"
+url = "/posts/"
+weight = 4
+
+[languages.zh.params]
+languageCode = "zh-cn"
+
+[taxonomies]
+category = "categories"
+tag = "tags"
+author = "authors"
+
+[markup.goldmark.renderer]
+unsafe = true
diff --git a/themes/anubis2/exampleSiteMultilingual/netlify.toml b/themes/anubis2/exampleSiteMultilingual/netlify.toml
new file mode 100644
index 0000000..8b1ea78
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/netlify.toml
@@ -0,0 +1,8 @@
+[build]
+publish = "public"
+command = "hugo --gc --minify"
+
+[context.production.environment]
+HUGO_VERSION = "0.115.4"
+HUGO_ENV = "production"
+HUGO_ENABLEGITINFO = "true"
\ No newline at end of file
diff --git a/themes/anubis2/exampleSiteMultilingual/static/fa-icons/docs.svg b/themes/anubis2/exampleSiteMultilingual/static/fa-icons/docs.svg
new file mode 100644
index 0000000..5380074
--- /dev/null
+++ b/themes/anubis2/exampleSiteMultilingual/static/fa-icons/docs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/themes/anubis2/go.mod b/themes/anubis2/go.mod
new file mode 100644
index 0000000..c26ea37
--- /dev/null
+++ b/themes/anubis2/go.mod
@@ -0,0 +1,3 @@
+module github.com/Junyi-99/hugo-theme-anubis2
+
+go 1.18
diff --git a/themes/anubis2/i18n/bn.yaml b/themes/anubis2/i18n/bn.yaml
new file mode 100644
index 0000000..5bdcb1a
--- /dev/null
+++ b/themes/anubis2/i18n/bn.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "সৌজন্যে"
+
+theme:
+ other: "থিম"
+
+readMore:
+ other: "আরও"
+
+toNewPosts:
+ other: "নতুন প্রচ্ছদ"
+
+toOldPosts:
+ other: "পুরানো প্রচ্ছদ"
+
+tag:
+ other: "বিভাগ"
+
+Tags:
+ other: "বিভাগ"
+
+Posts:
+ other: "প্রচ্ছদ"
+
+category:
+ other: "শ্রেণী"
+
+Categories:
+ other: "শ্রেণী"
+
+toAllTags:
+ other: "বিভাগ সমূহ"
+
+toAllCategories:
+ other: "শ্রেণী সমূহ"
+
+skipToContent:
+ other: "প্রচ্ছদে প্রবেশ করুন"
+
+readNext:
+ other: "পরের প্রচ্ছদ"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/de.yaml b/themes/anubis2/i18n/de.yaml
new file mode 100644
index 0000000..16108e1
--- /dev/null
+++ b/themes/anubis2/i18n/de.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "Erstellt mit"
+
+theme:
+ other: "Theme"
+
+readMore:
+ other: "Weiterlesen"
+
+toNewPosts:
+ other: "Zu neueren Beiträgen"
+
+toOldPosts:
+ other: "Zu älteren Beiträgen"
+
+tag:
+ other: "Schlagwort"
+
+Tags:
+ other: "Schlagwörter"
+
+Posts:
+ other: "Beiträge"
+
+category:
+ other: "Kategorie"
+
+Categories:
+ other: "Kategorien"
+
+toAllTags:
+ other: "Zu allen Schlagwörtern"
+
+toAllCategories:
+ other: "Zu allen Kategorien"
+
+skipToContent:
+ other: "Zum Hauptinhalt springen"
+
+readNext:
+ other: "Weiter lesen"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/en.yaml b/themes/anubis2/i18n/en.yaml
new file mode 100644
index 0000000..47a60ff
--- /dev/null
+++ b/themes/anubis2/i18n/en.yaml
@@ -0,0 +1,59 @@
+powered:
+ other: "Powered by"
+
+theme:
+ other: "theme"
+
+readMore:
+ other: "Read more"
+
+toNewPosts:
+ other: "to new posts"
+
+toOldPosts:
+ other: "to old posts"
+
+tag:
+ other: "tag"
+
+author:
+ other: "author"
+
+Tags:
+ other: "Tags"
+
+Posts:
+ other: "Posts"
+
+category:
+ other: "category"
+
+Categories:
+ other: "Categories"
+
+toAllTags:
+ other: "to all tags"
+
+toAllAuthors:
+ other: "to all authors"
+
+toAllCategories:
+ other: "to all categories"
+
+skipToContent:
+ other: "Skip to main content"
+
+readNext:
+ other: "Read next"
+
+lastMod:
+ other: "Last modified:"
+
+toNewPost:
+ other: "to new post"
+
+toOldPost:
+ other: "to old post"
+
+videoIsNotSupported:
+ other: "Your browser does not support video"
diff --git a/themes/anubis2/i18n/es.yaml b/themes/anubis2/i18n/es.yaml
new file mode 100644
index 0000000..e350076
--- /dev/null
+++ b/themes/anubis2/i18n/es.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "Powered by"
+
+theme:
+ other: "tema"
+
+readMore:
+ other: "Leer más"
+
+toNewPosts:
+ other: "a nuevos posts"
+
+toOldPosts:
+ other: "a posts antiguos"
+
+tag:
+ other: "etiqueta"
+
+Tags:
+ other: "Etiquetas"
+
+Posts:
+ other: "Posts"
+
+category:
+ other: "categoría"
+
+Categories:
+ other: "Categorías"
+
+toAllTags:
+ other: "a todas las etiquetas"
+
+toAllCategories:
+ other: "a todas las categorías"
+
+skipToContent:
+ other: "Saltar al contenido principal"
+
+readNext:
+ other: "Leer el siguiente"
diff --git a/themes/anubis2/i18n/fr.yaml b/themes/anubis2/i18n/fr.yaml
new file mode 100644
index 0000000..018cb5f
--- /dev/null
+++ b/themes/anubis2/i18n/fr.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "Propulsé par"
+
+theme:
+ other: "thème"
+
+readMore:
+ other: "Lire la suite"
+
+toNewPosts:
+ other: "articles + récents"
+
+toOldPosts:
+ other: "articles + anciens"
+
+tag:
+ other: "étiquette"
+
+Tags:
+ other: "Étiquettes"
+
+Posts:
+ other: "Articles"
+
+category:
+ other: "catégorie"
+
+Categories:
+ other: "Catégories"
+
+toAllTags:
+ other: "vers toutes les étiquettes"
+
+toAllCategories:
+ other: "vers toutes les catégories"
+
+skipToContent:
+ other: "Aller au contenu"
+
+readNext:
+ other: "Lire la suite"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/id.yaml b/themes/anubis2/i18n/id.yaml
new file mode 100644
index 0000000..8ea19a6
--- /dev/null
+++ b/themes/anubis2/i18n/id.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "Dipersembahkan oleh"
+
+theme:
+ other: "tema"
+
+readMore:
+ other: "Selengkapnya.."
+
+toNewPosts:
+ other: "ke postingan baru"
+
+toOldPosts:
+ other: "ke postingan lama"
+
+tag:
+ other: "tag"
+
+Tags:
+ other: "Tags"
+
+Posts:
+ other: "Tulisan"
+
+category:
+ other: "kategori"
+
+Categories:
+ other: "Kategori"
+
+toAllTags:
+ other: "Lihat semua tags"
+
+toAllCategories:
+ other: "Lihat semua kategori"
+
+skipToContent:
+ other: "Lompat ke konten"
+
+readNext:
+ other: "Baca Selanjutnya"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/pl.yaml b/themes/anubis2/i18n/pl.yaml
new file mode 100644
index 0000000..d9dc79d
--- /dev/null
+++ b/themes/anubis2/i18n/pl.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "Zasilany przez"
+
+theme:
+ other: "motyw"
+
+readMore:
+ other: "Czytaj dalej"
+
+toNewPosts:
+ other: "poprzednia strona"
+
+toOldPosts:
+ other: "następna strona"
+
+tag:
+ other: "tag"
+
+Tags:
+ other: "Tagi"
+
+Posts:
+ other: "Posty"
+
+category:
+ other: "kategoria"
+
+Categories:
+ other: "Kategorie"
+
+toAllTags:
+ other: "wszystkie tagi"
+
+toAllCategories:
+ other: "wszystkie kategorie"
+
+skipToContent:
+ other: "Przejdź do głównej zawartości"
+
+readNext:
+ other: "Czytaj dalej"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/pt.yaml b/themes/anubis2/i18n/pt.yaml
new file mode 100644
index 0000000..fe9fa8e
--- /dev/null
+++ b/themes/anubis2/i18n/pt.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "Criado com"
+
+theme:
+ other: "tema"
+
+readMore:
+ other: "Ler mais"
+
+toNewPosts:
+ other: "novos posts"
+
+toOldPosts:
+ other: "posts anteriores"
+
+tag:
+ other: "tag"
+
+Tags:
+ other: "Tags"
+
+Posts:
+ other: "Posts"
+
+category:
+ other: "categoria"
+
+Categories:
+ other: "Categorias"
+
+toAllTags:
+ other: "ver todas as tags"
+
+toAllCategories:
+ other: "ver todas as categorias"
+
+skipToContent:
+ other: "Pular para o conteúdo principal"
+
+readNext:
+ other: "Leia a seguir"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/ru.yaml b/themes/anubis2/i18n/ru.yaml
new file mode 100644
index 0000000..66cd083
--- /dev/null
+++ b/themes/anubis2/i18n/ru.yaml
@@ -0,0 +1,56 @@
+powered:
+ other: "Движок"
+
+theme:
+ other: "тема"
+
+readMore:
+ other: "Читать дальше"
+
+toNewPosts:
+ other: "к новым записям"
+
+toOldPosts:
+ other: "к старым записям"
+
+tag:
+ other: "тег"
+
+Tags:
+ other: "Теги"
+
+Posts:
+ other: "Записи"
+
+category:
+ other: "Категория"
+
+Categories:
+ other: "Категории"
+
+toAllTags:
+ other: "к списку тегов"
+
+toAllAuthors:
+ other: "к списку авторов"
+
+toAllCategories:
+ other: "к списку категорий"
+
+skipToContent:
+ other: "Перейти к основному контенту"
+
+readNext:
+ other: "Читать далее"
+
+lastMod:
+ other: "Отредактировано:"
+
+toNewPost:
+ other: "к новой записи"
+
+toOldPost:
+ other: "к старой записи"
+
+videoIsNotSupported:
+ other: "Ваш браузер не поддерживает видео"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/tw.yaml b/themes/anubis2/i18n/tw.yaml
new file mode 100644
index 0000000..5a42c8c
--- /dev/null
+++ b/themes/anubis2/i18n/tw.yaml
@@ -0,0 +1,41 @@
+powered:
+ other: "提供"
+
+theme:
+ other: "主題"
+
+readMore:
+ other: "繼續閱讀"
+
+toNewPosts:
+ other: "新文章"
+
+toOldPosts:
+ other: "舊文章"
+
+tag:
+ other: "標籤"
+
+Tags:
+ other: "標籤"
+
+Posts:
+ other: "文章"
+
+category:
+ other: "類別"
+
+Categories:
+ other: "類別"
+
+toAllTags:
+ other: "所有標籤"
+
+toAllCategories:
+ other: "所有類別"
+
+skipToContent:
+ other: "跳至內容"
+
+readNext:
+ other: "閱讀下一篇"
\ No newline at end of file
diff --git a/themes/anubis2/i18n/zh-cn.yaml b/themes/anubis2/i18n/zh-cn.yaml
new file mode 100644
index 0000000..caeffc8
--- /dev/null
+++ b/themes/anubis2/i18n/zh-cn.yaml
@@ -0,0 +1,47 @@
+powered:
+ other: "提供"
+
+theme:
+ other: "主題"
+
+readMore:
+ other: "继续阅读"
+
+toNewPosts:
+ other: "新文章"
+
+toOldPosts:
+ other: "旧文章"
+
+tag:
+ other: "标签"
+
+author:
+ other: "作者"
+
+Tags:
+ other: "标签"
+
+Posts:
+ other: "文章"
+
+category:
+ other: "类别"
+
+Categories:
+ other: "类别"
+
+toAllTags:
+ other: "所有标签"
+
+toAllAuthors:
+ other: "所有作者"
+
+toAllCategories:
+ other: "所有类别"
+
+skipToContent:
+ other: "跳至内容"
+
+readNext:
+ other: "继续阅读"
diff --git a/themes/anubis2/images/screenshot.png b/themes/anubis2/images/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a05592c5d6c5e6691c7b9ffa49dacf47a388a7e
GIT binary patch
literal 309587
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