Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWang Chucheng <me@wangchucheng.com>2021-01-28 12:36:32 +0300
committerWang Chucheng <me@wangchucheng.com>2021-01-28 12:36:32 +0300
commitef43e8347388e20a96e2472088623b8901da21bb (patch)
tree372da19414da4905e1c1dacd195354dc0f026aa3
parent13d24aee7a87924442254f0efc7011630054ba14 (diff)
refactor: migrate from toml to yaml
-rw-r--r--archetypes/authors/_index.md26
-rw-r--r--archetypes/default.md28
-rw-r--r--archetypes/docs.md20
-rw-r--r--archetypes/docs/_index.md8
-rw-r--r--archetypes/widgets/about.md64
-rw-r--r--archetypes/widgets/blank.html40
-rw-r--r--archetypes/widgets/pages.md47
-rw-r--r--archetypes/widgets/vintage.md44
-rw-r--r--data/assets.toml35
-rw-r--r--data/assets.yaml29
-rw-r--r--data/eureka.toml1
-rw-r--r--data/eureka.yaml1
-rw-r--r--exampleSite/config/_default/config.toml41
-rw-r--r--exampleSite/config/_default/config.yaml44
-rw-r--r--exampleSite/config/_default/languages.toml12
-rw-r--r--exampleSite/config/_default/languages.yaml12
-rw-r--r--exampleSite/config/_default/menus.toml14
-rw-r--r--exampleSite/config/_default/menus.yaml10
-rw-r--r--exampleSite/config/_default/params.yaml (renamed from exampleSite/config/_default/params.toml)45
-rw-r--r--exampleSite/content/authors/example-author/_index.md46
-rw-r--r--exampleSite/content/authors/hugo-authors/_index.md45
-rw-r--r--exampleSite/content/docs/_index.md8
-rw-r--r--exampleSite/content/docs/example-doc/_index.md27
-rw-r--r--exampleSite/content/docs/example-doc/chapter-1.md27
-rw-r--r--exampleSite/content/docs/example-doc/chapter-2.md27
-rw-r--r--exampleSite/content/docs/example-doc/nested-chapter/_index.md27
-rw-r--r--exampleSite/content/docs/example-doc/nested-chapter/chapter-1.md27
-rw-r--r--exampleSite/content/docs/example-doc/nested-chapter/chapter-2.md27
-rw-r--r--exampleSite/content/homepage/about.md81
-rw-r--r--exampleSite/content/homepage/blank.html40
-rw-r--r--exampleSite/content/homepage/index.md6
-rw-r--r--exampleSite/content/homepage/pages.md47
-rw-r--r--exampleSite/content/homepage/vintage.md43
-rw-r--r--exampleSite/content/posts/_index.md6
-rw-r--r--exampleSite/content/posts/emoji-support.md29
-rw-r--r--exampleSite/content/posts/featured-image.md34
-rw-r--r--exampleSite/content/posts/markdown-syntax.md33
-rw-r--r--exampleSite/content/posts/math-support.md29
-rw-r--r--exampleSite/content/posts/placeholder-text.md32
-rw-r--r--i18n/en.toml29
-rw-r--r--i18n/en.yaml20
-rw-r--r--i18n/it.toml29
-rw-r--r--i18n/it.yaml20
-rw-r--r--i18n/zh.toml29
-rw-r--r--i18n/zh.yaml20
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--resources/_gen/assets/css/css/eureka.css_fc3f76d7bee2760c3a903059afc3d9b2.content2
47 files changed, 619 insertions, 694 deletions
diff --git a/archetypes/authors/_index.md b/archetypes/authors/_index.md
index 49103fa..669fecd 100644
--- a/archetypes/authors/_index.md
+++ b/archetypes/authors/_index.md
@@ -1,19 +1,19 @@
-+++
+---
# Name
-title = "{{ replace .Name "-" " " | title }}"
-role = ""
-bio = ""
-avatar = ""
+title: {{ replace .Name "-" " " | title }}
+role:
+bio:
+avatar:
-[organization]
- name = ""
- url = ""
+organization:
+ name:
+ url:
# Check the available icons on https://fontawesome.com/.
# You can get similar results like this <i class="fab fa-github"></i> after searching.
# Then icon is github and iconPack is fab for this case.
-[[social]]
- icon = ""
- iconPack = ""
- url = ""
-+++ \ No newline at end of file
+social:
+ - icon:
+ iconPack:
+ url:
+--- \ No newline at end of file
diff --git a/archetypes/default.md b/archetypes/default.md
index 5326afb..b99cb8b 100644
--- a/archetypes/default.md
+++ b/archetypes/default.md
@@ -1,14 +1,14 @@
-+++
-title = "{{ replace .Name "-" " " | title }}"
-description = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "{{ .Date }}"
-lastmod = "{{ .Date }}"
-featuredVideo = ""
-featuredImage = ""
-draft = false
-+++ \ No newline at end of file
+---
+title: {{ replace .Name "-" " " | title }}
+description:
+toc: true
+authors: []
+tags: []
+categories: []
+series: []
+date: {{ .Date }}
+lastmod: {{ .Date }}
+featuredVideo:
+featuredImage:
+draft: false
+--- \ No newline at end of file
diff --git a/archetypes/docs.md b/archetypes/docs.md
index cd9e8b8..ccb2f42 100644
--- a/archetypes/docs.md
+++ b/archetypes/docs.md
@@ -1,10 +1,10 @@
-+++
-title = "{{ replace .Name "-" " " | title }}"
-description = ""
-toc = true
-authors = []
-date = "{{ .Date }}"
-lastmod = "{{ .Date }}"
-draft = false
-weight = 1
-+++ \ No newline at end of file
+---
+title: {{ replace .Name "-" " " | title }}
+description:
+toc: true
+authors: []
+date: {{ .Date }}
+lastmod: {{ .Date }}
+draft: false
+weight: 1
+--- \ No newline at end of file
diff --git a/archetypes/docs/_index.md b/archetypes/docs/_index.md
index dd1c906..62bb47e 100644
--- a/archetypes/docs/_index.md
+++ b/archetypes/docs/_index.md
@@ -1,4 +1,4 @@
-+++
-title = "Docs"
-layout = "doc-list" #Do not modify
-+++ \ No newline at end of file
+---
+title: Docs
+layout: doc-list #Do not modify
+--- \ No newline at end of file
diff --git a/archetypes/widgets/about.md b/archetypes/widgets/about.md
index 5ec465c..7dbfd90 100644
--- a/archetypes/widgets/about.md
+++ b/archetypes/widgets/about.md
@@ -1,46 +1,38 @@
-+++
-title = "{{ replace .Name "-" " " | title }}"
-weight = 1
-draft = false
+---
+title: {{ replace .Name "-" " " | title }}
+draft: false
+role:
+avatar:
+bio:
+organization:
+ name:
+ url:
+social:
+ - icon:
+ iconPack:
+ url:
-role = ""
-bio = ""
-avatar = ""
+weight:
+widget:
+ handler: about
-[organization]
- name = ""
- url = ""
-
-# Check the available icons on https://fontawesome.com/.
-# You can get similar results like this <i class="fab fa-github"></i> after searching.
-# Then icon is github and iconPack is fab for this case.
-[[social]]
- icon = ""
- iconPack = ""
- url = ""
-
-[widget]
- handler = "about"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
-
- [widget.background]
+ scale:
+
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = ""
-
- # See TODO
- image = ""
+ color: secondary
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++ \ No newline at end of file
+ attachment:
+--- \ No newline at end of file
diff --git a/archetypes/widgets/blank.html b/archetypes/widgets/blank.html
index 1c9e237..9e668a1 100644
--- a/archetypes/widgets/blank.html
+++ b/archetypes/widgets/blank.html
@@ -1,30 +1,28 @@
-+++
-title = "{{ replace .Name "-" " " | title }}"
-weight = 1
-draft = false
+---
+title: {{ replace .Name "-" " " | title }}
+draft: false
+
+weight:
+widget:
+ handler: blank
-[widget]
- handler = "blank"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
-
- [widget.background]
+ scale:
+
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = ""
-
- # See TODO
- image = ""
+ color:
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++ \ No newline at end of file
+ attachment:
+--- \ No newline at end of file
diff --git a/archetypes/widgets/pages.md b/archetypes/widgets/pages.md
index e0ca162..573b408 100644
--- a/archetypes/widgets/pages.md
+++ b/archetypes/widgets/pages.md
@@ -1,37 +1,34 @@
-+++
-title = "{{ replace .Name "-" " " | title }}"
-weight = 1
-draft = false
-
+---
+title: {{ replace .Name "-" " " | title }}
+draft: false
# Section you want to display
-section = "posts"
+section:
# Pages count
-count = 5
+count:
# Options: card, plain and masonry.
-style = "card"
+style:
+
+weight:
+widget:
+ handler: pages
-[widget]
- handler = "pages"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
-
- [widget.background]
+ scale:
+
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = ""
-
- # See TODO
- image = ""
+ color:
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++ \ No newline at end of file
+ attachment:
+--- \ No newline at end of file
diff --git a/archetypes/widgets/vintage.md b/archetypes/widgets/vintage.md
index 99307ae..e1dda6f 100644
--- a/archetypes/widgets/vintage.md
+++ b/archetypes/widgets/vintage.md
@@ -1,35 +1,31 @@
-+++
-title = "{{ replace .Name "-" " " | title }}"
-weight = 1
-draft = false
+---
+title: {{ replace .Name "-" " " | title }}
+draft: false
+slogan:
+imgLeft:
+imgRight:
-slogan = ""
-# See TODO
-imgLeft = ""
-imgRight = ""
+weight:
+widget:
+ handler: vintage
-[widget]
- handler = "vintage"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
+ scale:
- [widget.background]
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = ""
-
- # See TODO
- image = ""
+ color:
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++ \ No newline at end of file
+ attachment:
+--- \ No newline at end of file
diff --git a/data/assets.toml b/data/assets.toml
deleted file mode 100644
index ed82b6b..0000000
--- a/data/assets.toml
+++ /dev/null
@@ -1,35 +0,0 @@
-# When the asset version is updated, its sri needs to be updated simultaneously.
-
-# highlight.js
-[highlightjs]
- version = "10.1.0"
-
- [highlightjs.css]
- url = "https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@%s/build/styles/solarized-light.min.css"
-
- [highlightjs.js]
- url = "https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@%s/build/highlight.min.js"
-
-# Font Awesome
-[fontawesome]
- version = "5.14.0"
-
- [fontawesome.js]
- url = "https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@%s/js/all.min.js"
- sri = "sha256-uNYoXefWRqv+PsIF/OflNmwtKM4lStn9yrz2gVl6ymo="
-
-# KaTeX
-[katex]
- version = "0.12.0"
-
- [katex.css]
- url = "https://cdn.jsdelivr.net/npm/katex@%s/dist/katex.min.css"
- sri = "sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X"
-
- [katex.js]
- url = "https://cdn.jsdelivr.net/npm/katex@%s/dist/katex.min.js"
- sri = "sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4"
-
- [katex.autoRender]
- url = "https://cdn.jsdelivr.net/npm/katex@%s/dist/contrib/auto-render.min.js"
- sri = "sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" \ No newline at end of file
diff --git a/data/assets.yaml b/data/assets.yaml
new file mode 100644
index 0000000..2cddc64
--- /dev/null
+++ b/data/assets.yaml
@@ -0,0 +1,29 @@
+# When the asset version is updated, its sri needs to be updated simultaneously.
+
+# highlight.js
+highlightjs:
+ version: 10.1.0
+ css:
+ url: https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@%s/build/styles/solarized-light.min.css
+ js:
+ url: https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@%s/build/highlight.min.js
+
+# Font Awesome
+fontawesome:
+ version: 5.14.0
+ js:
+ url: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@%s/js/all.min.js
+ sri: sha256-uNYoXefWRqv+PsIF/OflNmwtKM4lStn9yrz2gVl6ymo=
+
+# KaTeX
+katex:
+ version: 0.12.0
+ css:
+ url: https://cdn.jsdelivr.net/npm/katex@%s/dist/katex.min.css
+ sri: sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X
+ js:
+ url: https://cdn.jsdelivr.net/npm/katex@%s/dist/katex.min.js
+ sri: sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4
+ autoRender:
+ url: https://cdn.jsdelivr.net/npm/katex@%s/dist/contrib/auto-render.min.js
+ sri: sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa
diff --git a/data/eureka.toml b/data/eureka.toml
deleted file mode 100644
index 8565d43..0000000
--- a/data/eureka.toml
+++ /dev/null
@@ -1 +0,0 @@
-version = "0.5.0" \ No newline at end of file
diff --git a/data/eureka.yaml b/data/eureka.yaml
new file mode 100644
index 0000000..4a66f57
--- /dev/null
+++ b/data/eureka.yaml
@@ -0,0 +1 @@
+version: 0.5.0 \ No newline at end of file
diff --git a/exampleSite/config/_default/config.toml b/exampleSite/config/_default/config.toml
deleted file mode 100644
index c04f91f..0000000
--- a/exampleSite/config/_default/config.toml
+++ /dev/null
@@ -1,41 +0,0 @@
-baseURL = "/"
-title = "Eureka Demo"
-
-# Comment when installing using Hugo Modules
-theme = "eureka"
-# Uncomment when installing using Hugo Modules
-# theme = "github.com/wangchucheng/hugo-eureka"
-
-paginate = 3
-copyright = "&copy; 2021 <a href=\"https://www.wangchucheng.com/\">C. Wang</a> and <a href=\"https://www.ruiqima.com/\">R. Ma</a>"
-enableEmoji = true
-enableGitInfo = false
-summaryLength = 75
-
-defaultContentLanguage = "en"
-hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean.
-defaultContentLanguageInSubdir = false
-
-# Uncomment for google analytics
-# googleAnalytics = "UA-123-45"
-
-[markup]
- # Do not modify markup.highlight
- [markup.highlight]
- codeFences = false
- noClasses = false
- [markup.tableOfContents]
- startLevel = 2
- endLevel = 6
- ordered = false
- [markup.goldmark.renderer]
- unsafe = true
-
-[taxonomies]
- category = "categories"
- tag = "tags"
- series = "series"
- author = "authors"
-
-[build]
- useResourceCacheWhen = "always" \ No newline at end of file
diff --git a/exampleSite/config/_default/config.yaml b/exampleSite/config/_default/config.yaml
new file mode 100644
index 0000000..e03c700
--- /dev/null
+++ b/exampleSite/config/_default/config.yaml
@@ -0,0 +1,44 @@
+baseURL: /
+title: Eureka Demo
+
+# Comment when installing using Hugo Modules
+theme: eureka
+# Uncomment when installing using Hugo Modules
+# theme: github.com/wangchucheng/hugo-eureka
+
+paginate: 3
+copyright: >
+ &copy; 2021 <a href="https://www.wangchucheng.com/">C. Wang</a> and <a
+ href="https://www.ruiqima.com/">R. Ma</a>
+enableEmoji: true
+enableGitInfo: false
+summaryLength: 75
+
+defaultContentLanguage: en
+hasCJKLanguage: false # Set `true` for Chinese/Japanese/Korean.
+defaultContentLanguageInSubdir: false
+
+# Uncomment for google analytics
+# googleAnalytics: UA-123-45
+
+markup:
+ # Do not modify markup.highlight
+ highlight:
+ codeFences: false
+ noClasses: false
+ tableOfContents:
+ startLevel: 2
+ endLevel: 6
+ ordered: false
+ goldmark:
+ renderer:
+ unsafe: true
+
+taxonomies:
+ category: categories
+ tag: tags
+ series: series
+ author: authors
+
+build:
+ useResourceCacheWhen: always \ No newline at end of file
diff --git a/exampleSite/config/_default/languages.toml b/exampleSite/config/_default/languages.toml
deleted file mode 100644
index c677c60..0000000
--- a/exampleSite/config/_default/languages.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-[en]
- languageCode = "en"
- languageName = "English"
- # Uncomment for multilingual sites, and move the default content into corresponding sub-folder.
- # contentDir = "content/en"
-
-# Uncomment for multilingual sites, and customize the following config.
-# [zh]
-# languageCode = "zh"
-# languageName = "简体中文"
-# contentDir = "content/zh"
-# title = "中文标题" \ No newline at end of file
diff --git a/exampleSite/config/_default/languages.yaml b/exampleSite/config/_default/languages.yaml
new file mode 100644
index 0000000..4a7e63f
--- /dev/null
+++ b/exampleSite/config/_default/languages.yaml
@@ -0,0 +1,12 @@
+en:
+ languageCode: en
+ languageName: English
+ # Uncomment for multilingual sites, and move the default content into corresponding sub-folder.
+ # contentDir: content/en
+
+# Uncomment for multilingual sites, and customize the following config.
+# zh:
+# languageCode: zh
+# languageName: 简体中文
+# contentDir: content/zh
+# title: 中文标题 \ No newline at end of file
diff --git a/exampleSite/config/_default/menus.toml b/exampleSite/config/_default/menus.toml
deleted file mode 100644
index 4bb7e2f..0000000
--- a/exampleSite/config/_default/menus.toml
+++ /dev/null
@@ -1,14 +0,0 @@
-[[main]]
- name = "About"
- url = "#about"
- weight = 1
-
-[[main]]
- name = "Posts"
- url = "/posts/"
- weight = 2
-
-[[main]]
- name = "Docs"
- url = "/docs/"
- weight = 3 \ No newline at end of file
diff --git a/exampleSite/config/_default/menus.yaml b/exampleSite/config/_default/menus.yaml
new file mode 100644
index 0000000..437496b
--- /dev/null
+++ b/exampleSite/config/_default/menus.yaml
@@ -0,0 +1,10 @@
+main:
+ - name: About
+ url: '#about'
+ weight: 1
+ - name: Posts
+ url: /posts/
+ weight: 2
+ - name: Docs
+ url: /docs/
+ weight: 3 \ No newline at end of file
diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.yaml
index 1df2db0..0d98858 100644
--- a/exampleSite/config/_default/params.toml
+++ b/exampleSite/config/_default/params.yaml
@@ -1,39 +1,40 @@
-mainSections = ["posts"]
-description = "Eureka is a elegant and powerful theme for Hugo."
+mainSections:
+ - posts
+description: Eureka is a elegant and powerful theme for Hugo.
-repoURL = ""
+repoURL:
# If it is a Github repo, leave blank
-repoEditURL = ""
+repoEditURL:
-dateFormat = ""
+dateFormat:
-titleSeparator = ""
+titleSeparator:
# Options: auto, light and dark. Default is auto.
-colorScheme = ""
+colorScheme:
# E.g. Person, Organization, LocalBusiness, Project, EducationalOrganization
-siteType = "Person"
-icon = "images/icon.png"
-publisherName = "C. Wang"
-publisherLogo = ""
+siteType: Person
+icon: images/icon.png
+publisherName: C. Wang
+publisherLogo:
-[math]
- handler = "katex"
+math:
+ handler: katex
- # [math.katex]
+ # katex:
# # Browse https://katex.org/docs/options.html to see the options available.
# # KaTeX's Auto-render ignores `displayMode` property of the options, so this property will not work.
# # You can list the key and value you want as below.
- # leqno = ""
+ # leqno:
-[comment]
+comment:
# Options: disqus and commento.
- platform = ""
+ platform:
- [comment.disqus]
- shortname = ""
+ disqus:
+ shortname:
- [comment.commento]
- # If self-hosting, please enter the url (e.g. https://commento.example.com) here. Otherwise leave empty.
- url = "" \ No newline at end of file
+ commento:
+ # If self-hosting, please enter the url (e.g. https://commento.example.com) here. Otherwise leave empty.
+ url: \ No newline at end of file
diff --git a/exampleSite/content/authors/example-author/_index.md b/exampleSite/content/authors/example-author/_index.md
index 5c0ac29..f69ed63 100644
--- a/exampleSite/content/authors/example-author/_index.md
+++ b/exampleSite/content/authors/example-author/_index.md
@@ -1,30 +1,22 @@
-+++
-# Name
-title = "Example Author"
-role = "Example Role"
-bio = "Aenean vel bibendum quam. Aliquam at mollis quam. Proin efficitur."
-avatar = "images/icon.png"
-
-[organization]
- name = "Example Organization"
- url = "https://example.com/"
-
-[[social]]
- icon = "envelope"
- iconPack = "fas"
- url = "mailto:example@example.com"
-
-[[social]]
- icon = "twitter"
- iconPack = "fab"
- url = "https://example.com/"
-
-[[social]]
- icon = "github"
- iconPack = "fab"
- url = "https://example.com/"
-
-+++
+---
+title: Example Author
+role: Example Role
+avatar: images/icon.png
+bio: Aenean vel bibendum quam. Aliquam at mollis quam. Proin efficitur.
+organization:
+ name: Example Organization
+ url: https://example.com/
+social:
+ - icon: envelope
+ iconPack: fas
+ url: mailto:example@example.com
+ - icon: twitter
+ iconPack: fab
+ url: https://example.com/
+ - icon: github
+ iconPack: fab
+ url: https://example.com/
+---
## Self Introduction
diff --git a/exampleSite/content/authors/hugo-authors/_index.md b/exampleSite/content/authors/hugo-authors/_index.md
index 5f1a4f4..70f086f 100644
--- a/exampleSite/content/authors/hugo-authors/_index.md
+++ b/exampleSite/content/authors/hugo-authors/_index.md
@@ -1,30 +1,21 @@
-+++
-# Name
-title = "Hugo Authors"
-role = "Example Role"
-bio = "Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos."
-shortContent = "Example Short Content"
-
-[organization]
- name = "Example Organization"
- url = "https://example.com/"
-
-[[social]]
- icon = "envelope"
- iconPack = "fas"
- url = "mailto:example@example.com"
-
-[[social]]
- icon = "twitter"
- iconPack = "fab"
- url = "https://example.com/"
-
-[[social]]
- icon = "github"
- iconPack = "fab"
- url = "https://example.com/"
-
-+++
+---
+title: Hugo Authors
+role: Example Role
+bio: Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos.
+organization:
+ name: Example Organization
+ url: https://example.com/
+social:
+ - icon: envelope
+ iconPack: fas
+ url: mailto:example@example.com
+ - icon: twitter
+ iconPack: fab
+ url: https://example.com/
+ - icon: github
+ iconPack: fab
+ url: https://example.com/
+---
## Vestibulum vel arcu
diff --git a/exampleSite/content/docs/_index.md b/exampleSite/content/docs/_index.md
index 9f7529d..93a4009 100644
--- a/exampleSite/content/docs/_index.md
+++ b/exampleSite/content/docs/_index.md
@@ -1,4 +1,4 @@
-+++
-title = "Docs"
-layout = "doc-list"
-+++ \ No newline at end of file
+---
+title: Docs
+layout: doc-list
+--- \ No newline at end of file
diff --git a/exampleSite/content/docs/example-doc/_index.md b/exampleSite/content/docs/example-doc/_index.md
index 2401ab3..7c8116c 100644
--- a/exampleSite/content/docs/example-doc/_index.md
+++ b/exampleSite/content/docs/example-doc/_index.md
@@ -1,16 +1,15 @@
-+++
-title = "Example Doc"
-description = "This is an example doc layout of Eureka theme"
-summary = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "2020-10-16"
-lastmod = "2020-10-16"
-draft = false
-+++
+---
+title: Example Doc
+description: This is an example doc layout of Eureka theme
+toc: true
+authors:
+tags:
+categories:
+series:
+date: '2020-10-16'
+lastmod: '2020-10-16'
+draft: false
+---
This is the root of example doc.
@@ -32,4 +31,4 @@ Donec justo diam, auctor et rhoncus a, feugiat in felis. Etiam lectus est, tinci
## Quisque vehicula tellus eget nunc molestie
-Phasellus ligula tortor, sodales ac ipsum vel, lobortis lacinia eros. Maecenas et viverra enim, sit amet bibendum risus. Duis a est pulvinar, suscipit diam id, sagittis lectus. Sed vulputate est sed ipsum faucibus tempus. Morbi non varius nibh. Vestibulum vel tincidunt neque. Vestibulum pellentesque sed metus eu gravida. Donec rhoncus, quam in dictum bibendum, diam libero pretium lacus, vitae suscipit diam neque eget arcu. Pellentesque id hendrerit lorem. Curabitur fermentum purus orci, nec ullamcorper dolor consequat at. Suspendisse lectus dolor, efficitur non mollis eget, suscipit ut nisl. Quisque id ex metus. Sed lobortis venenatis lacinia. Sed at lorem leo. \ No newline at end of file
+Phasellus ligula tortor, sodales ac ipsum vel, lobortis lacinia eros. Maecenas et viverra enim, sit amet bibendum risus. Duis a est pulvinar, suscipit diam id, sagittis lectus. Sed vulputate est sed ipsum faucibus tempus. Morbi non varius nibh. Vestibulum vel tincidunt neque. Vestibulum pellentesque sed metus eu gravida. Donec rhoncus, quam in dictum bibendum, diam libero pretium lacus, vitae suscipit diam neque eget arcu. Pellentesque id hendrerit lorem. Curabitur fermentum purus orci, nec ullamcorper dolor consequat at. Suspendisse lectus dolor, efficitur non mollis eget, suscipit ut nisl. Quisque id ex metus. Sed lobortis venenatis lacinia. Sed at lorem leo.
diff --git a/exampleSite/content/docs/example-doc/chapter-1.md b/exampleSite/content/docs/example-doc/chapter-1.md
index b166903..df57f30 100644
--- a/exampleSite/content/docs/example-doc/chapter-1.md
+++ b/exampleSite/content/docs/example-doc/chapter-1.md
@@ -1,16 +1,15 @@
-+++
-title = "Chapter 1"
-description = "Chapter 1 of example doc"
-summary = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "2020-10-16"
-lastmod = "2020-10-16"
-draft = false
-+++
+---
+title: Chapter 1
+description: Chapter 1 of example doc
+toc: true
+authors:
+tags:
+categories:
+series:
+date: '2020-10-16'
+lastmod: '2020-10-16'
+draft: false
+---
This is chapter 1 of example doc.
@@ -31,4 +30,4 @@ Mauris odio nulla, porta in lacinia vel, faucibus quis turpis. Nunc congue fauci
## Aliquam vitae augue egestas
-Vivamus eget orci ac magna efficitur tincidunt et non urna. Cras mattis molestie nibh, ac posuere lectus bibendum a. Praesent consectetur vulputate dolor eget porta. Fusce ultrices ipsum in tortor consectetur, finibus maximus odio aliquet. Nunc dui odio, fringilla eget quam sed, gravida pretium lorem. Curabitur felis libero, commodo eget pharetra eu, blandit eu lectus. Nunc laoreet nisi purus, in dignissim nibh elementum ut. Nunc sit amet elementum urna. Pellentesque auctor imperdiet lorem, ut egestas arcu. Donec sed magna nec neque molestie aliquet non nec lorem. Phasellus sed libero tortor. \ No newline at end of file
+Vivamus eget orci ac magna efficitur tincidunt et non urna. Cras mattis molestie nibh, ac posuere lectus bibendum a. Praesent consectetur vulputate dolor eget porta. Fusce ultrices ipsum in tortor consectetur, finibus maximus odio aliquet. Nunc dui odio, fringilla eget quam sed, gravida pretium lorem. Curabitur felis libero, commodo eget pharetra eu, blandit eu lectus. Nunc laoreet nisi purus, in dignissim nibh elementum ut. Nunc sit amet elementum urna. Pellentesque auctor imperdiet lorem, ut egestas arcu. Donec sed magna nec neque molestie aliquet non nec lorem. Phasellus sed libero tortor.
diff --git a/exampleSite/content/docs/example-doc/chapter-2.md b/exampleSite/content/docs/example-doc/chapter-2.md
index f847ae1..306bdd5 100644
--- a/exampleSite/content/docs/example-doc/chapter-2.md
+++ b/exampleSite/content/docs/example-doc/chapter-2.md
@@ -1,16 +1,15 @@
-+++
-title = "Chapter 2"
-description = "Chapter 2 of example doc"
-summary = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "2020-10-16"
-lastmod = "2020-10-16"
-draft = false
-+++
+---
+title: Chapter 2
+description: Chapter 2 of example doc
+toc: true
+authors:
+tags:
+categories:
+series:
+date: '2020-10-16'
+lastmod: '2020-10-16'
+draft: false
+---
This is chapter 2 of example doc.
@@ -36,4 +35,4 @@ Nullam finibus mollis vestibulum. Quisque eu venenatis purus, facilisis pulvinar
### Vestibulum fermentum massa
-Maecenas molestie egestas purus a gravida. Aliquam erat volutpat. Aenean varius turpis id purus accumsan, quis pellentesque turpis fringilla. Duis quis lacus a nisi rhoncus ullamcorper eget id augue. Praesent dapibus vel lectus ac consequat. Sed nec vehicula magna. Aenean viverra convallis dolor dignissim auctor. Ut semper, quam et sodales vehicula, tellus sapien consequat magna, feugiat vehicula libero nulla eget lorem. Proin libero purus, condimentum eu viverra id, placerat et nibh. Donec feugiat nunc quis erat congue tristique. Sed ut mauris quis eros malesuada placerat. Pellentesque imperdiet dui vitae dui pellentesque, sit amet rutrum risus pretium. \ No newline at end of file
+Maecenas molestie egestas purus a gravida. Aliquam erat volutpat. Aenean varius turpis id purus accumsan, quis pellentesque turpis fringilla. Duis quis lacus a nisi rhoncus ullamcorper eget id augue. Praesent dapibus vel lectus ac consequat. Sed nec vehicula magna. Aenean viverra convallis dolor dignissim auctor. Ut semper, quam et sodales vehicula, tellus sapien consequat magna, feugiat vehicula libero nulla eget lorem. Proin libero purus, condimentum eu viverra id, placerat et nibh. Donec feugiat nunc quis erat congue tristique. Sed ut mauris quis eros malesuada placerat. Pellentesque imperdiet dui vitae dui pellentesque, sit amet rutrum risus pretium.
diff --git a/exampleSite/content/docs/example-doc/nested-chapter/_index.md b/exampleSite/content/docs/example-doc/nested-chapter/_index.md
index 2972a0e..5db699f 100644
--- a/exampleSite/content/docs/example-doc/nested-chapter/_index.md
+++ b/exampleSite/content/docs/example-doc/nested-chapter/_index.md
@@ -1,16 +1,15 @@
-+++
-title = "Nested Chapter"
-description = "Nested chapter of example doc"
-summary = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "2020-10-16"
-lastmod = "2020-10-16"
-draft = false
-+++
+---
+title: Nested Chapter
+description: Nested chapter of example doc
+toc: true
+authors:
+tags:
+categories:
+series:
+date: '2020-10-16'
+lastmod: '2020-10-16'
+draft: false
+---
This is the root of nested chapter.
@@ -32,4 +31,4 @@ Etiam ut tempus nunc. Donec vel ornare eros, quis viverra sem. In arcu erat, ele
## Sed sed sapien vitae mauris pellentesque
-Donec eget dui euismod, mattis tortor a, suscipit nisi. Quisque id ullamcorper mi, vulputate tristique lacus. Nulla nulla felis, convallis sit amet nibh vitae, luctus viverra velit. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur consectetur, felis eget sagittis faucibus, sapien mauris dignissim justo, vel suscipit velit leo placerat dolor. Mauris accumsan ligula ipsum, et aliquam nunc congue a. Aliquam faucibus non mauris at commodo. Maecenas laoreet elit aliquet consectetur rhoncus. Etiam dictum mi augue, venenatis dignissim lacus pharetra et. Proin sit amet lectus id mauris accumsan venenatis ut sit amet lorem. Etiam auctor commodo elit, molestie vestibulum quam auctor ac. Vestibulum rhoncus leo malesuada mauris faucibus, pulvinar venenatis odio rutrum. Sed sit amet consectetur velit. Cras facilisis ligula vel ligula sodales, id luctus sapien suscipit. \ No newline at end of file
+Donec eget dui euismod, mattis tortor a, suscipit nisi. Quisque id ullamcorper mi, vulputate tristique lacus. Nulla nulla felis, convallis sit amet nibh vitae, luctus viverra velit. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur consectetur, felis eget sagittis faucibus, sapien mauris dignissim justo, vel suscipit velit leo placerat dolor. Mauris accumsan ligula ipsum, et aliquam nunc congue a. Aliquam faucibus non mauris at commodo. Maecenas laoreet elit aliquet consectetur rhoncus. Etiam dictum mi augue, venenatis dignissim lacus pharetra et. Proin sit amet lectus id mauris accumsan venenatis ut sit amet lorem. Etiam auctor commodo elit, molestie vestibulum quam auctor ac. Vestibulum rhoncus leo malesuada mauris faucibus, pulvinar venenatis odio rutrum. Sed sit amet consectetur velit. Cras facilisis ligula vel ligula sodales, id luctus sapien suscipit.
diff --git a/exampleSite/content/docs/example-doc/nested-chapter/chapter-1.md b/exampleSite/content/docs/example-doc/nested-chapter/chapter-1.md
index 827b7b5..1a78a28 100644
--- a/exampleSite/content/docs/example-doc/nested-chapter/chapter-1.md
+++ b/exampleSite/content/docs/example-doc/nested-chapter/chapter-1.md
@@ -1,16 +1,15 @@
-+++
-title = "Chapter 1"
-description = "Chapter 1 of nested chapter"
-summary = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "2020-10-16"
-lastmod = "2020-10-16"
-draft = false
-+++
+---
+title: Chapter 1
+description: Chapter 1 of example doc
+toc: true
+authors:
+tags:
+categories:
+series:
+date: '2020-10-16'
+lastmod: '2020-10-16'
+draft: false
+---
This is chapter 1 of nested chapter.
@@ -34,4 +33,4 @@ Proin vestibulum pellentesque ipsum, non lobortis arcu volutpat at. Integer nequ
### Suspendisse suscipit tellus at nibh tincidunt
-Nulla pellentesque, leo eget interdum interdum, sem felis consequat massa, id aliquet eros leo sit amet urna. Phasellus quis odio ut odio porttitor consequat quis a velit. Quisque purus velit, faucibus vel efficitur in, sagittis quis neque. Morbi pretium suscipit odio, vel tincidunt nunc dictum aliquam. Quisque non arcu at urna scelerisque semper ac et tortor. Aliquam a dapibus justo. Vestibulum tempus nunc eu condimentum ultrices. Aenean nec egestas nulla, ut congue libero. Aliquam ut mattis urna, in sollicitudin odio. Aenean ac tristique felis, a consequat erat. Aliquam luctus eros ut porttitor efficitur. Nam cursus elit id arcu semper, at sodales velit vulputate. Suspendisse potenti. \ No newline at end of file
+Nulla pellentesque, leo eget interdum interdum, sem felis consequat massa, id aliquet eros leo sit amet urna. Phasellus quis odio ut odio porttitor consequat quis a velit. Quisque purus velit, faucibus vel efficitur in, sagittis quis neque. Morbi pretium suscipit odio, vel tincidunt nunc dictum aliquam. Quisque non arcu at urna scelerisque semper ac et tortor. Aliquam a dapibus justo. Vestibulum tempus nunc eu condimentum ultrices. Aenean nec egestas nulla, ut congue libero. Aliquam ut mattis urna, in sollicitudin odio. Aenean ac tristique felis, a consequat erat. Aliquam luctus eros ut porttitor efficitur. Nam cursus elit id arcu semper, at sodales velit vulputate. Suspendisse potenti.
diff --git a/exampleSite/content/docs/example-doc/nested-chapter/chapter-2.md b/exampleSite/content/docs/example-doc/nested-chapter/chapter-2.md
index e203d90..9aabaec 100644
--- a/exampleSite/content/docs/example-doc/nested-chapter/chapter-2.md
+++ b/exampleSite/content/docs/example-doc/nested-chapter/chapter-2.md
@@ -1,16 +1,15 @@
-+++
-title = "Chapter 2"
-description = "Chapter 2 of nested chapter"
-summary = ""
-toc = true
-authors = []
-tags = []
-categories = []
-series = []
-date = "2020-10-16"
-lastmod = "2020-10-16"
-draft = false
-+++
+---
+title: Chapter 2
+description: Chapter 2 of example doc
+toc: true
+authors:
+tags:
+categories:
+series:
+date: '2020-10-16'
+lastmod: '2020-10-16'
+draft: false
+---
This is chapter 2 of nested chapter.
@@ -34,4 +33,4 @@ Donec tincidunt interdum magna quis dictum. Integer non sollicitudin justo, id v
## Quisque convallis sem sit amet magna aliquam interdum
-Vestibulum a odio vitae sapien tempor sollicitudin. In eu mi ex. Phasellus sollicitudin, augue vitae congue vestibulum, sem mi ullamcorper nibh, sagittis tincidunt ligula turpis vitae arcu. Phasellus orci felis, tristique id scelerisque eu, ornare vel mauris. Curabitur suscipit venenatis facilisis. Phasellus et est et purus posuere accumsan et ut quam. Donec in odio eu enim facilisis scelerisque. Sed eget condimentum elit, quis pretium ipsum. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse sit amet tortor ligula. Mauris lectus odio, cursus a diam a, ultricies posuere justo. Sed ultrices tempor mi, semper commodo quam lobortis at. Donec consectetur pretium nisl, eget dapibus nibh maximus scelerisque. \ No newline at end of file
+Vestibulum a odio vitae sapien tempor sollicitudin. In eu mi ex. Phasellus sollicitudin, augue vitae congue vestibulum, sem mi ullamcorper nibh, sagittis tincidunt ligula turpis vitae arcu. Phasellus orci felis, tristique id scelerisque eu, ornare vel mauris. Curabitur suscipit venenatis facilisis. Phasellus et est et purus posuere accumsan et ut quam. Donec in odio eu enim facilisis scelerisque. Sed eget condimentum elit, quis pretium ipsum. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse sit amet tortor ligula. Mauris lectus odio, cursus a diam a, ultricies posuere justo. Sed ultrices tempor mi, semper commodo quam lobortis at. Donec consectetur pretium nisl, eget dapibus nibh maximus scelerisque.
diff --git a/exampleSite/content/homepage/about.md b/exampleSite/content/homepage/about.md
index c0f99af..8972446 100644
--- a/exampleSite/content/homepage/about.md
+++ b/exampleSite/content/homepage/about.md
@@ -1,56 +1,47 @@
-+++
-title = "Example Author"
-weight = 1
-draft = false
+---
+title: Example Author
+draft: false
+role: Example Role
+avatar: images/icon.png
+bio: Aenean vel bibendum quam. Aliquam at mollis quam. Proin efficitur.
+organization:
+ name: Example Organization
+ url: https://example.com/
+social:
+ - icon: envelope
+ iconPack: fas
+ url: mailto:example@example.com
+ - icon: twitter
+ iconPack: fab
+ url: https://example.com/
+ - icon: github
+ iconPack: fab
+ url: https://example.com/
+
+weight: 1
+widget:
+ handler: about
-role = "Example Role"
-bio = "Aenean vel bibendum quam. Aliquam at mollis quam. Proin efficitur."
-avatar = "images/icon.png"
-
-[organization]
- name = "Example Organization"
- url = "https://example.com/"
-
-[[social]]
- icon = "envelope"
- iconPack = "fas"
- url = "mailto:example@example.com"
-
-[[social]]
- icon = "twitter"
- iconPack = "fab"
- url = "https://example.com/"
-
-[[social]]
- icon = "github"
- iconPack = "fab"
- url = "https://example.com/"
-
-[widget]
- handler = "about"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
-
- [widget.background]
+ scale:
+
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = "secondary"
-
- # See TODO
- image = ""
+ color: secondary
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++
+ attachment:
+---
## Self Introduction
@@ -69,4 +60,4 @@ Donec mollis sollicitudin:
- Nunc dictum purus ornare purus consectetur, eu pellentesque massa ullamcorper.
- Aliquam eu leo vitae justo aliquam tincidunt.
- Fusce non massa id augue interdum feugiat sed et nulla.
-- Vivamus molestie augue in tristique laoreet. \ No newline at end of file
+- Vivamus molestie augue in tristique laoreet.
diff --git a/exampleSite/content/homepage/blank.html b/exampleSite/content/homepage/blank.html
index 05041bd..592af57 100644
--- a/exampleSite/content/homepage/blank.html
+++ b/exampleSite/content/homepage/blank.html
@@ -1,33 +1,31 @@
-+++
-title = "Blank"
-weight = 4
-draft = false
+---
+title: Blank
+draft: false
+
+weight: 4
+widget:
+ handler: blank
-[widget]
- handler = "blank"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
-
- [widget.background]
+ scale:
+
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = ""
-
- # See TODO
- image = "images/hero-left.jpg"
+ color:
+ image: images/hero-left.jpg
# Options: auto, cover and contain. Default is auto.
- size = "cover"
+ size: cover
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++
+ attachment:
+---
<div style="text-align:center">
<p>Write anything you like here!</p>
diff --git a/exampleSite/content/homepage/index.md b/exampleSite/content/homepage/index.md
index 2ae2541..3d65eaa 100644
--- a/exampleSite/content/homepage/index.md
+++ b/exampleSite/content/homepage/index.md
@@ -1,3 +1,3 @@
-+++
-headless = true
-+++ \ No newline at end of file
+---
+headless: true
+--- \ No newline at end of file
diff --git a/exampleSite/content/homepage/pages.md b/exampleSite/content/homepage/pages.md
index 0b4b1b5..de31565 100644
--- a/exampleSite/content/homepage/pages.md
+++ b/exampleSite/content/homepage/pages.md
@@ -1,37 +1,34 @@
-+++
-title = "Pages"
-weight = 2
-draft = false
-
+---
+title: Pages
+draft: false
# Section you want to display
-section = "posts"
+section: posts
# Pages count
-count = 5
+count: 5
# Options: card, plain and masonry.
-style = "plain"
+style: plain
+
+weight: 2
+widget:
+ handler: pages
-[widget]
- handler = "pages"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
-
- [widget.background]
+ scale:
+
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = ""
-
- # See TODO
- image = ""
+ color:
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++ \ No newline at end of file
+ attachment:
+--- \ No newline at end of file
diff --git a/exampleSite/content/homepage/vintage.md b/exampleSite/content/homepage/vintage.md
index cdd3541..bc22a8b 100644
--- a/exampleSite/content/homepage/vintage.md
+++ b/exampleSite/content/homepage/vintage.md
@@ -1,34 +1,31 @@
-+++
-title = "Vintage"
-weight = 3
-draft = false
+---
+title: Vintage
+draft: false
+slogan: We are all in the gutter, but some of us are looking at the stars.
+imgLeft: images/hero-left.jpg
+imgRight: images/hero-right.jpg
-slogan = "We are all in the gutter, but some of us are looking at the stars."
-imgLeft = "images/hero-left.jpg"
-imgRight = "images/hero-right.jpg"
+weight: 4
+widget:
+ handler: vintage
-[widget]
- handler = "vintage"
-
# Options: sm, md, lg and xl. Default is md.
- width = ""
+ width:
- [widget.sidebar]
+ sidebar:
# Options: left and right. Leave blank to hide.
- position = ""
+ position:
# Options: sm, md, lg and xl. Default is md.
- scale = ""
+ scale:
- [widget.background]
+ background:
# Options: primary, secondary, tertiary or any valid color value. Default is primary.
- color = "secondary"
-
- # See TODO
- image = ""
+ color: secondary
+ image:
# Options: auto, cover and contain. Default is auto.
- size = ""
+ size:
# Options: center, top, right, bottom, left.
- position = ""
+ position:
# Options: fixed, local, scroll.
- attachment = ""
-+++ \ No newline at end of file
+ attachment:
+--- \ No newline at end of file
diff --git a/exampleSite/content/posts/_index.md b/exampleSite/content/posts/_index.md
index c22710f..599c92c 100644
--- a/exampleSite/content/posts/_index.md
+++ b/exampleSite/content/posts/_index.md
@@ -1,3 +1,3 @@
-+++
-title = "Posts"
-+++
+---
+title: Posts
+--- \ No newline at end of file
diff --git a/exampleSite/content/posts/emoji-support.md b/exampleSite/content/posts/emoji-support.md
index eed8685..2773331 100644
--- a/exampleSite/content/posts/emoji-support.md
+++ b/exampleSite/content/posts/emoji-support.md
@@ -1,16 +1,17 @@
-+++
-title = "Emoji Support"
-description = "Guide to emoji usage in Hugo"
-summary = ""
-toc = true
-authors = ["Hugo Authors"]
-tags = ["emoji"]
-categories = []
-series = []
-date = "2019-03-05"
-lastmod = "2019-03-05"
-draft = false
-+++
+---
+title: Emoji Support
+description: Guide to emoji usage in Hugo
+toc: true
+authors:
+ - Hugo Authors
+tags:
+ - emoji
+categories:
+series:
+date: '2019-03-05'
+lastmod: '2019-03-05'
+draft: false
+---
Emoji can be enabled in a Hugo project in a number of ways.
<!--more-->
@@ -47,4 +48,4 @@ The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference
}
}
</style>
-{{< /css.inline >}} \ No newline at end of file
+{{< /css.inline >}}
diff --git a/exampleSite/content/posts/featured-image.md b/exampleSite/content/posts/featured-image.md
index 8098faf..2ae412b 100644
--- a/exampleSite/content/posts/featured-image.md
+++ b/exampleSite/content/posts/featured-image.md
@@ -1,18 +1,20 @@
-+++
-title = "Featured Image"
-description = "Post with featured image."
-summary = ""
-toc = true
-authors = ["Example Author"]
-tags = ["image"]
-categories = ["themes"]
-series = ["Themes Guide"]
-date = "2020-05-26"
-lastmod = "2020-05-26"
-draft = false
-
-featuredImage = "images/hero-right.jpg"
-+++
+---
+title: Featured Image
+description: Post with featured image.
+toc: true
+authors:
+ - Example Author
+tags:
+ - image
+categories:
+ - themes
+series:
+ - Themes Guide
+date: '2020-05-26'
+lastmod: '2020-05-26'
+featuredImage: images/hero-right.jpg
+draft: false
+---
Maecenas maximus, elit in ornare porttitor, nisi eros hendrerit nisl, sed fermentum nulla urna blandit tellus.
@@ -30,4 +32,4 @@ Etiam auctor, elit vel pretium consequat, orci magna aliquet dolor, quis varius
Aliquam posuere diam non ligula tristique congue. Donec dignissim eu justo sed dictum. Praesent at massa erat. Praesent mollis viverra velit. Aliquam maximus pharetra massa a efficitur. Sed tempus egestas purus sit amet tempor. Donec porttitor varius nisi, eu venenatis risus gravida id. Pellentesque blandit nunc non urna consectetur commodo. Sed at feugiat felis, sit amet malesuada nunc. Curabitur in tempor nisl. Pellentesque accumsan est orci, in commodo felis accumsan facilisis. Nulla maximus suscipit posuere. Nulla et consequat mauris, fermentum ultricies tellus.
-Maecenas consectetur ac libero vitae congue. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec tortor eu lectus placerat varius. Mauris a nisi consectetur, ornare dolor ut, rutrum ligula. Sed enim nisl, fermentum a dictum vel, vestibulum ut odio. Suspendisse laoreet quis urna eu vestibulum. Maecenas commodo augue ex, eu egestas nulla aliquet ut. Cras aliquam dui ipsum, nec sodales erat convallis sit amet. Donec porttitor posuere hendrerit. Sed imperdiet at purus eget tempus. In ac est urna. \ No newline at end of file
+Maecenas consectetur ac libero vitae congue. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec tortor eu lectus placerat varius. Mauris a nisi consectetur, ornare dolor ut, rutrum ligula. Sed enim nisl, fermentum a dictum vel, vestibulum ut odio. Suspendisse laoreet quis urna eu vestibulum. Maecenas commodo augue ex, eu egestas nulla aliquet ut. Cras aliquam dui ipsum, nec sodales erat convallis sit amet. Donec porttitor posuere hendrerit. Sed imperdiet at purus eget tempus. In ac est urna.
diff --git a/exampleSite/content/posts/markdown-syntax.md b/exampleSite/content/posts/markdown-syntax.md
index 299b561..9398797 100644
--- a/exampleSite/content/posts/markdown-syntax.md
+++ b/exampleSite/content/posts/markdown-syntax.md
@@ -1,16 +1,23 @@
-+++
-title = "Markdown Syntax Guide"
-description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
-summary = ""
-toc = true
-authors = ["Hugo Authors"]
-tags = ["markdown", "css", "html", "themes"]
-categories = ["themes", "syntax"]
-series = ["Themes Guide"]
-date = "2019-03-11"
-lastmod = "2019-03-11"
-draft = false
-+++
+---
+title: Markdown Syntax Guide
+description: Sample article showcasing basic Markdown syntax and formatting for HTML elements.
+toc: true
+authors:
+ - Hugo Authors
+tags:
+ - markdown
+ - css
+ - html
+ - themes
+categories:
+ - themes
+ - syntax
+series:
+ - Themes Guide
+date: '2019-03-11'
+lastmod: '2019-03-11'
+draft: false
+---
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.
<!--more-->
diff --git a/exampleSite/content/posts/math-support.md b/exampleSite/content/posts/math-support.md
index 533d3b3..b191ea3 100644
--- a/exampleSite/content/posts/math-support.md
+++ b/exampleSite/content/posts/math-support.md
@@ -1,16 +1,17 @@
-+++
-title = "Math Support"
-description = ""
-toc = true
-authors = ["example-author"]
-tags = []
-categories = []
-series = []
-date = "2020-11-20T22:52:56+08:00"
-lastmod = "2020-11-20T22:52:56+08:00"
-featuredImage = ""
-draft = false
-+++
+---
+title: Math Support
+description:
+toc: true
+authors:
+ - example-author
+tags:
+categories:
+series:
+date: '2020-11-20T22:52:56+08:00'
+lastmod: '2020-11-20T22:52:56+08:00'
+featuredImage:
+draft: false
+---
Eureka supports the rendering of mathematical formulas by using KaTeX.
@@ -44,4 +45,4 @@ x ={}& a+b+c+{} \\
\end{aligned}\]
</div>
-And many other kinds of formulas. \ No newline at end of file
+And many other kinds of formulas.
diff --git a/exampleSite/content/posts/placeholder-text.md b/exampleSite/content/posts/placeholder-text.md
index b74c052..3b2e94e 100644
--- a/exampleSite/content/posts/placeholder-text.md
+++ b/exampleSite/content/posts/placeholder-text.md
@@ -1,16 +1,20 @@
-+++
-title = "Placeholder Text"
-description = "Lorem Ipsum Dolor Si Amet"
-summary = ""
-toc = true
-authors = ["Hugo Authors", "Example Author"]
-tags = ["markdown", "text"]
-categories = []
-series = ["Themes Guide"]
-date = "2019-03-09"
-lastmod = "2019-03-09"
-draft = false
-+++
+---
+title: Placeholder Text
+description: Lorem Ipsum Dolor Si Amet
+toc: true
+authors:
+ - Hugo Authors
+ - Example Author
+tags:
+ - markdown
+ - text
+categories:
+series:
+ - Themes Guide
+date: '2019-03-09'
+lastmod: '2019-03-09'
+draft: false
+---
Lorem est tota propiore conpellat pectoribus de pectora summo. <!--more-->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.
@@ -45,4 +49,4 @@ Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit
<style>
.canon { background: white; width: 100%; height: auto; }
</style>
-{{< /css.inline >}} \ No newline at end of file
+{{< /css.inline >}}
diff --git a/i18n/en.toml b/i18n/en.toml
deleted file mode 100644
index 1385f22..0000000
--- a/i18n/en.toml
+++ /dev/null
@@ -1,29 +0,0 @@
-[readMore]
-other = "Read More"
-
-[readingTime]
-other = "{{ .ReadingTime }} min read"
-
-[toc]
-other = "Table of Contents"
-
-[seriesOfPosts]
-other = "Series of Posts"
-
-[previous]
-other = "Previous"
-
-[next]
-other = "Next"
-
-[seeAlso]
-other = "See Also"
-
-[recent]
-other = "Recent"
-
-[onThisPage]
-other = "On This Page"
-
-[editThisPage]
-other = "Edit this page" \ No newline at end of file
diff --git a/i18n/en.yaml b/i18n/en.yaml
new file mode 100644
index 0000000..c96facb
--- /dev/null
+++ b/i18n/en.yaml
@@ -0,0 +1,20 @@
+readMore:
+ other: Read More
+readingTime:
+ other: '{{ .ReadingTime }} min read'
+toc:
+ other: Table of Contents
+seriesOfPosts:
+ other: Series of Posts
+previous:
+ other: Previous
+next:
+ other: Next
+seeAlso:
+ other: See Also
+recent:
+ other: Recent
+onThisPage:
+ other: On This Page
+editThisPage:
+ other: Edit this page \ No newline at end of file
diff --git a/i18n/it.toml b/i18n/it.toml
deleted file mode 100644
index 0e18077..0000000
--- a/i18n/it.toml
+++ /dev/null
@@ -1,29 +0,0 @@
-[readMore]
-other = "Leggi di più"
-
-[readingTime]
-other = "{{ .ReadingTime }} min"
-
-[toc]
-other = "Indice dei Contenuti"
-
-[seriesOfPosts]
-other = "Serie di Post"
-
-[previous]
-other = "Precedente"
-
-[next]
-other = "Successivo"
-
-[seeAlso]
-other = "Vedi Anche"
-
-[recent]
-other = "Recenti"
-
-[onThisPage]
-other = "In Questa Pagina"
-
-[editThisPage]
-other = "Modifica questa pagina"
diff --git a/i18n/it.yaml b/i18n/it.yaml
new file mode 100644
index 0000000..56ad801
--- /dev/null
+++ b/i18n/it.yaml
@@ -0,0 +1,20 @@
+readMore:
+ other: Leggi di più
+readingTime:
+ other: '{{ .ReadingTime }} min'
+toc:
+ other: Indice dei Contenuti
+seriesOfPosts:
+ other: Serie di Post
+previous:
+ other: Precedente
+next:
+ other: Successivo
+seeAlso:
+ other: Vedi Anche
+recent:
+ other: Recenti
+onThisPage:
+ other: In Questa Pagina
+editThisPage:
+ other: Modifica questa pagina \ No newline at end of file
diff --git a/i18n/zh.toml b/i18n/zh.toml
deleted file mode 100644
index 530d842..0000000
--- a/i18n/zh.toml
+++ /dev/null
@@ -1,29 +0,0 @@
-[readMore]
-other = "阅读更多"
-
-[readingTime]
-other = "{{ .ReadingTime }}分钟阅读时长"
-
-[toc]
-other = "目录"
-
-[seriesOfPosts]
-other = "系列文章"
-
-[previous]
-other = "上一页"
-
-[next]
-other = "下一页"
-
-[seeAlso]
-other = "相关"
-
-[recent]
-other = "最近"
-
-[onThisPage]
-other = "本页内容"
-
-[editThisPage]
-other = "编辑本页" \ No newline at end of file
diff --git a/i18n/zh.yaml b/i18n/zh.yaml
new file mode 100644
index 0000000..91ffc50
--- /dev/null
+++ b/i18n/zh.yaml
@@ -0,0 +1,20 @@
+readMore:
+ other: 阅读更多
+readingTime:
+ other: '{{ .ReadingTime }}分钟阅读时长'
+toc:
+ other: 目录
+seriesOfPosts:
+ other: 系列文章
+previous:
+ other: 上一页
+next:
+ other: 下一页
+seeAlso:
+ other: 相关
+recent:
+ other: 最近
+onThisPage:
+ other: 本页内容
+editThisPage:
+ other: 编辑本页 \ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index f3ecdce..38fd1e1 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -9,7 +9,7 @@
</div>
</header>
<main class="flex-grow pt-16">
- {{- if or .IsHome (eq .Type "authors") }}
+ {{- if or .IsHome (and (eq .Type "authors") (eq .Kind "term")) }}
{{- block "main" . }}{{- end }}
{{- else }}
<div class="pl-scrollbar">
diff --git a/resources/_gen/assets/css/css/eureka.css_fc3f76d7bee2760c3a903059afc3d9b2.content b/resources/_gen/assets/css/css/eureka.css_fc3f76d7bee2760c3a903059afc3d9b2.content
index 94b7b5c..553d0ab 100644
--- a/resources/_gen/assets/css/css/eureka.css_fc3f76d7bee2760c3a903059afc3d9b2.content
+++ b/resources/_gen/assets/css/css/eureka.css_fc3f76d7bee2760c3a903059afc3d9b2.content
@@ -1 +1 @@
-/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;line-height:1.5}*,::before,::after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e2e8f0}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}button,[role=button]{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}:root{font-family:Lora,Noto Serif SC,serif;background-color:var(--color-primary-bg);color:var(--color-primary-text);--color-eureka: #38B2AC;--color-primary-bg: rgba(242,242,247,1.00);--color-secondary-bg: rgba(255,255,255,1.00);--color-tertiary-bg: rgba(242,242,247,1.00);--color-primary-text: rgba(0,0,0,0.85);--color-secondary-text: rgba(0,0,0,0.7);--color-tertiary-text: rgba(0,0,0,0.55)}.dark{--color-eureka: #38B2AC;--color-primary-bg: rgba(0,0,0,1.00);--color-secondary-bg: rgba(28,28,30,1.00);--color-tertiary-bg: rgba(44,44,46,1.00);--color-primary-text: rgba(255,255,255,0.85);--color-secondary-text: rgba(255,255,255,0.7);--color-tertiary-text: rgba(255,255,255,0.55)}a:hover{color:var(--color-eureka);transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:300ms;transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.container{width:100%}@media(min-width:640px){.container{max-width:640px}}@media(min-width:768px){.container{max-width:768px}}@media(min-width:1024px){.container{max-width:1024px}}@media(min-width:1280px){.container{max-width:1280px}}.content{color:var(--color-primary-text);line-height:1.5;word-wrap:break-word;overflow-wrap:break-word}.content>*{margin-bottom:1rem}.content li+li{margin-top:.25rem}.content li>p+p{margin-top:1.5rem}.content strong{font-weight:600}.content a{color:var(--color-eureka)}.content a:hover{color:var(--color-eureka);text-decoration:underline}.content strong a{font-weight:700}.content h1{line-height:1.25;border-bottom-width:1px;font-size:2.25rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem;padding-bottom:.5rem}.content h2{line-height:1.25;border-bottom-width:1px;font-size:1.5rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem;padding-bottom:.5rem}.content h3{line-height:1.375;font-size:1.125rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem}.content h4{line-height:1;font-size:1rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem}.content h5{line-height:1.25;font-size:.875rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem}.content h6{line-height:1.25;font-size:.875rem;font-weight:600;color:var(--color-secondary-text);margin-bottom:1rem;margin-top:1.5rem}.content blockquote{font-size:1rem;border-left-width:4px;border-color:var(--color-tertiary-text);padding-left:1rem;padding-right:1rem;color:var(--color-secondary-text)}.content code{font-family:SFMono-Regular,Menlo;font-size:.875rem;color:var(--color-tertiary-text);display:inline;background-color:var(--color-tertiary-bg);border-radius:.25rem;padding:.25rem}.content pre{background-color:var(--color-tertiary-bg);border-radius:.25rem;padding:1rem}.content pre code{display:block;background-color:transparent;padding:0;overflow:auto;border-radius:0}.content ul{font-size:1rem;padding-left:2rem;list-style-type:disc}.content ol{font-size:1rem;padding-left:2rem;list-style-type:decimal}.content kbd{font-size:.75rem;display:inline-block;border-radius:.25rem;border-width:1px;padding:.25rem;vertical-align:middle;font-weight:400;font-family:SFMono-Regular,Menlo;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.content table{display:block;font-size:1rem;border-color:var(--color-secondary-text);overflow:auto}.content th{border-width:1px;padding-top:.25rem;padding-bottom:.25rem;padding-left:.75rem;padding-right:.75rem}.content td{border-width:1px;padding-top:.25rem;padding-bottom:.25rem;padding-left:.75rem;padding-right:.75rem}.content .katex *{border-color:var(--color-primary-text)}.content *:target{padding-top:4rem;margin-top:-4rem}.sticky-toc{position:-webkit-sticky;position:sticky;top:8rem;z-index:0;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:300ms}.sticky-toc a{color:var(--color-primary-text);transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:200ms}.sticky-toc a:hover{color:var(--color-eureka)}.sticky-toc ul{font-size:1rem;padding-left:2rem;list-style-type:disc}.sticky-toc ol{font-size:1rem;padding-left:2rem;list-style-type:decimal}.sticky-toc li+li{margin-top:.25rem}.sticky-toc li>p+p{margin-top:1.5rem}.object-contain{-o-object-fit:contain!important;object-fit:contain!important}.pagination{display:flex;justify-content:center}.pagination .page-item{display:flex;align-items:center}.pagination .page-item .page-link{padding:.5rem;margin:.5rem}.pagination .active{color:var(--color-eureka)}.pagination .page-item:not(.disabled):hover{color:var(--color-eureka)}.selected-menu-item{color:var(--color-eureka);border-top-color:var(--color-eureka);border-bottom-color:transparent}.divide-y>:not(template)~:not(template){--divide-y-reverse: 0 !important;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)))!important;border-bottom-width:calc(1px * var(--divide-y-reverse))!important}.bg-fixed{background-attachment:fixed!important}.bg-local{background-attachment:local!important}.bg-scroll{background-attachment:scroll!important}.bg-white{--bg-opacity: 1 !important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.bg-primary-bg{background-color:var(--color-primary-bg)!important}.bg-secondary-bg{background-color:var(--color-secondary-bg)!important}.bg-tertiary-bg{background-color:var(--color-tertiary-bg)!important}.bg-opacity-75{--bg-opacity: 0.75 !important}.bg-bottom{background-position:bottom!important}.bg-center{background-position:50%!important}.bg-left{background-position:0!important}.bg-right{background-position:100%!important}.bg-top{background-position:top!important}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}.border-transparent{border-color:transparent!important}.border-tertiary-bg{border-color:var(--color-tertiary-bg)!important}.rounded{border-radius:.25rem!important}.rounded-full{border-radius:9999px!important}.border{border-width:1px!important}.border-t{border-top-width:1px!important}.border-r{border-right-width:1px!important}.border-b{border-bottom-width:1px!important}.border-l{border-left-width:1px!important}.box-border{box-sizing:border-box!important}.cursor-default{cursor:default!important}.cursor-pointer{cursor:pointer!important}.block{display:block!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.table{display:table!important}.grid{display:grid!important}.hidden{display:none!important}.flex-row{flex-direction:row!important}.flex-col{flex-direction:column!important}.flex-col-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.items-end{align-items:flex-end!important}.items-center{align-items:center!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.flex-none{flex:none!important}.flex-grow{flex-grow:1!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}.h-4{height:1rem!important}.h-24{height:6rem!important}.h-64{height:16rem!important}.h-96{height:24rem!important}.h-128{height:32rem!important}.h-160{height:40rem!important}.h-full{height:100%!important}.h-\(screen-16\){height:calc(100vh - 4rem)!important}.text-sm{font-size:.875rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.875rem!important}.leading-tight{line-height:1.25!important}.leading-normal{line-height:1.5!important}.-m-12{margin:-3rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.my-8{margin-top:2rem!important;margin-bottom:2rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.ml-0{margin-left:0!important}.mr-1{margin-right:.25rem!important}.ml-1{margin-left:.25rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mr-6{margin-right:1.5rem!important}.mb-6{margin-bottom:1.5rem!important}.mr-8{margin-right:2rem!important}.ml-8{margin-left:2rem!important}.mt-12{margin-top:3rem!important}.mb-12{margin-bottom:3rem!important}.mr-auto{margin-right:auto!important}.-mr-2{margin-right:-.5rem!important}.-mt-10{margin-top:-2.5rem!important}.-mt-16{margin-top:-4rem!important}.max-w-screen-xl{max-width:1280px!important}.min-h-16{min-height:4rem!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}.opacity-0{opacity:0!important}.overflow-hidden{overflow:hidden!important}.overflow-y-auto{overflow-y:auto!important}.p-2{padding:.5rem!important}.p-6{padding:1.5rem!important}.p-12{padding:3rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-8{padding-top:2rem!important;padding-bottom:2rem!important}.px-8{padding-left:2rem!important;padding-right:2rem!important}.py-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-32{padding-top:8rem!important;padding-bottom:8rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.pt-2{padding-top:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.pt-6{padding-top:1.5rem!important}.pr-6{padding-right:1.5rem!important}.pb-6{padding-bottom:1.5rem!important}.pl-6{padding-left:1.5rem!important}.pb-8{padding-bottom:2rem!important}.pt-10{padding-top:2.5rem!important}.pt-12{padding-top:3rem!important}.pt-16{padding-top:4rem!important}.pl-scrollbar{padding-left:calc(100vw - 100%)!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:-webkit-sticky!important;position:sticky!important}.inset-0{top:0!important;right:0!important;bottom:0!important;left:0!important}.left-0{left:0!important}.top-16{top:4rem!important}.right-auto{right:auto!important}.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-black{--text-opacity: 1 !important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.text-eureka{color:var(--color-eureka)!important}.text-primary-text{color:var(--color-primary-text)!important}.text-tertiary-text{color:var(--color-tertiary-text)!important}.hover\:text-eureka:hover{color:var(--color-eureka)!important}.text-opacity-75{--text-opacity: 0.75 !important}.hover\:underline:hover{text-decoration:underline!important}.w-4{width:1rem!important}.w-24{width:6rem!important}.w-48{width:12rem!important}.w-3\/12{width:25%!important}.w-full{width:100%!important}.z-0{z-index:0!important}.z-10{z-index:10!important}.z-20{z-index:20!important}.z-30{z-index:30!important}.z-40{z-index:40!important}.z-50{z-index:50!important}.gap-4{grid-gap:1rem!important;gap:1rem!important}.gap-8{grid-gap:2rem!important;gap:2rem!important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.col-span-2{grid-column:span 2/span 2!important}.col-span-4{grid-column:span 4/span 4!important}.col-span-5{grid-column:span 5/span 5!important}.col-start-2{grid-column-start:2!important}.col-start-3{grid-column-start:3!important}.col-start-5{grid-column-start:5!important}.grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.row-span-2{grid-row:span 2/span 2!important}.row-span-3{grid-row:span 3/span 3!important}.row-start-2{grid-row-start:2!important}.row-start-3{grid-row-start:3!important}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.ease-in-out{transition-timing-function:cubic-bezier(0.4,0,0.2,1)!important}.duration-200{transition-duration:200ms!important}@-webkit-keyframes spin{to{transform:rotate(360deg)}}@keyframes spin{to{transform:rotate(360deg)}}@-webkit-keyframes ping{75%,100%{transform:scale(2);opacity:0}}@keyframes ping{75%,100%{transform:scale(2);opacity:0}}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}@-webkit-keyframes bounce{0%,100%{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);animation-timing-function:cubic-bezier(0,0,0.2,1)}}@keyframes bounce{0%,100%{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);animation-timing-function:cubic-bezier(0,0,0.2,1)}}@media(min-width:640px){.sm\:container{width:100%}@media(min-width:640px){.sm\:container{max-width:640px}}@media(min-width:768px){.sm\:container{max-width:768px}}@media(min-width:1024px){.sm\:container{max-width:1024px}}@media(min-width:1280px){.sm\:container{max-width:1280px}}}@media(min-width:768px){.md\:container{width:100%}@media(min-width:640px){.md\:container{max-width:640px}}@media(min-width:768px){.md\:container{max-width:768px}}@media(min-width:1024px){.md\:container{max-width:1024px}}@media(min-width:1280px){.md\:container{max-width:1280px}}.md\:bg-transparent{background-color:transparent!important}.md\:bg-primary-bg{background-color:var(--color-primary-bg)!important}.md\:bg-secondary-bg{background-color:var(--color-secondary-bg)!important}.md\:border-b-0{border-bottom-width:0!important}.md\:border-t-2{border-top-width:2px!important}.md\:border-b-2{border-bottom-width:2px!important}.md\:border-r{border-right-width:1px!important}.md\:border-b{border-bottom-width:1px!important}.md\:block{display:block!important}.md\:inline-block{display:inline-block!important}.md\:flex{display:flex!important}.md\:hidden{display:none!important}.md\:flex-row{flex-direction:row!important}.md\:flex-col{flex-direction:column!important}.md\:items-center{align-items:center!important}.md\:justify-end{justify-content:flex-end!important}.md\:justify-between{justify-content:space-between!important}.md\:flex-grow{flex-grow:1!important}.md\:h-16{height:4rem!important}.md\:h-\(16-4px\){height:calc(4rem - 4px)!important}.md\:text-3xl{font-size:1.875rem!important}.md\:leading-\(16-4px\){line-height:calc(4rem - 4px)!important}.md\:mx-0{margin-left:0!important;margin-right:0!important}.md\:mt-0{margin-top:0!important}.md\:ml-0{margin-left:0!important}.md\:mr-4{margin-right:1rem!important}.md\:mr-8{margin-right:2rem!important}.md\:max-h-doc-sidebar{max-height:calc(100vh - 4rem - var(--height-doc-title,4rem))!important}.md\:py-0{padding-top:0!important;padding-bottom:0!important}.md\:px-4{padding-left:1rem!important;padding-right:1rem!important}.md\:px-8{padding-left:2rem!important;padding-right:2rem!important}.md\:pt-0{padding-top:0!important}.md\:pr-0{padding-right:0!important}.md\:pb-0{padding-bottom:0!important}.md\:pt-8{padding-top:2rem!important}.md\:pr-8{padding-right:2rem!important}.md\:right-0{right:0!important}.md\:left-auto{left:auto!important}.md\:text-right{text-align:right!important}.md\:text-primary-text{color:var(--color-primary-text)!important}.md\:w-auto{width:auto!important}.md\:w-1\/4{width:25%!important}.md\:w-3\/4{width:75%!important}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(min-width:1024px){.lg\:container{width:100%}@media(min-width:640px){.lg\:container{max-width:640px}}@media(min-width:768px){.lg\:container{max-width:768px}}@media(min-width:1024px){.lg\:container{max-width:1024px}}@media(min-width:1280px){.lg\:container{max-width:1280px}}.lg\:block{display:block!important}.lg\:flex-row{flex-direction:row!important}.lg\:flex-row-reverse{flex-direction:row-reverse!important}.lg\:mb-0{margin-bottom:0!important}.lg\:mr-4{margin-right:1rem!important}.lg\:ml-4{margin-left:1rem!important}.lg\:ml-8{margin-left:2rem!important}.lg\:px-4{padding-left:1rem!important;padding-right:1rem!important}.lg\:pt-12{padding-top:3rem!important}.lg\:w-1\/2{width:50%!important}.lg\:w-1\/3{width:33.333333%!important}.lg\:w-2\/3{width:66.666667%!important}.lg\:w-1\/4{width:25%!important}.lg\:w-3\/4{width:75%!important}.lg\:w-1\/5{width:20%!important}.lg\:w-4\/5{width:80%!important}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.lg\:col-span-6{grid-column:span 6/span 6!important}.lg\:col-start-2{grid-column-start:2!important}}@media(min-width:1280px){.xl\:container{width:100%}@media(min-width:640px){.xl\:container{max-width:640px}}@media(min-width:768px){.xl\:container{max-width:768px}}@media(min-width:1024px){.xl\:container{max-width:1024px}}@media(min-width:1280px){.xl\:container{max-width:1280px}}.xl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.xl\:px-8{padding-left:2rem!important;padding-right:2rem!important}.xl\:px-12{padding-left:3rem!important;padding-right:3rem!important}.xl\:w-2\/12{width:16.666667%!important}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}} \ No newline at end of file
+/*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;line-height:1.5}*,::before,::after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e2e8f0}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}button,[role=button]{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}:root{font-family:Lora,Noto Serif SC,serif;background-color:var(--color-primary-bg);color:var(--color-primary-text);--color-eureka: #38B2AC;--color-primary-bg: rgba(242,242,247,1.00);--color-secondary-bg: rgba(255,255,255,1.00);--color-tertiary-bg: rgba(242,242,247,1.00);--color-primary-text: rgba(0,0,0,0.85);--color-secondary-text: rgba(0,0,0,0.7);--color-tertiary-text: rgba(0,0,0,0.55)}.dark{--color-eureka: #38B2AC;--color-primary-bg: rgba(0,0,0,1.00);--color-secondary-bg: rgba(28,28,30,1.00);--color-tertiary-bg: rgba(44,44,46,1.00);--color-primary-text: rgba(255,255,255,0.85);--color-secondary-text: rgba(255,255,255,0.7);--color-tertiary-text: rgba(255,255,255,0.55)}a:hover{color:var(--color-eureka);transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-duration:300ms;transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.container{width:100%}@media(min-width:640px){.container{max-width:640px}}@media(min-width:768px){.container{max-width:768px}}@media(min-width:1024px){.container{max-width:1024px}}@media(min-width:1280px){.container{max-width:1280px}}.content{color:var(--color-primary-text);line-height:1.5;word-wrap:break-word;overflow-wrap:break-word}.content>*{margin-bottom:1rem}.content li+li{margin-top:.25rem}.content li>p+p{margin-top:1.5rem}.content strong{font-weight:600}.content a{color:var(--color-eureka)}.content a:hover{color:var(--color-eureka);text-decoration:underline}.content strong a{font-weight:700}.content h1{line-height:1.25;border-bottom-width:1px;font-size:2.25rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem;padding-bottom:.5rem}.content h2{line-height:1.25;border-bottom-width:1px;font-size:1.5rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem;padding-bottom:.5rem}.content h3{line-height:1.375;font-size:1.125rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem}.content h4{line-height:1;font-size:1rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem}.content h5{line-height:1.25;font-size:.875rem;font-weight:600;margin-bottom:1rem;margin-top:1.5rem}.content h6{line-height:1.25;font-size:.875rem;font-weight:600;color:var(--color-secondary-text);margin-bottom:1rem;margin-top:1.5rem}.content blockquote{font-size:1rem;border-left-width:4px;border-color:var(--color-tertiary-text);padding-left:1rem;padding-right:1rem;color:var(--color-secondary-text)}.content code{font-family:SFMono-Regular,Menlo;font-size:.875rem;color:var(--color-tertiary-text);display:inline;background-color:var(--color-tertiary-bg);border-radius:.25rem;padding:.25rem}.content pre{background-color:var(--color-tertiary-bg);border-radius:.25rem;padding:1rem}.content pre code{display:block;background-color:transparent;padding:0;overflow:auto;border-radius:0}.content ul{font-size:1rem;padding-left:2rem;list-style-type:disc}.content ol{font-size:1rem;padding-left:2rem;list-style-type:decimal}.content kbd{font-size:.75rem;display:inline-block;border-radius:.25rem;border-width:1px;padding:.25rem;vertical-align:middle;font-weight:400;font-family:SFMono-Regular,Menlo;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.content table{display:block;font-size:1rem;border-color:var(--color-secondary-text);overflow:auto}.content th{border-width:1px;padding-top:.25rem;padding-bottom:.25rem;padding-left:.75rem;padding-right:.75rem}.content td{border-width:1px;padding-top:.25rem;padding-bottom:.25rem;padding-left:.75rem;padding-right:.75rem}.content .katex *{border-color:var(--color-primary-text)}.content *:target{padding-top:4rem;margin-top:-4rem}.sticky-toc{position:-webkit-sticky;position:sticky;top:8rem;z-index:0;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:300ms}.sticky-toc a{color:var(--color-primary-text);transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:200ms}.sticky-toc a:hover{color:var(--color-eureka)}.sticky-toc ul{font-size:1rem;padding-left:2rem;list-style-type:disc}.sticky-toc ol{font-size:1rem;padding-left:2rem;list-style-type:decimal}.sticky-toc li+li{margin-top:.25rem}.sticky-toc li>p+p{margin-top:1.5rem}.object-contain{-o-object-fit:contain!important;object-fit:contain!important}.pagination{display:flex;justify-content:center}.pagination .page-item{display:flex;align-items:center}.pagination .page-item .page-link{padding:.5rem;margin:.5rem}.pagination .active{color:var(--color-eureka)}.pagination .page-item:not(.disabled):hover{color:var(--color-eureka)}.selected-menu-item{color:var(--color-eureka);border-top-color:var(--color-eureka);border-bottom-color:transparent}.divide-y>:not(template)~:not(template){--divide-y-reverse: 0 !important;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)))!important;border-bottom-width:calc(1px * var(--divide-y-reverse))!important}.bg-fixed{background-attachment:fixed!important}.bg-local{background-attachment:local!important}.bg-scroll{background-attachment:scroll!important}.bg-white{--bg-opacity: 1 !important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.bg-primary-bg{background-color:var(--color-primary-bg)!important}.bg-secondary-bg{background-color:var(--color-secondary-bg)!important}.bg-tertiary-bg{background-color:var(--color-tertiary-bg)!important}.bg-opacity-75{--bg-opacity: 0.75 !important}.bg-bottom{background-position:bottom!important}.bg-center{background-position:50%!important}.bg-left{background-position:0!important}.bg-right{background-position:100%!important}.bg-top{background-position:top!important}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}.border-transparent{border-color:transparent!important}.border-tertiary-bg{border-color:var(--color-tertiary-bg)!important}.rounded{border-radius:.25rem!important}.rounded-full{border-radius:9999px!important}.border{border-width:1px!important}.border-t{border-top-width:1px!important}.border-r{border-right-width:1px!important}.border-b{border-bottom-width:1px!important}.border-l{border-left-width:1px!important}.box-border{box-sizing:border-box!important}.cursor-default{cursor:default!important}.cursor-pointer{cursor:pointer!important}.block{display:block!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.table{display:table!important}.grid{display:grid!important}.hidden{display:none!important}.flex-row{flex-direction:row!important}.flex-col{flex-direction:column!important}.flex-col-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.items-end{align-items:flex-end!important}.items-center{align-items:center!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.flex-none{flex:none!important}.flex-grow{flex-grow:1!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}.h-4{height:1rem!important}.h-24{height:6rem!important}.h-64{height:16rem!important}.h-96{height:24rem!important}.h-128{height:32rem!important}.h-160{height:40rem!important}.h-full{height:100%!important}.h-\(screen-16\){height:calc(100vh - 4rem)!important}.text-sm{font-size:.875rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.875rem!important}.leading-normal{line-height:1.5!important}.-m-12{margin:-3rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.my-8{margin-top:2rem!important;margin-bottom:2rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.ml-0{margin-left:0!important}.mr-1{margin-right:.25rem!important}.ml-1{margin-left:.25rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mr-6{margin-right:1.5rem!important}.mb-6{margin-bottom:1.5rem!important}.mr-8{margin-right:2rem!important}.ml-8{margin-left:2rem!important}.mt-12{margin-top:3rem!important}.mb-12{margin-bottom:3rem!important}.mr-auto{margin-right:auto!important}.-mr-2{margin-right:-.5rem!important}.-mt-10{margin-top:-2.5rem!important}.-mt-16{margin-top:-4rem!important}.max-w-screen-xl{max-width:1280px!important}.min-h-16{min-height:4rem!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}.opacity-0{opacity:0!important}.overflow-hidden{overflow:hidden!important}.overflow-y-auto{overflow-y:auto!important}.p-2{padding:.5rem!important}.p-6{padding:1.5rem!important}.p-12{padding:3rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-8{padding-top:2rem!important;padding-bottom:2rem!important}.px-8{padding-left:2rem!important;padding-right:2rem!important}.py-12{padding-top:3rem!important;padding-bottom:3rem!important}.py-32{padding-top:8rem!important;padding-bottom:8rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.pt-2{padding-top:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.pt-6{padding-top:1.5rem!important}.pr-6{padding-right:1.5rem!important}.pb-6{padding-bottom:1.5rem!important}.pl-6{padding-left:1.5rem!important}.pb-8{padding-bottom:2rem!important}.pt-10{padding-top:2.5rem!important}.pt-12{padding-top:3rem!important}.pt-16{padding-top:4rem!important}.pl-scrollbar{padding-left:calc(100vw - 100%)!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:-webkit-sticky!important;position:sticky!important}.inset-0{top:0!important;right:0!important;bottom:0!important;left:0!important}.left-0{left:0!important}.top-16{top:4rem!important}.right-auto{right:auto!important}.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-black{--text-opacity: 1 !important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.text-eureka{color:var(--color-eureka)!important}.text-primary-text{color:var(--color-primary-text)!important}.text-tertiary-text{color:var(--color-tertiary-text)!important}.hover\:text-eureka:hover{color:var(--color-eureka)!important}.text-opacity-75{--text-opacity: 0.75 !important}.hover\:underline:hover{text-decoration:underline!important}.w-4{width:1rem!important}.w-24{width:6rem!important}.w-48{width:12rem!important}.w-3\/12{width:25%!important}.w-full{width:100%!important}.z-0{z-index:0!important}.z-10{z-index:10!important}.z-20{z-index:20!important}.z-30{z-index:30!important}.z-40{z-index:40!important}.z-50{z-index:50!important}.gap-4{grid-gap:1rem!important;gap:1rem!important}.gap-8{grid-gap:2rem!important;gap:2rem!important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.col-span-2{grid-column:span 2/span 2!important}.col-span-4{grid-column:span 4/span 4!important}.col-span-5{grid-column:span 5/span 5!important}.col-start-2{grid-column-start:2!important}.col-start-3{grid-column-start:3!important}.col-start-5{grid-column-start:5!important}.grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.row-span-2{grid-row:span 2/span 2!important}.row-span-3{grid-row:span 3/span 3!important}.row-start-2{grid-row-start:2!important}.row-start-3{grid-row-start:3!important}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.ease-in-out{transition-timing-function:cubic-bezier(0.4,0,0.2,1)!important}.duration-200{transition-duration:200ms!important}@-webkit-keyframes spin{to{transform:rotate(360deg)}}@keyframes spin{to{transform:rotate(360deg)}}@-webkit-keyframes ping{75%,100%{transform:scale(2);opacity:0}}@keyframes ping{75%,100%{transform:scale(2);opacity:0}}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}@-webkit-keyframes bounce{0%,100%{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);animation-timing-function:cubic-bezier(0,0,0.2,1)}}@keyframes bounce{0%,100%{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(0.8,0,1,1);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,0.2,1);animation-timing-function:cubic-bezier(0,0,0.2,1)}}@media(min-width:640px){.sm\:container{width:100%}@media(min-width:640px){.sm\:container{max-width:640px}}@media(min-width:768px){.sm\:container{max-width:768px}}@media(min-width:1024px){.sm\:container{max-width:1024px}}@media(min-width:1280px){.sm\:container{max-width:1280px}}}@media(min-width:768px){.md\:container{width:100%}@media(min-width:640px){.md\:container{max-width:640px}}@media(min-width:768px){.md\:container{max-width:768px}}@media(min-width:1024px){.md\:container{max-width:1024px}}@media(min-width:1280px){.md\:container{max-width:1280px}}.md\:bg-transparent{background-color:transparent!important}.md\:bg-primary-bg{background-color:var(--color-primary-bg)!important}.md\:bg-secondary-bg{background-color:var(--color-secondary-bg)!important}.md\:border-b-0{border-bottom-width:0!important}.md\:border-t-2{border-top-width:2px!important}.md\:border-b-2{border-bottom-width:2px!important}.md\:border-r{border-right-width:1px!important}.md\:border-b{border-bottom-width:1px!important}.md\:block{display:block!important}.md\:inline-block{display:inline-block!important}.md\:flex{display:flex!important}.md\:hidden{display:none!important}.md\:flex-row{flex-direction:row!important}.md\:flex-col{flex-direction:column!important}.md\:items-center{align-items:center!important}.md\:justify-end{justify-content:flex-end!important}.md\:justify-between{justify-content:space-between!important}.md\:flex-grow{flex-grow:1!important}.md\:h-16{height:4rem!important}.md\:h-\(16-4px\){height:calc(4rem - 4px)!important}.md\:text-3xl{font-size:1.875rem!important}.md\:leading-\(16-4px\){line-height:calc(4rem - 4px)!important}.md\:mx-0{margin-left:0!important;margin-right:0!important}.md\:mt-0{margin-top:0!important}.md\:ml-0{margin-left:0!important}.md\:mr-4{margin-right:1rem!important}.md\:mr-8{margin-right:2rem!important}.md\:max-h-doc-sidebar{max-height:calc(100vh - 4rem - var(--height-doc-title,4rem))!important}.md\:py-0{padding-top:0!important;padding-bottom:0!important}.md\:px-4{padding-left:1rem!important;padding-right:1rem!important}.md\:px-8{padding-left:2rem!important;padding-right:2rem!important}.md\:pt-0{padding-top:0!important}.md\:pr-0{padding-right:0!important}.md\:pb-0{padding-bottom:0!important}.md\:pt-8{padding-top:2rem!important}.md\:pr-8{padding-right:2rem!important}.md\:right-0{right:0!important}.md\:left-auto{left:auto!important}.md\:text-right{text-align:right!important}.md\:text-primary-text{color:var(--color-primary-text)!important}.md\:w-auto{width:auto!important}.md\:w-1\/4{width:25%!important}.md\:w-3\/4{width:75%!important}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(min-width:1024px){.lg\:container{width:100%}@media(min-width:640px){.lg\:container{max-width:640px}}@media(min-width:768px){.lg\:container{max-width:768px}}@media(min-width:1024px){.lg\:container{max-width:1024px}}@media(min-width:1280px){.lg\:container{max-width:1280px}}.lg\:block{display:block!important}.lg\:flex-row{flex-direction:row!important}.lg\:flex-row-reverse{flex-direction:row-reverse!important}.lg\:mb-0{margin-bottom:0!important}.lg\:mr-4{margin-right:1rem!important}.lg\:ml-4{margin-left:1rem!important}.lg\:ml-8{margin-left:2rem!important}.lg\:px-4{padding-left:1rem!important;padding-right:1rem!important}.lg\:pt-12{padding-top:3rem!important}.lg\:w-1\/2{width:50%!important}.lg\:w-1\/3{width:33.333333%!important}.lg\:w-2\/3{width:66.666667%!important}.lg\:w-1\/4{width:25%!important}.lg\:w-3\/4{width:75%!important}.lg\:w-1\/5{width:20%!important}.lg\:w-4\/5{width:80%!important}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.lg\:col-span-6{grid-column:span 6/span 6!important}.lg\:col-start-2{grid-column-start:2!important}}@media(min-width:1280px){.xl\:container{width:100%}@media(min-width:640px){.xl\:container{max-width:640px}}@media(min-width:768px){.xl\:container{max-width:768px}}@media(min-width:1024px){.xl\:container{max-width:1024px}}@media(min-width:1280px){.xl\:container{max-width:1280px}}.xl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.xl\:px-8{padding-left:2rem!important;padding-right:2rem!important}.xl\:px-12{padding-left:3rem!important;padding-right:3rem!important}.xl\:w-2\/12{width:16.666667%!important}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}} \ No newline at end of file