mirror of
https://github.com/spikecodes/libreddit
synced 2024-12-28 11:35:09 +01:00
9 lines
234 B
HTML
9 lines
234 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Error: {{ msg }}{% endblock %}
|
|
{% block sortstyle %}{% endblock %}
|
|
{% block content %}
|
|
<div id="error">
|
|
<h1>{{ msg }}</h1>
|
|
<h3>Head back <a href="/">home</a>?</h3>
|
|
</div>
|
|
{% endblock %} |