16 lines
218 B
HTML
16 lines
218 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% block content_title %}
|
|
{% endblock %}
|
|
|
|
{% for page in pages %}
|
|
{% if page.title == 'Start' %}
|
|
{{ page.content }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
|
|
{% endblock content %}
|