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>
16 lines
454 B
Plaintext
16 lines
454 B
Plaintext
{% comment %}
|
|
Unified references 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 %}
|
|
<strong>{{ entry.name }}</strong>
|
|
<p>{{ entry.reference | markdownify | remove: '<p>' | remove: '</p>' }}</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|