udemy-go-web-1/templates/about.page.tmpl

14 lines
316 B
Cheetah

{{template "base" .}}
{{define "content"}}
<div class="container">
<div class="row">
<div class="col">
<h1>This is the about page</h1>
<p>This is the content</p>
<p>This came from the template: {{index .StringMap "test"}}</p>
</div>
</div>
</div>
{{end}}