26 lines
625 B
HTML
26 lines
625 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="cv panel">
|
|
{% include "cv-nav.html" %}
|
|
<div class="content">
|
|
{{ section.content | safe }}
|
|
{% if section.pages -%}
|
|
<h1>Career</h1>
|
|
{% for p in section.pages %}
|
|
<h2>
|
|
<a href="{{ p.permalink }}"
|
|
>{{ p.title }}{% if p.extra.title is defined%}: {{ p.extra.title }}{%
|
|
endif %}{% if p.extra.years is defined %} ({{ p.extra.years}}){% endif
|
|
%}</a
|
|
>
|
|
</h2>
|
|
{% if p.summary %}
|
|
{{ p.summary | safe }}
|
|
<a class="continue-reading" href="{{ p.permalink }}#continue-reading">Continue Reading…</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif -%}
|
|
</div>
|
|
</div>
|
|
{% endblock -%}
|