mirror of
https://github.com/foolin/goview.git
synced 2025-09-26 19:01:15 +08:00
13 lines
384 B
HTML
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}} |