mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
36 lines
988 B
Markdown
36 lines
988 B
Markdown
---
|
|
title: Blog
|
|
layout: default
|
|
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.
|
|
permalink: /
|
|
redirect_from:
|
|
- /blog/
|
|
mathjax: false
|
|
img:
|
|
src: /assets/images/avatar.jpeg
|
|
alt: A picture of me.
|
|
---
|
|
{% for post in site.posts %}
|
|
<article class="h-entry blogroll">
|
|
|
|
<a class="u-uid u-url" href="{{ post.url }}">
|
|
<figure>
|
|
<img class="u-photo"
|
|
src = "{{ post.thumbnail | default: post.image }}"
|
|
class = "{{ post.image_class }}"
|
|
alt="{{post.alt}}">
|
|
</figure>
|
|
</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>
|
|
{% unless forloop.last %}
|
|
<hr class="blogroll">
|
|
{% endunless %}
|
|
|
|
{% endfor %} |