skills not finished yet

This commit is contained in:
Aron Petau 2025-05-01 03:53:16 +02:00
parent 996fabfae6
commit 2b91cf6f6b
49 changed files with 104 additions and 47 deletions

View file

@ -0,0 +1,15 @@
<!-- shortcodes/skills.html -->
<div class="skills-list">
<h3>{{ header }}</h3>
<h4>{{ subheader }}</h4>
<ul class="skills-items">
{% for item in list %}
<li>
{% if item.icon %}
<i class="fa {{ item.icon }}"></i>
{% endif %}
{{ item.name }}
</li>
{% endfor %}
</ul>
</div>