Fixes #2787 as an alternative to #2969. It was getting too cumbersome to have 2 different data sources for CV and also a lot of different layout files, so I decided to unify them all. Main changes: - synchronized the information inside RenderCV (`_data/cv.yml`) and JSONResume (`assets/json/resume.json`) - unified layout files for CV information - added the option to set the "data source" in the CV page --------- Signed-off-by: George Araújo <george.gcac@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
29 lines
739 B
Plaintext
29 lines
739 B
Plaintext
{% comment %}
|
|
Unified certificates entry renderer for both formats
|
|
{% endcomment %}
|
|
|
|
<ul class="card-text font-weight-light list-group list-group-flush">
|
|
{% for entry in entries %}
|
|
<li class="list-group-item">
|
|
{% if entry.icon %}
|
|
<i class="{{ entry.icon }}"></i>
|
|
{% endif %}
|
|
{% if entry.url %}
|
|
<strong
|
|
><a href="{{ entry.url }}" target="_blank">{{ entry.name }}</a></strong
|
|
>
|
|
{% else %}
|
|
<strong>{{ entry.name }}</strong>
|
|
{% endif %}
|
|
|
|
{% if entry.issuer %}
|
|
- <em>{{ entry.issuer }}</em>
|
|
{% endif %}
|
|
|
|
{% if entry.date %}
|
|
({{ entry.date | split: '-' | slice: 0, 1 | join: '' }})
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|