_includes/
_layouts/
_pages/
donate/
fund.md
2.6 KiB
log.html
391 B
nakamoto.md
32 B
popol.md
29 B
whoami.md
2.0 KiB
_posts/
assets/
css/
fonts/
images/
js/
.gitignore
62 B
Gemfile
68 B
Gemfile.lock
1.7 KiB
Makefile
198 B
README
192 B
_config.yml
278 B
avatar.png
44.3 KiB
cloudhead.gpg
892 B
favicon.png
179 B
index.md
79 B
publish
1.6 KiB
robots.txt
33 B
_pages/log.html
raw
| 1 | --- |
| 2 | title: Blog |
| 3 | headline: cloudhead's blog |
| 4 | super: "Thoughts on software & technology" |
| 5 | layout: default |
| 6 | permalink: /log/ |
| 7 | teaser: thoughts on software |
| 8 | slug: log |
| 9 | --- |
| 10 | |
| 11 | {% for post in site.posts %} |
| 12 | {% unless post.draft %} |
| 13 | <div> |
| 14 | <span class="subtle">{{ post.date | date: "%Y.%m.%d" }}</span> |
| 15 | <a href="{{ post.url }}">{{ post.title }}</a> |
| 16 | </div> |
| 17 | {% endunless %} |
| 18 | {% endfor %} |