Files
old.xevion.github.io/_includes/skills.html
Brittany Chiang b05b913105 v3
2017-10-10 22:15:49 -07:00

41 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<section class="section skills">
<div class="section__title">Skills</div>
<div class="section__content">
<!-- <p>Ive picked up quite a few skills during the course of my three co-ops, and aim to improve these skills everyday. Here are a few of the technologies that I have experience with:</p> -->
<div class="skillz">
<div class="skillz__category">
<div class="skillz__category__label">Languages</div>
<ul>
{% for language in site.data.skills.languages %}
<li class="skillz__category__item">{{language.item}}</li>
{% endfor %}
</ul>
</div>
<div class="skillz__category">
<div class="skillz__category__label">Frameworks</div>
<ul>
{% for framework in site.data.skills.frameworks %}
<li class="skillz__category__item">{{framework.item}}</li>
{% endfor %}
</ul>
</div>
<div class="skillz__category">
<div class="skillz__category__label">Tools</div>
<ul>
{% for tool in site.data.skills.tools %}
<li class="skillz__category__item">{{tool.item}}</li>
{% endfor %}
</ul>
</div>
<div class="skillz__category">
<div class="skillz__category__label">Design</div>
<ul>
{% for thing in site.data.skills.design %}
<li class="skillz__category__item">{{thing.item}}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>