Files
liquid/index.html
T
2015-01-27 15:06:23 -05:00

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>