aboutsummaryrefslogtreecommitdiff
path: root/code/src/html.rs
diff options
context:
space:
mode:
Diffstat (limited to 'code/src/html.rs')
-rw-r--r--code/src/html.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/code/src/html.rs b/code/src/html.rs
index a6098e3..5bcc245 100644
--- a/code/src/html.rs
+++ b/code/src/html.rs
@@ -5,6 +5,7 @@ use std::fs::read_to_string;
pub fn scaffold(title: String, body: impl Render) -> impl Render {
html!(
head!(
+ meta!(charset = "UTF-8"),
link!(rel = "stylesheet", href = "./style.css"),
title!(format!("{} - metamuffin's blog", title))
),