gulpjs * new spritesmith plugin * reworked exports * new nunjucks-render version fixing dependency issues! File structure New naming scheme for nunjucks files. Underscore used for files which are imported and not directly displayed. Nunjucks blocks where renamed and are placed differently. New macro for navigational elements.
29 lines
742 B
Text
29 lines
742 B
Text
<!-- template-default.njk -->
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock %} - HIPPIE</title>
|
|
|
|
{% include "demo/partials/_meta.njk" %}
|
|
|
|
{% block link %}{% endblock %}
|
|
|
|
<link rel="stylesheet" type="text/css" media="all" href="/css/demo.css"/>
|
|
<!-- <link rel="stylesheet" type="text/css" media="print" href="/css/print.css"/> -->
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body id="{{ pageId }}" class="{{ pageClass }}">
|
|
{% block body %}{% endblock %}
|
|
|
|
{% block script %}
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
crossorigin="anonymous"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|