15 lines
288 B
HTML
15 lines
288 B
HTML
---
|
|
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>
|