-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfun.html
More file actions
31 lines (26 loc) · 1.04 KB
/
fun.html
File metadata and controls
31 lines (26 loc) · 1.04 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
31
---
layout: default
title: Fun Stuff
image: /images/misc/me-fun.jpg
excerpt: "An old-school website with a list of fun stuff that I'm planning on doing. Please feel free to join in the fun!"
active: fun
---
<h1>Fun Stuff</h1>
<p>In an effort to distance myself from social media while providing an example of alternative ways of sharing things on the internet (remember websites?!), I give you this old-school list of fun stuff that I'm planning on doing. Feel free to join me!<p>
<hr />
{% for fun in site.fun %}
{% capture fun_date %}{{ fun.date | date: '%F' }}{% endcapture %}
{% capture current_date %}{{ site.time | date: '%F' }}{% endcapture %}
{% if fun_date >= current_date %}
<div class="mb-5">
<h3 class="mb-1"><a href="{{ fun.link }}" target="_blank">{{ fun.title }}</a></h3>
<p class="m-0 mb-2 text-secondary">{{ fun.time }} • {{ fun.location }}</p>
<p>{{ fun.description }}</p>
</div>
{% endif %}
{% endfor %}
<p>
<small><center><em>
Last updated {{ site.time | date_to_string }}
</em></center></small>
</p>