mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
11 lines
203 B
HTML
11 lines
203 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% for post in site.posts %}
|
|
<h2>
|
|
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
</h2>
|
|
{{ post.content }}
|
|
{% endfor %}
|