Skip to content

Commit

Permalink
Add directory of all notes
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-brennan committed Apr 20, 2024
1 parent 65a67a8 commit e9285d4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions _pages/all.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
layout: page
title: All Notes
id: all
permalink: /all
---

<ul>
{% assign sorted_notes = site.notes | sort: 'title' %} {% for post in
sorted_notes %}
<li>
<a class="internal-link" href="{{ post.url }}">{{ post.title }}</a
>&nbsp;(<time
class="posttime"
datetime="{{ post.last_modified_at | date_to_xmlschema }}"
itemprop="datePublished"
>{{ post.last_modified_at | date: "%B %-d, %Y" }}</time
>)
</li>
{% endfor %}
</ul>

0 comments on commit e9285d4

Please sign in to comment.