M _data/sites.csv => _data/sites.csv +1 -1
@@ 2,7 2,7 @@ name,who,link
zx2c4,Jason A. Donenfield,https://www.zx2c4.com/
sircmpwn,Drew DeVault,https://drewdevault.com/
research.swtch.com,Russ Cox,https://research.swtch.com/
-harmful.cat-v.org,harmful stuff,http://harmful.cat-v.org
+harmful.cat-v.org,,http://harmful.cat-v.org
Richard Stallman's Personal Site,Richard M. Stallman,https://stallman.org/
blog.siphos.be,Sven Vermeulen,http://blog.siphos.be/
Hundred Rabbits,The Rabbits,https://100r.co/
M => +1 -1
@@ 35,7 35,7 @@
<h3>Pages</h3>
<a href="/" class="button">Home</a>
<a href="/about" class="button">Background</a>
<a href="/about" class="button">Who</a>
<a href="/sites.html" class="button">Sites</a>
<h3>License</h3>
M _layouts/post.html => _layouts/post.html +1 -1
@@ 3,7 3,7 @@ layout: default
active: post
---
<header class="post-header">
- <div class="subtitle-stuff">Posted on {{ page.date | date_to_string }}</div>
+ <div class="subtitle-stuff">Posted on {{ page.date | date_to_string }} · <a href="/">Go back</a></div>
</header>
<article class="post-content">
M about/index.html => about/index.html +1 -1
@@ 1,6 1,6 @@
---
layout: default
-title: About
+title: who
active: about
---
M css/main.scss => css/main.scss +9 -0
@@ 78,6 78,11 @@ table {
.tag::before {
content: '#'
}
+
+ ul.sites {
+ list-style-type: none;
+ padding: 0;
+ }
}
.sidebar {
@@ 119,6 124,10 @@ table {
div.subtitle-stuff {
color: grey;
font-size: 0.8rem;
+
+ a {
+ color: grey;
+ }
}
code {
M sites.md => sites.md +9 -5
@@ 1,15 1,19 @@
---
layout: default
-title: Sites
+title: sites
---
This is a collection of sites that I keep my eyes on.
<div class="external-links">
+<ul class="sites">
{% for s in site.data.sites %}
- {% if s.who != "" %}
- <div class="external-link">{{ s.who }}</div>
- {% endif %}
- <a href="{{ s.link }}">{{s.name}}</a>
+ <li>
+ <a href="{{ s.link }}">{{s.name}}</a>
+ {% if s.who %}
+ by <em>{{ s.who }}</em>
+ {% endif %}
+ </li>
{% endfor %}
+</ul>
</div>