8 lines
199 B
HTML
8 lines
199 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block title %}About{% endblock %}
|
||
|
{% block content %}
|
||
|
<h1>About</h1>
|
||
|
<p>This page is under construct and will be updated as soon as possible.</p>
|
||
|
{% endblock %}
|