diff --git a/.gitignore b/.gitignore index 8dd6d56..1c3fa73 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ public/ +resources/ .hugo_build.lock diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..fe5d99c --- /dev/null +++ b/content/about.md @@ -0,0 +1,7 @@ +--- +title: "About Us" +menu: main +--- +This blog was started by me, a 40-year-old Heathen in the Northeast United States, to talk about my own experiences with Heathen religion, magic, community, and everything that intersects with those topics. + +Freyja's Kiss is a leftist, inclusive Heathen blog. We believe in the [paradox of tolerance](https://en.wikipedia.org/wiki/Paradox_of_tolerance). Bigotry has no place here, and we have no patience for "reverse oppression" foolishness. diff --git a/content/posts/2022-09-23-spotting-the-nazis/index.md b/content/posts/2022-09-23-spotting-the-nazis/index.md index c2c6dac..8734efb 100644 --- a/content/posts/2022-09-23-spotting-the-nazis/index.md +++ b/content/posts/2022-09-23-spotting-the-nazis/index.md @@ -4,6 +4,7 @@ author: "Anna" date: "2022-09-23" tags: - antifascism +menu: main --- _\[Content Warning: this post depicts and discusses symbols that are widely used by_ _racist people and organizations. At Freyja's Kiss, we do not condone these usages or these people. Rather, we condemn them in the strongest terms. May they find no friĆ° or succor wherever they may go.\]_ diff --git a/hugo.toml b/hugo.toml index a6734c3..1fc4df7 100644 --- a/hugo.toml +++ b/hugo.toml @@ -3,6 +3,12 @@ languageCode = 'en-us' title = "Freyja's Kiss" theme = 'mainroad' +[menu] +[[menu.main]] + name = 'Home' + pageRef = '/' + weight = 10 + [Params] description = 'Thoughts from the Leftist Edge of Heathenry' copyright = "Anna Rose Wiggins" diff --git a/static/css/custom.css b/static/css/custom.css index 29336fe..8d16bfc 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -106,3 +106,25 @@ blockquote { margin-left: 25px; margin-right: 25px; } + +.menu { + border-bottom-width: 1px; +} + +.menu__list { + border: none; + background-color: white; +} + +.menu__item:hover { + background-color: #dddddd; +} + +.menu__text { + color: black; +} + +.menu__item--active { + color: black; + background-color: #f4f4f4; +}