10 lines
207 B
HTML
10 lines
207 B
HTML
{% extends 'appearance/base.html' %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>{{ title }}</h3>
|
|
<hr>
|
|
{% include 'appearance/generic_subtemplate.html' %}
|
|
{% endblock %}
|