modweb/templates/layouts/main.html

23 lines
804 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.1/css/bulma.min.css"
integrity="sha512-ZRv40llEogRmoWgZwnsqke3HNzJ0kiI0+pcMgiz2bxO6Ew1DVBtWjVn0qjrXdT3+u+pSN36gLgmJiiQ3cQtyzA=="
crossorigin="anonymous" />
<title>{{ .app.Config.AppName }}{{ if .title }} | {{ .title }}{{ end }}</title>
</head>
<body>
{{ template "partials/navbar" . }}
<section class="section">
<div class="container">
{{ embed }}
</div>
</section>
</body>
</html>