9 lines
221 B
HTML
9 lines
221 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}About{% endblock title %}</h1>
|
|
{% endblock header %}
|
|
|
|
{% block content %}
|
|
<p>This is a message board for friendly messages.</p>
|
|
{% endblock content %} |