-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrolls.html
34 lines (28 loc) · 916 Bytes
/
rolls.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
---
layout: study--post
title: Rolls
subtitle: Recommended blogs and newsletters
---
<p>
Sometimes I want to Read Things on the Internet, but without idly scrolling through Twitter. When in that mood, I turn to
these fine folks and their blogs. (In no particular order—the list is randomly reordered each time this site regenerates.)
</p>
<ul>
{% assign blogroll = site.data.rolls | where: "type", "blog" | sample: 1000 %}
{% for blog in blogroll %}
<li>
<a href="{{ blog.url }}">{{ blog.label }}</a>
</li>
{% endfor %}
</ul>
<p>
And some newsletters! I’m always happy to see one of these newsletters land in my inbox. (Same deal on the random ordering.)
</p>
<ul>
{% assign newsletterroll = site.data.rolls | where: "type", "newsletter" | sample: 1000 %}
{% for newsletter in newsletterroll %}
<li>
<a href="{{ newsletter.url }}">{{ newsletter.label }}</a>
</li>
{% endfor %}
</ul>