Projects page

This commit is contained in:
2023-07-09 22:34:16 +02:00
parent a43f2463e2
commit 71b599f790
3 changed files with 55 additions and 0 deletions

23
_layouts/projects.html Normal file
View File

@@ -0,0 +1,23 @@
---
layout: default
---
<section class="projects">
<header class="post-header">
<h1 class="post-title">{{ page.title | escape }}</h1>
</header>
<div class="post-content">
{{ content }}
</div>
<ul>
{% for project in site.data.projects %}
<li>
<a href="https://github.com/{{ project.github }}">
{{ project.name }}
</a>
</li>
{% endfor %}
</ul>
</section>