30 lines
927 B
HTML
30 lines
927 B
HTML
---
|
|
title: "Projects"
|
|
layout: default
|
|
---
|
|
<h1>Projects</h1>
|
|
<div>
|
|
<p>
|
|
These are some of my personal projects. This is not an extensive list, it's more focused on the stuff I'm proud of or find otherwise noteworthy.
|
|
</p>
|
|
|
|
<div id='projects'>
|
|
{% for project in site.projects %}
|
|
<div class='project'>
|
|
<h2>{{ project.name }}</h2>
|
|
<p>
|
|
{{ project.description }}
|
|
</p>
|
|
<div class='footer'>
|
|
<a href='{{ project.url }}'>Read more</a><span class='spacer'></span>
|
|
{% if project.source %}<a href='{{ project.source }}'>Source code</a><span class='spacer'></span>{% endif %}
|
|
{% if project.website %}<a href='{{ project.website }}'>Website</a><span class='spacer'></span>{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<p>
|
|
You can find more of my public projects on my <a href='https://git.bune.city/lynnesbian'>Gitea</a> and <a href='https://github.com/lynnesbian'>Github</a> pages.
|
|
</p>
|
|
</div>
|