skills not finished yet
This commit is contained in:
parent
996fabfae6
commit
2b91cf6f6b
49 changed files with 104 additions and 47 deletions
15
templates/shortcodes/skills.html
Normal file
15
templates/shortcodes/skills.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue