26 lines
498 B
Plaintext
26 lines
498 B
Plaintext
|
---
|
||
|
title: Projects
|
||
|
eleventyNavigation:
|
||
|
key: Projects
|
||
|
icon: screwdriver-wrench
|
||
|
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>
|