fix: missing doctype error on 404 page with htmltest scan (#554)

* Fix missing doctype error on 404 page with htmltest scan

* format 404.html

---------

Co-authored-by: Xin <xin@imfing.com>
This commit is contained in:
Gaëtan Steininger 2025-01-19 20:35:24 +01:00 committed by GitHub
parent 56f28e6f14
commit cb3373d500
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,27 +1,39 @@
<div style='font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; height:100vh; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center'> <!DOCTYPE html>
<div> <html lang="en">
<style>
body { <body
color: #000; style='font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; height:100vh; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center'>
background: #fff; <div>
margin: 0; <style>
} body {
.next-error-h1 { color: #000;
border-right: 1px solid rgba(0, 0, 0, 0.3); background: #fff;
} margin: 0;
@media (prefers-color-scheme: dark) { }
body {
color: #fff; .next-error-h1 {
background: #000; border-right: 1px solid rgba(0, 0, 0, 0.3);
} }
.next-error-h1 {
border-right: 1px solid rgba(255, 255, 255, 0.3); @media (prefers-color-scheme: dark) {
} body {
} color: #fff;
</style> background: #000;
<h1 class="next-error-h1" style='display: inline-block; margin: 0 20px 0 0; padding-right: 23px; font-size: 24px; font-weight: 500; vertical-align: top; line-height: 49px; font-feature-settings: "rlig" 1,"calt" 1,"ss01" 1,"ss06" 1 !important;'>404</h1> }
<div style="display: inline-block; text-align: left">
<h2 style="font-size: 14px; font-weight: 400; line-height: 49px; margin: 0">This page could not be found.</h2> .next-error-h1 {
border-right: 1px solid rgba(255, 255, 255, 0.3);
}
}
</style>
<h1 class="next-error-h1"
style='display: inline-block; margin: 0 20px 0 0; padding-right: 23px; font-size: 24px; font-weight: 500; vertical-align: top; line-height: 49px; font-feature-settings: "rlig" 1,"calt" 1,"ss01" 1,"ss06" 1 !important;'>
404</h1>
<div style="display: inline-block; text-align: left">
<h2 style="font-size: 14px; font-weight: 400; line-height: 49px; margin: 0">This page could not be found.
</h2>
</div>
</div> </div>
</div> </body>
</div>
</html>