cv: Add overview nav link

This will provide a way for users to return to the "index" page of the
CV from one of the career pages.
pull/1/head
Dustin 2022-04-13 17:47:55 -05:00
parent daedd05a3d
commit ed180c147a
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
<nav class="cv-nav"> <nav class="cv-nav">
<ul class="cv-nav"> <ul class="cv-nav">
<li {% if page is not defined %}class="active"{% endif %}><a href="{{ section.permalink | safe }}">Overview</a></li>
{% for p in section.pages %} {% for p in section.pages %}
<li {% if page is defined and p.slug == page.slug %}class="active"{% endif %}><a href="{{ p.permalink | safe }}">{{ p.title }}</a></li> <li {% if page is defined and p.slug == page.slug %}class="active"{% endif %}><a href="{{ p.permalink | safe }}">{{ p.title }}</a></li>
{% endfor %} {% endfor %}