22 lines
No EOL
545 B
HTML
22 lines
No EOL
545 B
HTML
---
|
|
title: Projects
|
|
---
|
|
<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> |