mirror of
https://github.com/cuigh/swirl
synced 2025-01-01 00:32:09 +00:00
28 lines
745 B
Go
28 lines
745 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("service.title") }}</h1>
|
|
<h2 class="subtitle is-5">{{ i18n("service.description") }}</h2>
|
|
</div>
|
|
</div>
|
|
<div class="hero-foot">
|
|
<div class="container">
|
|
<nav class="tabs is-boxed">
|
|
<ul>
|
|
<li class="is-active">
|
|
<a href="/service/">{{ i18n("menu.service") }}</a>
|
|
</li>
|
|
<li>
|
|
<a href="/service/template/">{{ i18n("menu.service.template") }}</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ yield body_content() }}
|
|
{{ end }}
|