Tweaks
Some checks failed
CI / Check typos (push) Successful in 28s
CI / Check links (push) Failing after 31s
CI / Clippy (push) Successful in 1m2s
CI / Build and test (push) Successful in 1m21s
CI / Build container (push) Successful in 1m5s
CI / Deploy on waypoint (push) Successful in 44s

This commit is contained in:
2025-11-12 14:18:33 -08:00
parent 529dfc468e
commit 991eb92562
3 changed files with 15 additions and 9 deletions

View File

@@ -4,6 +4,7 @@ use page::page::{Page, PageMetadata};
use std::pin::Pin;
use crate::components::{
fa::FAIcon,
md::{Markdown, backlinks, meta_from_markdown},
misc::FarLink,
};
@@ -150,7 +151,7 @@ pub fn page_wrapper<'a>(
(inner)
@if footer {
footer {
footer style="margin-top:10rem;" {
hr class = "footline" {}
div class = "footContainer" {
p {
@@ -158,11 +159,19 @@ pub fn page_wrapper<'a>(
(FarLink("https://rust-lang.org", "Rust"))
", "
(FarLink("https://maud.lambda.xyz", "Maud"))
", "
(FarLink("https://github.com/connorskees/grass", "Grass"))
", and "
(FarLink("https://docs.rs/axum/latest/axum", "Axum"))
"."
". "
(
FarLink(
"https://git.betalupi.com/Mark/webpage",
html!(
(FAIcon::Git)
"Source here!"
)
)
)
}
}
}