weiro/views/layouts/main.html

17 lines
437 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weiro</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/assets/main.css">
<script src="/static/assets/main.js" type="module"></script>
</head>
<body class="d-flex flex-column {{.bodyClass}}">
{{ template "_common/nav" . }}
{{ embed }}
{{ template "_common/toast" . }}
</body>
</html>