add nav
continuous-integration/drone/push Build is passing Details

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-12-06 17:37:42 +01:00
parent dafc87bcdb
commit 967651245c
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
5 changed files with 36 additions and 9 deletions

View File

@ -8,5 +8,17 @@ keywords = ["nothing"]
robots = true
generator = true
[[menu.left]]
name = "About"
url = "/about"
[[menu.left]]
name = "Contact"
url = "/contact"
[[menu.right]]
name = "Site"
url = "/"
[mergedKeys]
metas = "object"

View File

@ -1,9 +0,0 @@
---
layout: "layouts/base.pug"
---
.row
.column
| !{content}
.column
iframe(src="https://fedifeed.com/api/v1/feed?user=sam&instance=https%3A%2F%2Ffroth.zone&instance_type=&theme=pleroma&size=75&header=true&replies=true&boosts=true", title="Powered by Fedifeed", allowfullscreen, sandbox="allow-top-navigation allow-scripts" width="400", height="600")

View File

@ -3,6 +3,7 @@ html(lang=metas.lang)
head
title= title
include meta.pug
include nav.pug
body
header
h1= title

View File

@ -0,0 +1,9 @@
nav
ul(class= "main-nav")
each val in menu.left
li
a(href=val.url)= val.name
each val in menu.right
li(class= "push")
a(href=val.url)= val.name

View File

@ -15,3 +15,17 @@
.column {
flex: 50%;
}
.main-nav {
display: flex;
list-style: none;
max-width: 75%;
}
nav li {
margin: 0.5em;
}
.push {
margin-left: auto;
}