Compare commits

...

1 Commits

Author SHA1 Message Date
3737093a4d [TASK] update base.twig 2020-05-20 13:41:26 +02:00

View File

@ -1,11 +1,10 @@
<!DOCTYPE html>
<html class="no-js">
<head>
<head>
{% block head %}
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no" />
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<title>
{% if meta.title %}
@ -14,30 +13,23 @@
{% endif %}
{{ site_title }}</title>
{% if meta.description %}
<meta name="description"
content="{{ meta.description|striptags }}" />
<meta name="description" content="{{ meta.description|striptags }}"/>
{% endif %}
{% if meta.robots %}
<meta name="robots"
content="{{ meta.robots }}" />
<meta name="robots" content="{{ meta.robots }}"/>
{% endif %}
{% if current_page %}
<link rel="canonical"
href="{{ current_page.url }}" />
<link rel="canonical" href="{{ current_page.url }}"/>
{% endif %}
<link rel="stylesheet"
href="{{ theme_url }}/css/mini-{{ config.theme_config.color }}.min.css">
<link rel="stylesheet"
href="{{ theme_url }}/css/style.css"
type="text/css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/themes/prism-tomorrow.min.css"
rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="{{ theme_url }}/css/style.css" type="text/css"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/themes/prism-tomorrow.min.css" rel="stylesheet"/>
{% endblock %}
</head>
</head>
<body>
<body>
{% include "templates/layout/header.twig" %}
<div class="container">
<div class="row">
@ -67,13 +59,11 @@
</div>
</div>
{% include "templates/layout/footer.twig" %}
<script src="{{ theme_url }}/js/site.js"
type="text/javascript">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="{{ theme_url }}/js/site.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/components/prism-core.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/plugins/autoloader/prism-autoloader.min.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.17.1/plugins/autoloader/prism-autoloader.min.js"></script>
</body>
</body>
</html>