[TASK] einrückung
This commit is contained in:
parent
bc3a113254
commit
3ede56caf1
@ -1,62 +1,52 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="de">
|
<html lang="de">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% block head %}
|
{% block head %}
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport"
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
content="width=device-width, initial-scale=1.0" />
|
|
||||||
|
|
||||||
<title>
|
<title>
|
||||||
{% if meta.title %}
|
{% if meta.title %}
|
||||||
{{ meta.title }}
|
{{ meta.title }}
|
||||||
|
|
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ site_title }}</title>
|
{{ site_title }}</title>
|
||||||
{% if meta.description %}
|
{% if meta.description %}
|
||||||
<meta name="description"
|
<meta name="description" content="{{ meta.description|striptags }}"/>
|
||||||
content="{{ meta.description|striptags }}" />
|
{% endif %}
|
||||||
{% endif %}
|
{% if meta.robots %}
|
||||||
{% if meta.robots %}
|
<meta name="robots" content="{{ meta.robots }}"/>
|
||||||
<meta name="robots"
|
{% endif %}
|
||||||
content="{{ meta.robots }}" />
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if current_page %}
|
{% if current_page %}
|
||||||
<link rel="canonical"
|
<link rel="canonical" href="{{ current_page.url }}"/>
|
||||||
href="{{ current_page.url }}" />
|
{% endif %}
|
||||||
{% endif %}
|
{% endblock %}
|
||||||
{% endblock %}
|
{% block css %}
|
||||||
{% block css %}
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
<link rel="stylesheet" href="{{ theme_url }}/css/materialize.min.css">
|
||||||
rel="stylesheet">
|
<link rel="stylesheet" href="{{ theme_url }}/css/style.css" type="text/css"/>
|
||||||
<link rel="stylesheet"
|
{% endblock %}
|
||||||
href="{{ theme_url }}/css/materialize.min.css">
|
</head>
|
||||||
<link rel="stylesheet"
|
|
||||||
href="{{ theme_url }}/css/style.css"
|
|
||||||
type="text/css" />
|
|
||||||
{% endblock %}
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
{% include "templates/layout/navigationBar.twig" %}
|
|
||||||
<main class="{% if not config.theme_config.widescreen %} container{% endif %}">
|
|
||||||
<div class="row">
|
|
||||||
{% block content %}
|
|
||||||
<div class="col s12">
|
|
||||||
{{ content }}
|
|
||||||
</div>
|
|
||||||
{% endblock %}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
{% include "templates/layout/footer.twig" %}
|
|
||||||
{% block js %}
|
|
||||||
<script type="text/javascript"
|
|
||||||
src="{{ theme_url }}/js/materialize.min.js"></script>
|
|
||||||
<script src="{{ theme_url }}/js/site.js"
|
|
||||||
type="text/javascript">
|
|
||||||
</script>
|
|
||||||
{% endblock %}
|
|
||||||
</body>
|
|
||||||
|
|
||||||
|
<body>
|
||||||
|
{% include "templates/layout/navigationBar.twig" %}
|
||||||
|
<main>
|
||||||
|
{% block content %}
|
||||||
|
<section class="{% if not config.theme_config.widescreen %} container{% endif %}">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s12">
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{% endblock %}
|
||||||
|
</main>
|
||||||
|
{% include "templates/layout/footer.twig" %}
|
||||||
|
{% block js %}
|
||||||
|
<script type="text/javascript" src="{{ theme_url }}/js/materialize.min.js"></script>
|
||||||
|
<script src="{{ theme_url }}/js/site.js" type="text/javascript"></script>
|
||||||
|
{% endblock %}
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user