general work
- renamed nunjucks extension to njk - removed old demo html files - started to change CRLF to LF - detail work on style definitions - added structure for demo files
This commit is contained in:
parent
cf8fd24a85
commit
c781f5c6c5
31 changed files with 1155 additions and 1641 deletions
|
|
@ -1,4 +1,3 @@
|
|||
<!-- layout.nunjucks -->
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
|
|
@ -8,7 +7,7 @@
|
|||
<title>{% block title %}{% endblock %} - HIPPIE</title>
|
||||
|
||||
<meta name="author" content="Interaktionsweise">
|
||||
<meta name="description" content="hippie example">
|
||||
<meta name="description" content="hippie">
|
||||
<meta name="generator" content="Notepad++, Atom">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
|
|
@ -23,10 +22,13 @@
|
|||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body id="{{ pageId }}" class="height_full">
|
||||
<body id="{{ pageId }}" class="{{ pageClass }}">
|
||||
{% block body_content %}{% endblock %}
|
||||
<script src="bower_components/jquery/dist/jquery.js"></script>
|
||||
<script src="../vendor/jq-sticky-anything.min.js" type="text/javascript"></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> #}
|
||||
<script src="./js/all.min.js" type="text/javascript"></script>
|
||||
{% block script %}{% endblock %}
|
||||
</body>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<!-- layout.nunjucks -->
|
||||
<!-- layout.njk -->
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
|
|
@ -33,7 +33,8 @@
|
|||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body class="{{ pageId }}_body">
|
||||
<body id="{{ pageId }}" class="body__demo">
|
||||
{% include "partials/page-hover.njk" %}
|
||||
<div id="root">
|
||||
<header id="js_head" class="header_site">
|
||||
{% block body_header %}
|
||||
|
|
@ -48,6 +49,7 @@
|
|||
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> #}
|
||||
<script src="../vendor/jq-sticky-anything.min.js" type="text/javascript"></script>
|
||||
<script src="./js/all.min.js" type="text/javascript"></script>
|
||||
{% block script %}{% endblock %}
|
||||
|
|
@ -1,4 +1,3 @@
|
|||
<!-- layout.nunjucks -->
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
|
|
@ -8,7 +7,7 @@
|
|||
<title>{% block title %}{% endblock %}</title>
|
||||
|
||||
<meta name="author" content="Interaktionsweise">
|
||||
<meta name="description" content="hippie example">
|
||||
<meta name="description" content="hippie http status">
|
||||
<meta name="generator" content="Notepad++, Atom">
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
|
|
@ -17,10 +16,12 @@
|
|||
|
||||
<link rel="icon" href="./favicon.ico" type="image/vnd.microsoft.icon">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" media="all" href="./css/maintenance.css"/>
|
||||
{% endblock %}
|
||||
</head>
|
||||
|
||||
<body id="{{ pageId }}" class="height_full">
|
||||
<body id="{{ pageId }}" class="{{ pageClass }}">
|
||||
<div id="root">
|
||||
{% block body_content %}{% endblock %}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue