tmpl: cv: Fix bullet characters on CV pages

pull/1/head
Dustin 2022-04-20 22:34:07 -05:00
parent 01a784dca3
commit 3466dcce6a
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
{% block content %} {% block content %}
{% set section = get_section(path="cv/_index.md") %} {% set section = get_section(path="cv/_index.md") %}
<div class="cv panel"> <div class="cv panel">
<div class="content">
{% include "cv-nav.html" %} {% include "cv-nav.html" %}
<h1> <h1>
{{ page.title }} {% if page.extra.years is defined %}({{ page.extra.years}}){% {{ page.title }} {% if page.extra.years is defined %}({{ page.extra.years}}){%
@ -9,4 +10,5 @@
</h1> </h1>
{{ page.content | safe }} {{ page.content | safe }}
</div> </div>
</div>
{% endblock %} {% endblock %}