mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
13 lines
420 B
HTML
13 lines
420 B
HTML
{% extends "second-edition/base.html" %}
|
|
|
|
{% block title %}Page not found | {{ config.title }}{% endblock title %}
|
|
|
|
{% block main %}
|
|
<h1>Page not found</h1>
|
|
<p>Sorry, this address is not valid.</p>
|
|
|
|
<p><a href="{{ config.base_url }}">Go to the index page</a>.</p>
|
|
|
|
<p>If you followed a link on this site, please <a href="https://github.com/phil-opp/blog_os/issues">report it</a>!</p>
|
|
{% endblock main %}
|