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

17 lines
578 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>