* restructure of all templates and pages * fixed gulp reloading of pages * restructured style elements accroding to HTML5.2 doc * changed basic line-height * added positional styles * added demo_module styles
17 lines
418 B
Text
17 lines
418 B
Text
<!-- page-blank.njk -->
|
|
{% set pageId = "blank" %}
|
|
{% set pageClass = "height_full" %}
|
|
|
|
{% extends "hippie/demo-default.njk" %}
|
|
|
|
{% block title %}blank{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<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 %}
|
|
|
|
{% block body_content %}
|
|
|
|
{% endblock %}
|