28 lines
979 B
HTML
28 lines
979 B
HTML
|
{% extends "index.html" %}
|
||
|
{% import "post_macros.html" as post_macros %}
|
||
|
|
||
|
{% block content %}
|
||
|
<!-- START NAV -->
|
||
|
{% block header %}
|
||
|
{{ super() }}
|
||
|
{% endblock header %}
|
||
|
<!-- END NAV -->
|
||
|
<main>
|
||
|
<section class="container">
|
||
|
<div class="columns is-desktop">
|
||
|
<div class="column is-10-desktop is-offset-1-desktop">
|
||
|
<article itemscope itemtype="http://schema.org/BlogPosting">
|
||
|
<div class="card article">
|
||
|
<div class="card-content">
|
||
|
<div itemprop="articleBody" class="content article-body">
|
||
|
<h1>404!</h1>
|
||
|
This page could not be found, perhaps it is not available in the current language or simply does not exist.
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</article>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</main>
|
||
|
{% endblock content %}
|