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