mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
22 lines
443 B
HTML
22 lines
443 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="home">
|
|
|
|
<header class="home--banner">
|
|
<h1>Liquid</h1>
|
|
<div>Ruby library for rendering safe templates which cannot affect the security of the server they are rendered on.</div>
|
|
</header>
|
|
|
|
<hr/>
|
|
|
|
{% for post in site.posts %}
|
|
<h2>
|
|
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
|
</h2>
|
|
{{ post.content }}
|
|
{% endfor %}
|
|
|
|
</div>
|