11 lines
216 B
HTML
11 lines
216 B
HTML
<!DOCTYPE html>
|
|
{% include 'head.html' %}
|
|
{% include 'header.html' %}
|
|
{% include 'logo.html' %}
|
|
{% include 'subheader.html' %}
|
|
{% block content %}
|
|
{% if table %}
|
|
{% include 'table.html' %}
|
|
{% endif %}
|
|
{% endblock %}
|