* removed cache and remember from js task * renamed js variables * reworked js code * added logPerf function to page head
32 lines
837 B
Text
32 lines
837 B
Text
<!-- default.template -->
|
|
<!DOCTYPE html>
|
|
<html lang="de" class="{{ pageClass }}" id="{{ pageId }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock %} - HIPPIE</title>
|
|
|
|
{% include "demo/partials/_meta.njk" %}
|
|
{% block meta %}{% endblock %}
|
|
|
|
{% include "hippie/partials/_head_script.njk" %}
|
|
|
|
{% include "demo/partials/_links.njk" %}
|
|
{% block links %}
|
|
<link rel="stylesheet" type="text/css" media="all" href="/css/demo.css"/>
|
|
{% endblock %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body class="{{ bodyClass }}">
|
|
{% block body %}{% endblock %}
|
|
|
|
{% block script %}
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
crossorigin="anonymous"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|