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