29 lines
926 B
Cheetah
29 lines
926 B
Cheetah
|
{{define "full"}}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" >
|
||
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" >
|
||
|
<meta http-equiv="Pragma" content="no-cache" >
|
||
|
<meta http-equiv="Expires" content="0" >
|
||
|
<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" />
|
||
|
<link rel="icon" type="image/x-icon" href="/static/img/brainminder-icon.svg">
|
||
|
|
||
|
{{block "page:meta" . }}
|
||
|
{{
|
||
|
end
|
||
|
}}
|
||
|
</head>
|
||
|
<body class="w3-light-gray">
|
||
|
<div class="w3-container">
|
||
|
<div id="page-content">{{template "page:content" .}}</div>
|
||
|
</div>
|
||
|
{{template "partial:footer" .}}
|
||
|
</body>
|
||
|
</html>
|
||
|
{{ end }}
|