Files
CyBySide/src/posts.liquid
Cyper beb83a9849
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 3s
feat: Reworked project layout to use liquid + components
Made project make heavier use of component-based rendering and broke parts of layout into separate files for making future layout files easier and less redundant
2025-07-27 18:07:57 -04:00

11 lines
216 B
Plaintext

---
layout: layout.liquid
title: Posts
---
<div class="container">
{% for post in collections.post %}
<h2><a href="{{ post.url }}">{{ post.data.title }}</a></h2>
<p>{{ post.content }}</p>
{% endfor %}
</div>