- Details der nunjucks Vorlagen korrigiert - Fehler der <titel> Einbindung in nunjucks Vorlagen behoben
21 lines
503 B
Text
21 lines
503 B
Text
<!-- template-maintenance.njk -->
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock %} - HIPPIE</title>
|
|
|
|
{% include "demo/partials/head-meta.njk" %}
|
|
|
|
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
|
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
|
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body id="{{ pageId }}" class="{{ pageClass }}">
|
|
{% block body_content %}{% endblock %}
|
|
</body>
|
|
</html>
|