dustin.web/templates/cv-page.html

13 lines
301 B
HTML

{% extends "base.html" %}
{% block content %}
{% set section = get_section(path="cv/_index.md") %}
<div class="cv panel">
{% include "cv-nav.html" %}
<h1>
{{ page.title }} {% if page.extra.years is defined %}({{ page.extra.years}}){%
endif %}
</h1>
{{ page.content | safe }}
</div>
{% endblock %}