- 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
19 lines
520 B
Text
19 lines
520 B
Text
<!-- page-maintenance.njk -->
|
|
{% set pageId = "blank" %}
|
|
{% set pageClass = "height_full" %}
|
|
|
|
{% extends "demo/maintenance.njk" %}
|
|
|
|
{% block title %}Wartung{% 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 %}
|
|
<div id="root" class="overflow">
|
|
<h1 class="txt_hero txt_center txt_gradient">HIPPIE</h1>
|
|
</div>
|
|
{% endblock %}
|