Renamed views directory to templates.

This commit is contained in:
mikestefanello 2021-12-14 11:30:31 -05:00
parent d0caa8119e
commit 299774c0c7
12 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{template "metatags" .}}
{{template "css" .}}
{{template "js" .}}
</head>
<body>
<section class="hero is-info is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div class="column is-half">
{{- if .Title}}
<h1 class="title">{{.Title}}</h1>
{{- end}}
<div class="box">
{{template "messages" .}}
{{template "content" .}}
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>