bio/template/index.html.njk

36 lines
744 B
Plaintext
Raw Normal View History

2023-07-13 06:11:06 +00:00
<!DOCTYPE html>
{% import "grid_sections.html.njk" as grid_sections %}
2023-07-13 06:11:06 +00:00
<html>
<head>
{% if dev %}
{% include "autoreload.html" %}
2023-07-13 06:11:06 +00:00
{% endif %}
<title>{{ name }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1">
<link ref="canonical" href="{{canonical_link}}" />
2023-07-14 07:56:29 +00:00
{% include "hide.html" %}
2023-07-13 06:11:06 +00:00
</head>
<style>{% include "reset.css" %}</style>
<style>{% include "style.css" %}</style>
2023-07-14 07:56:29 +00:00
<body onload="unhide_permalink()">
2023-07-13 06:11:06 +00:00
<main>
2023-07-14 03:10:19 +00:00
<div class="big_title">
2023-07-13 06:11:06 +00:00
<h1>{{ name }}</h1>
<p>{{ description }}</p>
</div>
2023-07-14 03:10:19 +00:00
{% for s in section %}
{{ grid_sections.render_section(s) }}
2023-07-14 03:10:19 +00:00
{% endfor %}
2023-07-13 06:11:06 +00:00
</main>
</body>
</html>