hippie/source/templates/demo/_main.njk

21 lines
924 B
Text
Raw Normal View History

<!-- demo.main.template -->
{% extends "hippie/_main.njk" %}
{% block meta %}
2025-05-18 13:08:58 +02:00
{% include "demo/partials/_meta.njk" %}
<base href="/">
{% 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 %}
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 %}