2024-08-22 10:13:16 +02:00
|
|
|
{{define "full"}}
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" >
|
|
|
|
<title>BrainMinder</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="manifest" href="/static/manifest.json">
|
|
|
|
<link rel="stylesheet" href="/static/bootstrap-icons/font/bootstrap-icons.min.css" />
|
|
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
2024-10-20 20:25:59 +02:00
|
|
|
<link rel="stylesheet" href="/static/css/orig.css" />
|
2024-08-22 10:13:16 +02:00
|
|
|
<link rel="icon" type="image/x-icon" href="/static/img/brainminder-icon.svg">
|
|
|
|
|
|
|
|
{{block "page:meta" . }}
|
|
|
|
{{
|
|
|
|
end
|
|
|
|
}}
|
|
|
|
</head>
|
2024-11-10 20:52:32 +01:00
|
|
|
<body>
|
2024-08-22 10:13:16 +02:00
|
|
|
<div class="w3-container">
|
|
|
|
<div id="page-content">{{template "page:content" .}}</div>
|
|
|
|
</div>
|
|
|
|
{{template "partial:footer" .}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ end }}
|