ticker-serve: fix doctype

This commit is contained in:
Astro 2021-01-14 16:38:18 +01:00
父節點 4520d60652
當前提交 3bc618204b
共有 1 個文件被更改,包括 1 次插入1 次删除

查看文件

@ -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>) {