- changed .gitignore for art folder - add gulp processing for art - changed nunjucks templates file structure to reflect demo files - removed file for new styles - renamed most sass variables - added sass function for space classes - great progress with content of the intro page - moved old gulp tasks to DEPRECATED.md
28 lines
715 B
Text
28 lines
715 B
Text
<!-- template-default.njk -->
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
{% block head %}
|
|
{% include "demo/partials/head-meta.njk" %}
|
|
|
|
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
|
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
|
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body id="{{ pageId }}" class="{{ pageClass }}">
|
|
{% block body_content %}{% endblock %}
|
|
|
|
{% block script %}
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.2.1.min.js"
|
|
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
|
|
crossorigin="anonymous"></script>
|
|
{# <script src="bower_components/jquery/dist/jquery.js"></script> #}
|
|
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|