cc-backend/web/templates/404.tmpl
2022-06-21 17:52:36 +02:00

11 lines
209 B
Cheetah

{{template "base.tmpl" .}}
{{define "content"}}
<div class="row">
<div class="col">
<div class="alert alert-error" role="alert">
404: Not found
</div>
</div>
</div>
{{end}}