10 lines
176 B
HTML
10 lines
176 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% load getconfig %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% autoescape off %}
|
||
|
{{ "index_page"|get_config|safe }}
|
||
|
{% endautoescape %}
|
||
|
{% endblock %}
|