18 lines
593 B
Handlebars
18 lines
593 B
Handlebars
<!doctype html>
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="shortcut icon" href="images/logo.ico" type="image/x-icon">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
{{#unless disableBootStrap}}
|
|
<link href="/assets/bootstrap_5/bootstrap.min.css" rel="stylesheet">
|
|
<script defer src="/assets/bootstrap_5/bootstrap.bundle.min.js"></script>
|
|
{{/unless}}
|
|
<title>{{title}}</title>
|
|
</head>
|
|
<body>
|
|
{{{body}}}
|
|
</body>
|
|
</html>
|