2018-10-09 23:47:51 +02:00
|
|
|
<!-- template-extended.njk -->
|
2017-10-02 00:02:06 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
|
|
{% block head %}
|
2018-10-10 22:41:15 +02:00
|
|
|
<title>{% block title %}{% endblock %} - HIPPIE</title>
|
|
|
|
|
|
2018-10-09 23:47:51 +02:00
|
|
|
{% include "demo/partials/head-meta.njk" %}
|
2017-10-02 00:02:06 +02:00
|
|
|
|
|
|
|
|
<!--[if lte IE 9]>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
|
|
|
<![endif]-->
|
|
|
|
|
<!--[if lte IE 9]>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
|
|
|
|
|
<![endif]-->
|
|
|
|
|
<!--Local alternative: <script src="./code/html5shiv.min.js"></script>-->
|
|
|
|
|
<!--Only use one of the above!-->
|
|
|
|
|
|
|
|
|
|
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
|
|
|
|
|
|
|
|
|
<!-- <link href='https://fonts.googleapis.com/css?family=Roboto:400,300,400italic,500,500italic,700' rel='stylesheet' type='text/css'> -->
|
2018-08-31 18:52:21 +02:00
|
|
|
<link rel="stylesheet" type="text/css" media="all" href="../css/demo.css"/>
|
2017-10-02 00:02:06 +02:00
|
|
|
<!-- <link rel="stylesheet" type="text/css" media="print" href="./css/print.css"/> -->
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</head>
|
|
|
|
|
|
2018-10-07 16:58:07 +02:00
|
|
|
<body id="{{ pageId }}" class="{{ pageClass }}">
|
2018-08-31 18:52:21 +02:00
|
|
|
{% include "hippie/partials/page-hover.njk" %}
|
2017-10-02 00:02:06 +02:00
|
|
|
<div id="root">
|
|
|
|
|
<header id="js_head" class="header_site">
|
|
|
|
|
{% block body_header %}
|
|
|
|
|
<!-- super stuff -->
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</header>
|
|
|
|
|
<main class="main_site">
|
|
|
|
|
{% block body_content %}{% endblock %}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
<script
|
|
|
|
|
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
|
|
|
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
|
|
|
crossorigin="anonymous"></script>
|
2018-04-30 19:09:17 +02:00
|
|
|
{# <script src="bower_components/jquery/dist/jquery.js"></script> #}
|
2017-10-02 00:02:06 +02:00
|
|
|
{% block script %}{% endblock %}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|