swirl/views/403.jet
2017-09-29 20:18:29 +08:00

23 lines
806 B
Go

{{ extends "_layouts/empty" }}
{{ block body() }}
<section class="hero is-light is-fullheight is-bold">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-6 is-offset-3">
<div class="content">
<h1 class="title is-1 has-text-centered has-text-danger is-marginless">403</h1>
<h2 class="title has-text-centered has-text-black">Forbidden</h2>
<p class="has-text-centered">
You do not have permission to access this page.
</p>
<div class="has-text-centered">
<a href="/" class="has-text-centered button is-primary is-outlined">To Home Page</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
{{ end }}