2024-08-11 12:05:18 +02:00
|
|
|
<!-- demo.main.template -->
|
2024-08-10 15:25:41 +02:00
|
|
|
{% extends "hippie/_main.njk" %}
|
|
|
|
|
|
|
|
|
|
{% block meta %}
|
2025-05-18 13:08:58 +02:00
|
|
|
{% include "demo/partials/_meta.njk" %}
|
|
|
|
|
<base href="/">
|
2024-08-10 15:25:41 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block links %}
|
2025-05-18 13:08:58 +02:00
|
|
|
{{ super() }}
|
|
|
|
|
{% if hippie.legacyMode %}
|
|
|
|
|
<!--[if lte IE 9]> <script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv.min.js"></script> <![endif]-->
|
|
|
|
|
<!--[if lte IE 9]> <script src="https://cdn.jsdelivr.net/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script> <![endif]-->
|
|
|
|
|
<!--Local alternative: <script src="./code/html5shiv.min.js"></script>-->
|
|
|
|
|
<!--Only use one of the above!-->
|
|
|
|
|
{% endif %}
|
2024-08-10 15:25:41 +02:00
|
|
|
|
2025-05-18 13:08:58 +02:00
|
|
|
<!-- <link href='https://fonts.googleapis.com/css?family=Roboto:400,300,400italic,500,500italic,700' rel='stylesheet' type='text/css'> -->
|
|
|
|
|
<link rel="stylesheet" type="text/css" media="all" href="{{ pageBase }}css/demo.css"/>
|
|
|
|
|
<!-- <link rel="stylesheet" type="text/css" media="print" href="{{ pageBase }}css/print.css"/> -->
|
|
|
|
|
{% endblock %}
|