swirl/views/task/base.jet
2021-02-26 13:32:05 +08:00

14 lines
367 B
Go

{{ extends "../_layouts/default" }}
{{ block body() }}
<section class="hero is-info">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-2 is-uppercase">{{ i18n("task.title") }}</h1>
<h2 class="subtitle is-5">{{ i18n("task.description") }}</h2>
</div>
</div>
</section>
{{ yield body_content() }}
{{ end }}