forked from robolectric/robolectric.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
23 lines (21 loc) · 829 Bytes
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
title: Blog
page_title: Robolectric Blog
---
<ul>
{% for post in site.posts %}
{% unless post.hide %}
<li class="post">
<h3 class="post-title" itemprop="name headline"><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></h3>
<p class="post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%b %-d, %Y" }}</time>
{% if post.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ post.author }}</span></span>{% endif %}
<div>{{ post.excerpt }}</div>
<hr/>
<!--<ul class="actions">-->
<!--<li><a href="{{ post.url | relative_url }}" class="button">More…</a></li>-->
<!--</ul>-->
</li>
{% endunless %}
{% endfor %}
</ul>