lynnespace/_content/projects.html

22 lines
545 B
HTML
Raw Permalink Normal View History

2021-01-08 07:17:56 +00:00
---
title: Projects
---
2021-05-01 13:14:02 +00:00
<p>
These are some of my personal projects. This is not an extensive list, it's mostly only stuff I actually think is
notable in some way.
</p>
<div id="projects">
{% assign projects = site.projects | sort:"order" %}
{% for project in projects %}
<div class="project">
<h2>{{ project.name }}</h2>
<p>
{{ project.description }}
</p>
<div class="project-footer">
<a href="{{ project.url }}">Read more</a> |
<a href="{{ project.source }}">Source code</a>
</div>
</div>
{% endfor %}
</div>