-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·31 lines (30 loc) · 1010 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: "FAF"
date: 2018-07-04 11:56:42
permalink: /blog/
---
<div id="posts">
{% for post in site.posts limit:5 %}
<article class="post">
<div class="text-content">
<p class="metadata">{{ post.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
<h2><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</div>
</article>
{% endfor %}
</div>
{% if site.posts == 0 %}
<section>
<div class="text-content">
<p><em>There's nothing here (yet...)</em></p>
<p>
In the meantime, check out the <a href="https://www.facebook.com/FAF.UTM/">
Facebook page</a>
</p>
{% include mailinglist.html %}
</div>
</section>
<style> footer { display: none; } </style>
{% endif %}