1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Add html lang attr

This commit is contained in:
RGBCube 2024-01-09 00:51:03 +03:00
parent 97c51150fa
commit 69320fe0b8
No known key found for this signature in database

View file

@ -60,6 +60,7 @@ pub fn create(title: Option<&str>, head: Markup, body: Markup) -> Markup {
html! {
(DOCTYPE)
html lang="en-US" {
head {
meta charset="UTF-8";
@ -103,4 +104,5 @@ pub fn create(title: Option<&str>, head: Markup, body: Markup) -> Markup {
(body)
}
}
}
}