mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
20 lines
495 B
Twig
20 lines
495 B
Twig
{% extends "theme::layouts/default" %}
|
|
|
|
{% block content %}
|
|
|
|
<section id="main" class="clearfix text-center">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-offset-1">
|
|
<div class="found-section section">
|
|
<h1>403</h1>
|
|
<h2>Forbidden</h2>
|
|
<p>You have no access to this page.</p>
|
|
<a href="/" class="btn btn-primary">Go to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- container -->
|
|
</section><!-- main -->
|
|
{% endblock %}
|