[TASK] einrückung
This commit is contained in:
parent
bc3a113254
commit
3ede56caf1
@ -1,62 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
{% block head %}
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1.0" />
|
||||
<head>
|
||||
{% block head %}
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
|
||||
<title>
|
||||
{% if meta.title %}
|
||||
{{ meta.title }}
|
||||
|
|
||||
{% endif %}
|
||||
{{ site_title }}</title>
|
||||
{% if meta.description %}
|
||||
<meta name="description"
|
||||
content="{{ meta.description|striptags }}" />
|
||||
{% endif %}
|
||||
{% if meta.robots %}
|
||||
<meta name="robots"
|
||||
content="{{ meta.robots }}" />
|
||||
{% endif %}
|
||||
<title>
|
||||
{% if meta.title %}
|
||||
{{ meta.title }}
|
||||
|
|
||||
{% endif %}
|
||||
{{ site_title }}</title>
|
||||
{% if meta.description %}
|
||||
<meta name="description" content="{{ meta.description|striptags }}"/>
|
||||
{% endif %}
|
||||
{% if meta.robots %}
|
||||
<meta name="robots" content="{{ meta.robots }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if current_page %}
|
||||
<link rel="canonical"
|
||||
href="{{ current_page.url }}" />
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block css %}
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
||||
rel="stylesheet">
|
||||
<link rel="stylesheet"
|
||||
href="{{ theme_url }}/css/materialize.min.css">
|
||||
<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>
|
||||
{% if current_page %}
|
||||
<link rel="canonical" href="{{ current_page.url }}"/>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block css %}
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href="{{ theme_url }}/css/materialize.min.css">
|
||||
<link rel="stylesheet" href="{{ theme_url }}/css/style.css" type="text/css"/>
|
||||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user