configui/templates/home.tmpl

14 lines
288 B
Cheetah
Raw Normal View History

2021-10-18 08:49:16 +00:00
{{define "home"}}
{{template "base/header" .}}
<section class="section">
<div class="container">
<h1 class="title">
Hello World
</h1>
<p class="subtitle">
My first website with <strong>Bulma</strong>!
</p>
</div>
</section>
{{template "base/footer" .}}
{{end}}