Files
goview/_examples/gorice/views/index.html
2019-04-16 19:10:06 +08:00

13 lines
384 B
HTML

{{define "head"}}
{{end}}
{{define "content"}}
<div class="shadow-lg p-3 mb-5 bg-white rounded">
<h1 class="display-4">Hello template!</h1>
<img src="/static/img/gopher.png" alt="Gopher">
<p class="py-3">This is example for template support go.rice.</p>
<hr class="my-4">
<a class="btn btn-primary btn-lg" href="/page" role="button">Enter Page</a>
</div>
{{end}}