-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 789 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
---
<div class="home">
<div class="posts">
{% for post in paginator.posts %}
{% if post.categories contains "ESAC" or post.categories contains "special" %}
{% comment %} ESAC and special posts are not shown on the OpenAPC blog (but they are still exported to the INTACT site) {% endcomment %}
{% else if %}
<div class="post">
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link">
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
<h3 class="h2 post-title">{{ post.title }}</h3>
</a>
<p class="post-summary">{{ post.excerpt }}</p>
</div>
{% endif %}
{% endfor %}
</div>
{% include pagination.html %}
</div>