mirror of
https://github.com/pinry/pinry.git
synced 2026-01-15 03:32:05 +01:00
15 lines
323 B
HTML
15 lines
323 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}404{% endblock %}
|
|
|
|
{% block yield %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div id="form" class="span6 offset3">
|
|
<h1>404</h1>
|
|
<p>This page does not exist.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|