12 lines
173 B
HTML
12 lines
173 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if status %}
|
|
<h2>About</h2>
|
|
{{ status }}
|
|
{% else %}
|
|
<h2> Sorry, no status information.</h2>
|
|
{% endif %}
|
|
{% endblock %}
|