-
Notifications
You must be signed in to change notification settings - Fork 105
/
events.html
executable file
·42 lines (40 loc) · 1.43 KB
/
events.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
32
33
34
35
36
37
38
39
40
41
42
---
layout: default
title: Meetings
---
<div class="Home">
<div class="Home-posts">
<h2 class="Home-posts-title">Socratic Seminars</h2>
{% for post in site.posts %}
{% if post.type == "socratic" %}
<div class="Home-posts-post">
<span class="Home-posts-post-date">{{ post.date | date_to_string }}</span>
<span class="Home-posts-post-arrow">»</span>
<a class="Home-posts-post-title" href="{{ post.url }}">{{ post.title }}</a>
</div>
{% endif %}
{% endfor %}
<h4 class="Home-posts-subtitle">Ethereum Socratic Seminars</h4>
{% for post in site.posts %}
{% if post.type == "ethereum_socratic" %}
<div class="Home-posts-post">
<span class="Home-posts-post-date">{{ post.date | date_to_string }}</span>
<span class="Home-posts-post-arrow">»</span>
<a class="Home-posts-post-title" href="{{ post.url }}">{{ post.title }}</a>
</div>
{% endif %}
{% endfor %}
</div>
<div class="Home-posts">
<h2 class="Home-posts-title">Whitepaper Series</h2>
{% for post in site.posts %}
{% if post.type == "whitepaper" %}
<div class="Home-posts-post">
<span class="Home-posts-post-date">{{ post.date | date_to_string }}</span>
»
<a class="Home-posts-post-title" href="{{ post.url }}">{{ post.title }}</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>