Skip to content

Commit

Permalink
Fix last_modified_at date display on recent notes
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-brennan committed Dec 30, 2022
1 parent e5f8f42 commit d983993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion _notes/crabs_motorcycle_club.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: Crabs Motorcycle Club
tags: []
tags: [factions]
stories: [bottom_feeders]
---

A once-great motorcycle club, the Crabs are a rabble of losers and misfits that can't even intimidate the residents of the peaceful town they live in, Whiteport CA. They are bossed around by the Devil's Faithful MC, and one last heist will make or break their club.
2 changes: 1 addition & 1 deletion _pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ I apologise, but I must attend to my [[The Thaw|current manuscript]] now. It's q
<ul>
{% assign sorted_notes = site.notes | sort: 'last_modified_at_str' | reverse %}
{% for post in sorted_notes limit: 3 %}
<li><a class="internal-link" href="{{ post.url }}">{{ post.title | truncate: 20 }}</a><br/>(<time class="posttime" datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %-d, %Y" }}</time>)</li>
<li><a class="internal-link" href="{{ post.url }}">{{ post.title | truncate: 20 }}</a><br/>(<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>
</div>
Expand Down

0 comments on commit d983993

Please sign in to comment.