forked from BitDevsNYC/BitDevsNYC.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevents.html
More file actions
executable file
·30 lines (27 loc) · 1.29 KB
/
events.html
File metadata and controls
executable file
·30 lines (27 loc) · 1.29 KB
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
---
layout: default
title: Events
---
<h3>Events</h3>
<div class="Home">
<div class="Home-posts">
**Register to join <a href="https://lu.ma/user/bitdevszm" target="_blank">here</a> or <a href="https://luma.com/bitdevs_zambia" target="_blank">here</a> (sorry for multiple links atm). And find more new (and past) Bitcoin Zambia meetup dates <a href="https://bitcoinzambia.org/meetups/" target="_blank">here</a>.**
<br>
<h2 class="Home-posts-title">Upcoming Events</h2>
{% for post in site.posts %} {% if post.type == "socratic" and post.date > site.time %}
<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 %}
<h2 class="Home-posts-title">Recent Events</h2>
{% for post in site.posts %} {% if post.type == "socratic" and post.date < site.time %}
<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>