style: show experience highlights as tags instead of bullet list

Matches the tag/pill style used by interests and skills sections.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ricardo
2026-02-09 14:31:23 +01:00
parent 45b42c67fe
commit b8ad6dbb25
@@ -31,14 +31,13 @@
<p class="text-sm text-surface-700 dark:text-surface-300 mt-2">{{ item.description }}</p> <p class="text-sm text-surface-700 dark:text-surface-300 mt-2">{{ item.description }}</p>
{% endif %} {% endif %}
{% if showHighlights and item.highlights and item.highlights.length %} {% if showHighlights and item.highlights and item.highlights.length %}
<ul class="mt-2 space-y-1"> <div class="flex flex-wrap gap-1.5 mt-2">
{% for h in item.highlights %} {% for h in item.highlights %}
<li class="text-sm text-surface-600 dark:text-surface-400 flex items-start gap-1.5"> <span class="px-2.5 py-1 bg-white dark:bg-surface-800 border border-surface-200 dark:border-surface-700 rounded-full text-xs text-surface-700 dark:text-surface-300">
<span class="text-primary-500 mt-1 shrink-0">&#8226;</span>
{{ h }} {{ h }}
</li> </span>
{% endfor %} {% endfor %}
</ul> </div>
{% endif %} {% endif %}
</div> </div>
{% endfor %} {% endfor %}