mirror of
https://github.com/svemagie/blog-eleventy-indiekit.git
synced 2026-04-02 16:44:56 +02:00
- cv-experience.njk: work history timeline with highlights - cv-skills.njk: skills grid grouped by category - cv-education.njk: education cards + language pills - cv-projects.njk: project cards with status badges and tech tags - cv-interests.njk: interest tag cloud - Update homepage-builder.njk to include cv-education and cv-interests Part of indiekit-endpoint-cv plugin integration (Phase 2). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
{#
|
|
CV Skills Section - skills grouped by category
|
|
Data fetched from /cv/data.json via homepage plugin
|
|
#}
|
|
|
|
{% if cv and cv.skills and (cv.skills | dictsort | length) %}
|
|
<section class="mb-8 sm:mb-12" id="skills">
|
|
<h2 class="text-xl sm:text-2xl font-bold text-surface-900 dark:text-surface-100 mb-4 sm:mb-6">
|
|
{{ section.config.title or "Skills" }}
|
|
</h2>
|
|
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
|
|
{% for category, items in cv.skills | dictsort %}
|
|
<div class="p-4 bg-white dark:bg-surface-800 rounded-lg border border-surface-200 dark:border-surface-700">
|
|
<h3 class="font-semibold text-sm uppercase tracking-wide text-surface-600 dark:text-surface-400 mb-2">
|
|
{{ category }}
|
|
</h3>
|
|
<div class="flex flex-wrap gap-1.5">
|
|
{% for skill in items %}
|
|
<span class="text-xs px-2 py-1 bg-primary-50 dark:bg-primary-900/30 text-primary-700 dark:text-primary-300 rounded-full">
|
|
{{ skill }}
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
{% endif %}
|