Initial commit

This commit is contained in:
2018-08-23 16:44:53 +02:00
commit 1f06564778
115 changed files with 13984 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<section class="cv">
<h2>{{ 'cv.header'|trans }}</h2>
{% for tag in tags %}
<div class="tag tag-{{ tag }}">
<h3>{{ ('cv.headers.' ~ tag)|trans }}</h3>
{% for entry in cv.filterByTag(tag) %}
{{ include('parts/cv/entry.html.twig') }}
{% endfor %}
</div>
{% endfor %}
</section>