personal_site/projects.md
2023-11-01 18:18:37 +00:00

24 lines
885 B
Markdown

---
title: Projects
layout: default
permalink: /projects/
excerpt: |
I'm Tom Hodson. Welcome to my little home on the web! There's a blog, a cv and some projects to look at.
img:
src: /assets/projects/lego_adapters/thumbnail.svg
alt:
class: invertable
---
{% for post in site.projects %}
<article class="h-entry project">
<a class="u-uid u-url" href="{{ post.url }}">
<img class="u-photo {{post.img.class}}" src = "{{post.img.src}}" alt="{{post.img.alt}}">
</a>
<section>
<h2 class="p-name blogroll-title"><a class="u-uid u-url" href="{{ post.url }}">{{ post.title }}</a></h2>
<!-- <time class="dt-published" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time> -->
<summary class="p-summary">{{ post.excerpt | markdownify | remove: '<p>' | remove: '</p>' }}</summary>
</section>
</article>
{% endfor %}