9 lines
324 B
HTML
9 lines
324 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Imprint{% endblock %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<p>This is a website for personal use and is not subject to German Digital Services Act §5. If you have any inquiries feel free to contact the author of this site.</p>
|
|
{% endblock %}
|
|
|