ticker-serve: fix doctype

Cette révision appartient à :
Astro 2021-01-14 16:38:18 +01:00
Parent 4520d60652
révision 3bc618204b
1 fichiers modifiés avec 1 ajouts et 1 suppressions

Voir le fichier

@ -138,7 +138,7 @@ fn render_index(app_state: &AppState) -> String {
</body>
</html>
);
format!("<DOCTYPE html>\n{}", doc.to_string())
format!("<!DOCTYPE html>\n{}", doc.to_string())
}
pub fn index(state: State) -> (State, Response<Body>) {