31 lines
850 B
Cheetah
31 lines
850 B
Cheetah
{{ define "layout" }}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>gonic</title>
|
|
{{ template "head" }}
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div id="header">
|
|
<img src="/admin/static/images/gonic.png">
|
|
</div>
|
|
<div id="content">
|
|
{{ if .Flashes }}
|
|
<div id="flashes" class="padded mono">
|
|
<i class="mdi mdi-alert-circle"></i> {{ index .Flashes 0 }}
|
|
</div>
|
|
{{ end }}
|
|
{{ template "content" . }}
|
|
</div>
|
|
</div>
|
|
<div id="footer" class="padded mono">
|
|
senan kelly, 2019
|
|
<span class="light">|</span>
|
|
<a href="https://github.com/sentriz/gonic">github</a>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|