This commit is contained in:
Nick Stokoe
2023-01-05 14:47:16 +00:00
parent 2bdd8579ab
commit fc1d35edd7
2040 changed files with 4278 additions and 0 deletions

14
src/index.html Normal file
View File

@@ -0,0 +1,14 @@
---
title: Hi
---
Hello!!
<ul>
{%- for post in collections.articles -%}
<li>
{% if post.data.featured_image %}
<img width=100 height=100 src="_images/{{ post.data.featured_image }}">
{% endif %}
<a href="{{ post.url }}">{{ post.data.title }}</a></li>
{%- endfor -%}
</ul>