mirror of
https://github.com/Xevion/v1.xevion.dev.git
synced 2025-12-15 04:13:44 -06:00
17 lines
406 B
HTML
17 lines
406 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">
|
|
404
|
|
</p>
|
|
<p class="subtitle">
|
|
Content Not Found... <a href="{{ url_for('index') }}">Go home?</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- End Hero Section -->
|
|
{% endblock body %} |