forked from ossd-sp22/levbernstein-weekly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemails.html
More file actions
29 lines (21 loc) · 686 Bytes
/
emails.html
File metadata and controls
29 lines (21 loc) · 686 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
---
layout: default
title: Emails
---
<div>
While Secretary of Quiz Bowl at NYU, I made sure to include something fun or interesting in every email. Here, I have excerpted just the fun and interesting stuff.
</div>
<!-- https://levbernstein.github.io/site/emails -->
<div class="posts">
{% for post in site.posts %}
{% if post.title contains "Email" %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endif %}
{% endfor %}
</div>