mirror of
https://github.com/Xevion/v1.xevion.dev.git
synced 2025-12-08 22:09:04 -06:00
17 lines
570 B
HTML
17 lines
570 B
HTML
{% extends 'base.html' %}
|
|
{% block body %}
|
|
<!-- Hero Section -->
|
|
<section class="hero is-fullheight-with-navbar is-danger">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<p class="title">
|
|
{{ code if code is not none else 'Error' }}
|
|
</p>
|
|
<p class="subtitle">
|
|
{{ message if message is not none else 'Error encountered' }} <em href="{{ url if url is not none else url_for('index') }}">{{ url_message if url_message is not none else 'Go home?' }}</em>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- End Hero Section -->
|
|
{% endblock body %} |