This repository has been archived on 2024-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
clego-app/src/base.rs

21 lines
482 B
Rust
Raw Normal View History

use maud::{html, Markup, DOCTYPE};
pub fn header() -> Markup {
html! {
(DOCTYPE)
head {
meta charset="utf-8";
title class="title" { "Clego" }
script src="/public/htmx.min.js" {};
2024-04-26 23:46:53 +02:00
link rel="stylesheet" href="/public/styles/global.css";
link rel="icon" href="/public/favicon.ico";
}
}
}
pub fn error_tmpl() -> Markup {
html! {
h1 { "Something went terribly wrong :(" }
}
}