39 lines
800 B
HTML
39 lines
800 B
HTML
{% import "macros/opengraph.html" as opengraph_macros %}
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block stylesheet %}
|
|
<link rel="stylesheet" href="{{ config.base_url }}/index.css">
|
|
{% endblock %}
|
|
|
|
{% block head_extra %}
|
|
{{ opengraph_macros::opengraph(title=section.title, url=section.permalink, content=section.content, type="website") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<header>
|
|
{% include "includes/site-navigation.html" %}
|
|
{% include "includes/page-navigation.html" %}
|
|
{% include "includes/links.html" %}
|
|
</header>
|
|
|
|
<div id="main">
|
|
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
<section id="section-identity-card">
|
|
|
|
<h2>Identity Card<h2>
|
|
|
|
{% include "includes/identity-card.html" %}
|
|
|
|
</section>
|
|
|
|
{{ section.content |safe }}
|
|
|
|
{% include "includes/footer.html" %}
|
|
</div>
|
|
|
|
{% endblock content %}
|