Fixed the templating system

This commit is contained in:
2022-12-07 21:51:49 -05:00
parent d56d0ba19a
commit e1b64766b6
6 changed files with 102 additions and 15 deletions

View File

@ -1,11 +1,9 @@
{{ template "layout" . }}
{{ template "layout_header" . }}
{{ define "title" }}Dashboard{{ end }}
{{ define "content" }}
<div class="row">
<div class="twelve columns">
<p>This is a test.</p>
</div>
<div class="row">
<div class="twelve columns">
<p>This is a test.</p>
</div>
{{ end }}
</div>
{{ template "layout_footer" . }}