fix default template to have a <!DOCTYPE html> at the beginning
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<link href="/styles/main.css" rel="stylesheet">
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
${ templates/partials/header.ori.html() }
|
||||
<main class="page-content">
|
||||
${ _ }
|
||||
</main>
|
||||
${ templates/partials/footer.ori.html() }
|
||||
</body>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link href="/styles/main.css" rel="stylesheet">
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
${ templates/partials/header.ori.html() }
|
||||
<main class="page-content">
|
||||
${ _ }
|
||||
</main>
|
||||
${ templates/partials/footer.ori.html() }
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user