raven/views/layout/layout.html

22 lines
677 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>
2022-12-07 21:30:10 -05:00
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link rel="stylesheet" href="/css/kraken.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
2022-12-07 21:24:11 -05:00
</head>
<body>
{{ template "navbar" . }}
2022-12-07 21:30:10 -05:00
<div id="main-wrapper" class="container">
{{ block "content" . }}{{ end }}
</div>
2022-12-07 21:24:11 -05:00
</body>
</html>
{{ end }}