mirror of
https://github.com/rottenwheel/revuo-weekly.git
synced 2024-11-09 10:12:25 -07:00
18 lines
441 B
HTML
18 lines
441 B
HTML
---
|
|
layout: default
|
|
---
|
|
<!-- Posts -->
|
|
<ul id="posts">
|
|
|
|
{% for post in paginator.posts %}
|
|
|
|
<li class="post">
|
|
<h2><a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">{{ post.title }}.html</a></h2>
|
|
<time datetime="{{ post.date | date_to_xmlschema }}" class="by-line">{{ post.date | date_to_string }}</time>
|
|
<p>{{ post.excerpt }}</p>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|