12 lines
138 B
Text
12 lines
138 B
Text
|
{% extends "base" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h1>Hello {{ name }}!</h1>
|
||
|
|
||
|
{% if maps %}
|
||
|
{% include "maps" %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock %}
|