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