Add menu.

This commit is contained in:
Anna Rose 2023-08-31 15:59:18 +00:00
parent 2ed4a722c2
commit 55a50c575b
5 changed files with 37 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
public/
resources/
.hugo_build.lock

7
content/about.md Normal file
View File

@ -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.

View File

@ -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.\]_

View File

@ -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"

View File

@ -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;
}