bio/template/index.html.njk
2023-10-24 15:22:28 +08:00

36 lines
744 B
Plaintext

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