raven/views/layout/layout.html

17 lines
377 B
HTML
Raw Normal View History

2022-12-07 21:24:11 -05:00
{{ define "layout" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ block "title" . }}{{ end }} | Raven</title>
</head>
<body>
{{ template "navbar" . }}
{{ block "content" . }}{{ end }}
</body>
</html>
{{ end }}