-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 887 Bytes
/
index.html
File metadata and controls
36 lines (28 loc) · 887 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
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: default
---
<div class="home">
<h1 class="page-heading">News</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
{% if post.author != nil %}
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }} – {{ post.author }}</span>
{% else %}
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
{% endif %}
<h2>
<span class="post-title" href="{{ post.meetup }}">{{ post.title }}</span>
</h2>
<span class="post-description">{{ post.content}}</span>
{% if post.type == 'meetup' %}
<div align="right">
<a class="meetup-link" href="{{ post.meetup }}">Go to the meetup page</a>
</div>
{% else %}
{% endif %}
<span class="post-separater"> <hr> </span>
</li>
{% endfor %}
</ul>
</div>