mirror of
https://github.com/Xevion/old.xevion.github.io.git
synced 2025-12-06 03:15:39 -06:00
19 lines
594 B
HTML
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>
|