26 lines
660 B
HTML
26 lines
660 B
HTML
---
|
|
title: "Projects"
|
|
layout: default
|
|
---
|
|
<h1>Projects</h1>
|
|
<div>
|
|
<p>
|
|
These are some of my personal projects that I've worked on. 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>
|
|
<a href='{{ project.url }}'>Read more</a>
|
|
</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>
|