From e61809d59a27171ffe56ca73f53e7e0dfa750194 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Fri, 8 Mar 2024 11:20:33 +0800 Subject: [PATCH 01/10] fix: the margin of rss icon is lesser than others --- assets/css/main.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/assets/css/main.css b/assets/css/main.css index 6829e28..ab267b5 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -34,6 +34,8 @@ :root { --card-border-radius: 0.5em; --card-margin: 1.5em; + --icon-margin-left: 1em; + --icon-margin-top: 1em; } html { @@ -303,7 +305,7 @@ header nav a { /* Social icons */ .social-icons { display: inline; - margin: 1em 0 0 1em; + margin: var(--icon-margin-top) 0 0 var(--icon-margin-left); padding: 0; list-style-type: none; } @@ -313,7 +315,7 @@ header nav a { } .social-icons li:not(:first-of-type) { - margin-left: 0.5em; + margin-left: var(--icon-margin-left); } .social-icons a:hover, @@ -779,7 +781,7 @@ ul.language-select > li, ul.footer-menu > li { .theme-switcher { color: var(--switcher-color); /* padding: 0.5em 1em; */ - margin: 1em 0 0 1.5em; + margin: var(--icon-margin-top) 0 0 var(--icon-margin-left); cursor: pointer; } From 4cba618ce11352c50be4e9d48d7fe96547413cb3 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Wed, 13 Mar 2024 16:14:18 +0800 Subject: [PATCH 02/10] bug fix: DOMContentLoaded --- layouts/partials/theme-switcher.html | 116 ++++++++++++--------------- 1 file changed, 51 insertions(+), 65 deletions(-) diff --git a/layouts/partials/theme-switcher.html b/layouts/partials/theme-switcher.html index a2e22f9..90e85f5 100644 --- a/layouts/partials/theme-switcher.html +++ b/layouts/partials/theme-switcher.html @@ -1,79 +1,65 @@ {{ $style := "light-without-switcher" }} {{ if and (isset site.Params "style") (ne site.Params.style "") }} - {{ $style = site.Params.style | lower }} +{{ $style = site.Params.style | lower }} {{ end }} {{ if not (in (slice "light-without-switcher" "dark-without-switcher") $style) }} - {{ if ne "auto-without-switcher" $style }} -
- {{ partial "font-awesome.html" (dict "iconName" "theme-light" "custom" false) }} -
- {{ end }} +{{ if ne "auto-without-switcher" $style }} +
+ {{ partial "font-awesome.html" (dict "iconName" "theme-light" "custom" false) }} +
+{{ end }} - -{{ end }} + if (defaultTheme) { + return defaultTheme + } + return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'; + } + + function switchTheme(e) { + currentTheme = (currentTheme === 'dark') ? 'light' : 'dark'; + if (localStorage) localStorage.setItem(STORAGE_KEY, currentTheme); + document.documentElement.setAttribute('data-theme', currentTheme); + } + + function showContent() { + document.body.style.visibility = 'visible'; + document.body.style.opacity = 1; + } + +{{ end }} \ No newline at end of file From a29bf0d7b0e02afd37ba3bdfff6d8f805d5ee5d6 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Wed, 13 Mar 2024 16:14:36 +0800 Subject: [PATCH 03/10] rename "social.html" to "social-icons.html" --- layouts/partials/header.html | 2 +- layouts/partials/social-icons.html | 37 ++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/social-icons.html diff --git a/layouts/partials/header.html b/layouts/partials/header.html index a3a37cf..950cbb6 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -2,7 +2,7 @@
{{ partial "site-title.html" . }} {{ partial "theme-switcher.html" . }} - {{ partial "social.html" . }} + {{ partial "social-icons.html" . }}
diff --git a/layouts/partials/social-icons.html b/layouts/partials/social-icons.html new file mode 100644 index 0000000..e358068 --- /dev/null +++ b/layouts/partials/social-icons.html @@ -0,0 +1,37 @@ + \ No newline at end of file From 8aba5146323c6cba096c374b06c804c6512b9fa8 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Wed, 13 Mar 2024 16:38:42 +0800 Subject: [PATCH 04/10] remove hugo code in .css files. --- assets/css/dark.css | 92 +++++++++++++++++++++++++++----------- assets/css/light.css | 12 +++-- assets/css/main.css | 33 +------------- layouts/partials/head.html | 2 + 4 files changed, 74 insertions(+), 65 deletions(-) diff --git a/assets/css/dark.css b/assets/css/dark.css index b1b339f..43bda3f 100644 --- a/assets/css/dark.css +++ b/assets/css/dark.css @@ -1,35 +1,75 @@ -/* dark.css */ ---font-color: #dadadb; ---bg-color: #1d1e20; - ---card-color: #2e2e33; ---card-border-color: #333333; +@media (prefers-color-scheme: dark) { + html { + --font-color: #dadadb; + --bg-color: #1d1e20; ---link-color:#599ada; ---link-state-color:#ff5858; ---link-state-border-color: rgba(238, 54, 54, 0.5); + --card-color: #2e2e33; + --card-border-color: #333333; ---thead-bg-color: #343a40; ---table-border-color: lightgrey; + --link-color: #599ada; + --link-state-color: #ff5858; + --link-state-border-color: rgba(238, 54, 54, 0.5); ---nav-bg-color: #2e2e33; ---nav-link-color: #b6b6b6; + --thead-bg-color: #343a40; + --table-border-color: lightgrey; ---pre-color: #f8f8f2; ---pre-bg-color: rgba(175, 184, 193, 0.1); ---pre-border-color: rgba(175, 184, 193, 0.3); + --nav-bg-color: #2e2e33; + --nav-link-color: #b6b6b6; ---bq-color: #ccc; ---hr-color: #333; + --pre-color: #f8f8f2; + --pre-bg-color: rgba(175, 184, 193, 0.1); + --pre-border-color: rgba(175, 184, 193, 0.3); ---pagination-bg-color: #2e2e33; ---pagination-link-color: #b6b6b6; ---pagination-border-color: #333333; ---pagination-border-radius: 5px; + --bq-color: #ccc; + --hr-color: #333; ---post-info-color: grey; + --pagination-bg-color: #2e2e33; + --pagination-link-color: #b6b6b6; + --pagination-border-color: #333333; + --pagination-border-radius: 5px; ---switcher-color: #fff; + --post-info-color: grey; ---svg-color: #ccc; ---svg-state-color:#ff5858; + --switcher-color: #fff; + + --svg-color: #ccc; + --svg-state-color: #ff5858; + } +} +/* Same as above. */ +html[data-theme='dark'] { + --font-color: #dadadb; + --bg-color: #1d1e20; + + --card-color: #2e2e33; + --card-border-color: #333333; + + --link-color: #599ada; + --link-state-color: #ff5858; + --link-state-border-color: rgba(238, 54, 54, 0.5); + + --thead-bg-color: #343a40; + --table-border-color: lightgrey; + + --nav-bg-color: #2e2e33; + --nav-link-color: #b6b6b6; + + --pre-color: #f8f8f2; + --pre-bg-color: rgba(175, 184, 193, 0.1); + --pre-border-color: rgba(175, 184, 193, 0.3); + + --bq-color: #ccc; + --hr-color: #333; + + --pagination-bg-color: #2e2e33; + --pagination-link-color: #b6b6b6; + --pagination-border-color: #333333; + --pagination-border-radius: 5px; + + --post-info-color: grey; + + --switcher-color: #fff; + + --svg-color: #ccc; + --svg-state-color: #ff5858; +} \ No newline at end of file diff --git a/assets/css/light.css b/assets/css/light.css index 408d806..4487b08 100644 --- a/assets/css/light.css +++ b/assets/css/light.css @@ -1,14 +1,12 @@ -:root { - /* light.css */ +html[data-theme='light'] { --font-color: #1e1e1e; --bg-color: #ffffff; - + --card-color: #fafafa; --card-border-color: #eeeeee; - - --link-color:#1d60a3; - --link-state-color:rgb(163, 29, 29); + --link-color: #1d60a3; + --link-state-color: rgb(163, 29, 29); --link-state-border-color: rgba(163, 29, 29, .5); --thead-bg-color: lightgrey; @@ -35,4 +33,4 @@ --svg-color: #333; --svg-state-color: #a31d1d; -} +} \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css index ab267b5..ca582e5 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,34 +1,3 @@ -{{ $light := resources.Get "css/light.css" }} -{{ $dark := resources.Get "css/dark.css" }} - -{{ $style := "light-without-switcher" }} -{{ if and (isset site.Params "style") (ne site.Params.style "") }} - {{ $style = site.Params.style | lower }} -{{ end }} - -{{ if eq $style "dark-without-switcher" }} -:root { - {{ $dark.Content }} -} - -{{ else }} - -{{ $light.Content }} - -{{ if eq $style "auto-without-switcher" }} -@media (prefers-color-scheme: dark) { - :root { - {{ $dark.Content }} - } -} -{{ else if ne $style "light-without-switcher" }} -[data-theme="dark"] { - {{ $dark.Content }} -} -{{ end }} - -{{ end }} - /* Basic */ :root { @@ -207,7 +176,7 @@ pre, kbd { color: var(--pre-color); background-color: var(--pre-bg-color); - font-family: monospace; + font-family: 'Courier New', 'Consolas', monospace; font-size: 0.90em; line-height: 154%; border-radius: 6px; diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 5e3610c..c4c6ab0 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -45,6 +45,8 @@ {{end}} {{ partial "resource.html" (dict "context" . "type" "css" "filename" "css/main.css") }} +{{ partial "resource.html" (dict "context" . "type" "css" "filename" "css/light.css") }} +{{ partial "resource.html" (dict "context" . "type" "css" "filename" "css/dark.css") }} {{ if .Site.Params.copyCodeButton | default true }} {{ partial "resource.html" (dict "context" . "type" "js" "filename" "js/copy-code.js") }} From 9e2a23e83b153f40c33741b8a3923b1ab22e9f79 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Wed, 13 Mar 2024 16:38:52 +0800 Subject: [PATCH 05/10] remove config file exmaple --- README.md | 96 ------------------------------------------------------- 1 file changed, 96 deletions(-) diff --git a/README.md b/README.md index 145401f..d68c266 100644 --- a/README.md +++ b/README.md @@ -47,102 +47,6 @@ For more information read the official [setup guide](https://gohugo.io/overview/ ## Getting started After installing the theme successfully it requires a just a few more steps to get your site running. -### Update config file -If you have toml config (which is by default), you should rename it to config.yaml or adapt this config for toml syntax. - -Example of config.yaml: -```yaml -languageCode: "en-us" -baseUrl: "" -title: "Anubis" -theme: "anubis" -paginate: 10 -disqusShortname: "yourdiscussshortname" -googleAnalytics: "G-12345" -enableRobotsTXT: true - -menu: - main: - - identifier: archive - name: Archive - title: Archive - url: /posts/ - weight: 0 - -params: - author: "John Doe" - email: mail@example.org # used for microformats - avatar: "/images/me.png" # used for microformats - description: "" - # Uncomment if you need this - # images: - # - images/og-featured.png # relative path to "static" directory - # customCSS: - # - css/my.css # relative path to "assets" directory (don't use main.css filename) - # customJS: - # - js/main.js # relative path to "assets" directory - dateFormat: "2006-01-02" - paginationSinglePost: true - style: light-without-switcher - mainSections: [ "posts" ] # which sections should be on index/main page - sectionsWithFullContentOnListPage: [ "notes" ] # for which sections content should be displayed on list pages - readMore: false # show read more button - readNextPosts: 5 # show 5 related posts, 0 by default - disableSummary: false - toc: true # display Table of Contents - tocWordCount: 300 # ...when a post is longer than 300 words - copyCodeButton: true # true by default - rssAsSocialIcon: true - mathjax: false # https://www.mathjax.org/ loading cost 257.4KiB network traffic - # utteranc.es support - utterancesRepo: "" # mandatory - utterancesTheme: "" # optional - utterancesIssue: "" # optional - utterancesLabel: "" # optional - # isso support - isso: - enabled: true # mandatory - data: "https://comments.example.com/" # mandatory - jsLocation: "https://comments.example.com/js/embed.min.js" # mandatory - css: true # optional - lang: "de" # optional - replyToSelf: true # mandatory - requireAuthor: true # mandatory - requireEmail: true # mandatory - id: "thread-id" # optional - avatar: true # optional - avatar-bg: "#f0f0f0" # optional - feed: false # optional - UmamiAnalytics: - enabled: true # mandatory - dnt: true # optional - id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # mandatory - datacache: false # optional - url: "https://abc.example.com/umami.js" # mandatory - graphcommentId: "" - # giscus support - GiscusRepo: "" # mandatory - GiscusRepoId: "" # mandatory - GiscusCategory: "Announcements" # mandatory - GiscusCategoryId: "" # mandatory - GiscusLazyLoad: false # optional - webmentions: - url: https://yourdomain.com/webemntions/receive - login: hugo-theme-anubis - pingback: true - social: - - id: github - name: gohugoio -# - id: hugo -# url: "https://gohugo.io/" -# icon: "hugo" - -markup: - goldmark: - renderer: - unsafe: true # enable raw HTML in Markdown -``` - ### Check your site In order to see your site in action, run Hugo's built-in local server. From 4629494c03a0cdf7028644a54b61b71a047ad36b Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Wed, 13 Mar 2024 16:42:54 +0800 Subject: [PATCH 06/10] rename "style" to "colorTheme", add "colorThemeSwitcher" --- layouts/partials/head.html | 8 +- layouts/partials/theme-switcher.html | 107 ++++++++++++++------------- 2 files changed, 58 insertions(+), 57 deletions(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index c4c6ab0..b0c0768 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -21,12 +21,12 @@ {{ partial "favicons.html" . }} -{{ $style := "light-without-switcher" }} -{{ if and (isset site.Params "style") (ne site.Params.style "") }} - {{ $style = site.Params.style | lower }} +{{ $colorTheme := "light-without-switcher" }} +{{ if and (isset site.Params "colortheme") (ne site.Params.colortheme "") }} + {{ $colorTheme = site.Params.colortheme | lower }} {{ end }} -{{ if not (in (slice "light-without-switcher" "dark-without-switcher") $style) }} +{{ if not (in (slice "light-without-switcher" "dark-without-switcher") $colorTheme) }} -{{< /css.inline >}} \ No newline at end of file diff --git a/exampleSite/content/post/hidden-post.md b/exampleSite/content/post/hidden-post.md deleted file mode 100644 index 96b33ed..0000000 --- a/exampleSite/content/post/hidden-post.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -author = "Junyi" -title = "Hidden Post" -date = "2021-12-24" -description = "Post available only by link" -tags = [ - "privacy" -] -hidden = true -+++ - -This is hidden post \ No newline at end of file diff --git a/exampleSite/content/post/markdown-syntax.md b/exampleSite/content/post/markdown-syntax.md deleted file mode 100644 index 49114db..0000000 --- a/exampleSite/content/post/markdown-syntax.md +++ /dev/null @@ -1,146 +0,0 @@ -+++ -author = "Hugo Authors" -title = "Markdown Syntax Guide" -date = "2019-03-11" -description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements." -tags = [ - "markdown", - "css", - "html", - "themes", -] -categories = [ - "themes", - "syntax", -] -aliases = ["migrate-from-jekyl"] -favorite = true -+++ - -This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. - - -## Headings - -The following HTML `

`โ€”`

` elements represent six levels of section headings. `

` is the highest section level while `

` is the lowest. - -# H1 -## H2 -### H3 -#### H4 -##### H5 -###### H6 - -## Paragraph - -Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. - -Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. - -## Blockquotes - -The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations. - -#### Blockquote without attribution - -> Tiam, ad mint andaepu dandae nostion secatur sequo quae. -> **Note** that you can use *Markdown syntax* within a blockquote. - -#### Blockquote with attribution - -> Don't communicate by sharing memory, share memory by communicating.

-> โ€” Rob Pike[^1] - - -[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. - -## Tables - -Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box. - - Name | Age ---------|------ - Bob | 27 - Alice | 23 - -#### Inline Markdown within tables - -| Inline    | Markdown    | In    | Table | -| ---------- | --------- | ----------------- | ---------- | -| *italics* | **bold** | ~~strikethrough~~    | `code` | - -## Code Blocks - -#### Code block with backticks - -```html - - - - - Example HTML5 Document - - -

Test

- - -``` -#### Code block indented with four spaces - - - - - - Example HTML5 Document - - -

Test

- - - -#### Code block with Hugo's internal highlight shortcode -{{< highlight html >}} - - - - - Example HTML5 Document - - -

Test

- - -{{< /highlight >}} - -## List Types - -#### Ordered List - -1. First item -2. Second item -3. Third item - -#### Unordered List - -* List item -* Another item -* And another item - -#### Nested list - -* Item -1. First Sub-item -2. Second Sub-item - -## Other Elements โ€” abbr, sub, sup, kbd, mark - -GIF is a bitmap image format. - -H2O - -Xn + Yn = Zn - -Press CTRL+ALT+Delete to end the session. - -Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. - diff --git a/exampleSite/content/post/math-typesetting.md b/exampleSite/content/post/math-typesetting.md deleted file mode 100644 index a1467e3..0000000 --- a/exampleSite/content/post/math-typesetting.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -author: Hugo Authors -title: Math Typesetting -date: 2019-03-08 -description: A brief guide to setup KaTeX -math: true ---- - -Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries. - - -In this example we will be using [KaTeX](https://katex.org/) - -- Create a partial under `/layouts/partials/math.html` -- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally. -- Include the partial in your templates like so: - -``` -{{ if or .Params.math .Site.Params.math }} -{{ partial "math.html" . }} -{{ end }} -``` -- To enable KaTex globally set the parameter `math` to `true` in a project's configuration -- To enable KaTex on a per page basis include the parameter `math: true` in content files. - -**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html) -{{< math.inline >}} -{{ if or .Page.Params.math .Site.Params.math }} - - - - -{{ end }} -{{}} - -### Examples - -Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887โ€ฆ $$ - -Block math: - -$$ - \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } -$$ - diff --git a/exampleSite/content/post/placeholder-text.md b/exampleSite/content/post/placeholder-text.md deleted file mode 100644 index 29ff09f..0000000 --- a/exampleSite/content/post/placeholder-text.md +++ /dev/null @@ -1,58 +0,0 @@ -+++ -author = "Hugo Authors" -title = "Placeholder Text" -date = "2019-03-09" -description = "Lorem Ipsum Dolor Si Amet" -tags = [ - "markdown", - "text", -] -+++ - -Lorem est tota propiore conpellat pectoribus de -pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice -subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc -caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis -lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum. - -1. Exierant elisi ambit vivere dedere -2. Duce pollice -3. Eris modo -4. Spargitque ferrea quos palude - -Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus -silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria -tractus malis. - -1. Comas hunc haec pietate fetum procerum dixit -2. Post torum vates letum Tiresia -3. Flumen querellas -4. Arcanaque montibus omnes -5. Quidem et - -# Vagus elidunt - - - -[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon) - -## Mane refeci capiebant unda mulcebat - -Victa caducifer, malo vulnere contra -dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere -furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis. - -Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli -Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare -Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert -ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae -vulnus haerentia iuste et exercebat, sui et. - -Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem -Propoetides **parte**. - -{{< css.inline >}} - -{{< /css.inline >}} diff --git a/exampleSite/content/post/rich-content.md b/exampleSite/content/post/rich-content.md deleted file mode 100644 index 71a36e1..0000000 --- a/exampleSite/content/post/rich-content.md +++ /dev/null @@ -1,34 +0,0 @@ -+++ -author = "Hugo Authors" -title = "Rich Content" -date = "2019-03-10" -description = "A brief description of Hugo Shortcodes" -tags = [ - "shortcodes", - "privacy", -] -+++ - -Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds. - ---- - -## YouTube Privacy Enhanced Shortcode - -{{< youtube ZJthWmvUzzc >}} - -
- ---- - -## Twitter Simple Shortcode - -{{< tweet user="DesignReviewed" id="1085870671291310081" >}} - -
- ---- - -## Vimeo Simple Shortcode - -{{< vimeo_simple 48912912 >}} diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml deleted file mode 100644 index c91b795..0000000 --- a/exampleSite/hugo.toml +++ /dev/null @@ -1,74 +0,0 @@ -baseURL = "https://example.com" -languageCode = "en-us" -title = "Anubis" -theme = "anubis" -paginate = 3 - -disqusShortname = "" -googleAnalytics = "" - -[author] -name = "Junyi" - -[params] -author = "Junyi" -description = "Anubis2 is another simple minimalist theme for Hugo blog engine." -dateFormat = "2006-01-02" -paginationSinglePost = true -style = "auto" -readMore = false -readNextPosts = 2 -copyCodeButton = true -rssAsSocialIcon = true -mathjax = false - -# Graphcomment support -graphcommentId = "" - -# utteranc.es support -utterancesRepo = "" # mandatory -utterancesTheme = "" # optional -utterancesIssue = "" # optional -utterancesLabel = "" # optional - -# Giscus support -GiscusRepo = "" # mandatory -GiscusRepoId = "" # mandatory -GiscusCategory = "Announcements" # mandatory -GiscusCategoryId = "" # mandatory -GiscusLazyLoad = false # optional - -[[params.social]] -id = "docs" -url = "https://gohugo.io/documentation/" - -[[params.social]] -id = "github" -url = "https://github.com/Junyi-99/hugo-theme-anubis2" - -[menu] - -[[menu.main]] -identifier = "about" -name = "About" -url = "/about/" -weight = 1 - -[[menu.main]] -identifier = "tags" -name = "Tags" -url = "/tags/" -weight = 2 - -[[menu.main]] -name = "Archive" -identifier = "archive" -url = "/posts/" -weight = 3 - -[taxonomies] -category = "categories" -tag = "tags" - -[markup.goldmark.renderer] -unsafe = true diff --git a/exampleSite/netlify.toml b/exampleSite/netlify.toml deleted file mode 100644 index 8b1ea78..0000000 --- a/exampleSite/netlify.toml +++ /dev/null @@ -1,8 +0,0 @@ -[build] -publish = "public" -command = "hugo --gc --minify" - -[context.production.environment] -HUGO_VERSION = "0.115.4" -HUGO_ENV = "production" -HUGO_ENABLEGITINFO = "true" \ No newline at end of file diff --git a/exampleSite/static/fa-icons/docs.svg b/exampleSite/static/fa-icons/docs.svg deleted file mode 100644 index 5380074..0000000 --- a/exampleSite/static/fa-icons/docs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From c7e98bf40a8193974518e1096903b02b98fd546c Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Wed, 13 Mar 2024 17:14:06 +0800 Subject: [PATCH 10/10] update exampleSite --- exampleSiteMultilingual/hugo.toml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/exampleSiteMultilingual/hugo.toml b/exampleSiteMultilingual/hugo.toml index bcc2ce6..6bc7cdd 100644 --- a/exampleSiteMultilingual/hugo.toml +++ b/exampleSiteMultilingual/hugo.toml @@ -1,4 +1,4 @@ -baseURL = "https://example.com" +baseURL = "https://hugo-theme-anubis2.netlify.app/" languageCode = "en-us" defaultContentLanguage = "en" title = "Anubis2" @@ -16,7 +16,10 @@ author = "Junyi" description = "Anubis2 is another simple minimalist theme for Hugo blog engine." dateFormat = "2006-01-02" paginationSinglePost = true -style = "auto" + +colorTheme = "auto" +colorThemeSwitcher = true + readMore = false readNextPosts = 2 copyCodeButton = true @@ -28,11 +31,12 @@ toc = true # Graphcomment support graphcommentId = "" -# utteranc.es support -utterancesRepo = "" # mandatory -utterancesTheme = "" # optional -utterancesIssue = "" # optional -utterancesLabel = "" # optional +GiscusRepo = "Junyi-99/hugo-theme-anubis2" +GiscusRepoId = "R_kgDOLEp76Q" +GiscusCategory = "General" +GiscusCategoryId = "DIC_kwDOLEp76c4CcbPS" +GiscusLazyLoad = false +GiscusDataMapping = "pathname" [[params.social]] id = "docs"