Files
old.xevion.github.io/_includes/other-projects.html
Brittany Chiang d5f68ff788 I got a job!
2018-03-17 14:46:51 -04:00

19 lines
594 B
HTML

<section class="section other-projects">
<div class="section__title">Other Projects</div>
<div class="section__content">
{% for project in site.data.other-projects %}
<div class="project">
<div class="project__name">
<a href="{{project.url}}" target="_blank" class="arrow-link">{{project.name}}</a>
</div>
<p>{{project.description}}</p>
<div class="project__used">
{% for item in project.used %}
<span class="project__used__item">{{item.thing}}</span>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</section>