[TASK] remove frontend process and change headline font

This commit is contained in:
Marie Birner
2025-08-02 19:13:04 +02:00
parent 96a9ab361a
commit f39762f490
13 changed files with 31 additions and 3592 deletions

View File

@@ -1,10 +1,14 @@
use crate::page::new;
use maud::{html, Markup, PreEscaped};
use maud::{html, Markup};
pub(super) async fn index() -> Markup {
new(html! {
h1 {
"Digital Shadows"
}
hgroup {
h1 { "Digital Shadows" (PreEscaped("—")) "Who owns your "
h2 {
"Who owns your "
mark { "data" }
"?"
}

View File

@@ -6,7 +6,8 @@ pub fn new(content: Markup) -> Markup {
head {
meta charset="utf-8";
meta name="viewport" content="width=device-width, initial-scale=1.0";
link rel="stylesheet" href="/static/main.css";
link rel="stylesheet" href="/static/pico.min.css";
link rel="stylesheet" href="/static/style.css";
}
body {
header.container {
@@ -37,7 +38,7 @@ pub fn new(content: Markup) -> Markup {
a target="_blank" href="https://www.digidow.eu/impressum/" { "Impressum" }
}
}
script src="/static/main.js" {}
script src="/static/theme.js" {}
}
}
}