diff --git a/crates/service/service-webpage/src/pages/handouts.md b/crates/service/service-webpage/src/pages/handouts.md
index ceda1c3..7925eab 100644
--- a/crates/service/service-webpage/src/pages/handouts.md
+++ b/crates/service/service-webpage/src/pages/handouts.md
@@ -13,8 +13,6 @@ arguably the best math circle in the western world. We teach students mathematic
far beyond the regular school curriculum, much like [AOPS](https://artofproblemsolving.com)
and the [BMC](https://mathcircle.berkeley.edu).
-
-
{{color(--pink, "For my students:")}} \
Don't look at solutions we haven't discussed,
and don't start any handouts before class. That spoils all the fun!
@@ -36,7 +34,6 @@ If the class finishes early, the lesson is either too short or too easy.
The sources for all these handouts are available [here](https://git.betalupi.com/mark/handouts).\
Some are written in LaTeX, some are in [Typst](https://typst.app). \
The latter is vastly superior.
-
-
+
diff --git a/crates/service/service-webpage/src/pages/index.md b/crates/service/service-webpage/src/pages/index.md
index ac3f670..bf5595d 100644
--- a/crates/service/service-webpage/src/pages/index.md
+++ b/crates/service/service-webpage/src/pages/index.md
@@ -5,7 +5,7 @@ Also see [what's a "betalupi?"](/whats-a-betalupi)
- [Handouts](/handouts): Math circle lessons I've written
- [Links](/links): Interesting parts of the internet
-
+
## Projects
diff --git a/crates/service/service-webpage/src/pages/mod.rs b/crates/service/service-webpage/src/pages/mod.rs
index b757ef7..fc7106d 100644
--- a/crates/service/service-webpage/src/pages/mod.rs
+++ b/crates/service/service-webpage/src/pages/mod.rs
@@ -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!"
+ )
+ )
+ )
}
}
}