added blog

This commit is contained in:
Paul Gauthier 2024-02-11 06:07:29 -08:00
parent 69d1107b31
commit 3fb698cdca
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,8 @@
---
layout: post
title: "Welcome to the aider blog"
---
# Welcome
**Hello world**, this is my first Aider blog post.

18
blog/index.html Normal file
View file

@ -0,0 +1,18 @@
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>