swirl/views/task/base.jet

14 lines
367 B
Go
Raw Normal View History

2017-10-19 12:40:05 +00:00
{{ 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 }}