26 lines
484 B
Plaintext
26 lines
484 B
Plaintext
---
|
|
title: Projects
|
|
eleventyNavigation:
|
|
key: Projects
|
|
icon: tool
|
|
order: 1
|
|
tags: [ "MainPage" ]
|
|
sectionOrder: 1
|
|
---
|
|
|
|
<div class="row-lg-3">
|
|
{% for project in projects %}
|
|
<section class="col card">
|
|
<h3>{{ project.name }}</h3>
|
|
<p>{{ project.description }}</p>
|
|
<ul class="card-links">
|
|
{% for link in project.links %}
|
|
<li>
|
|
<a href="{{ link.url }}" target="_blank">{{ link.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|