Skip to content

Commit

Permalink
Fix typo in -> on (#3029)
Browse files Browse the repository at this point in the history
Fixed a small typo in `post.liquid`.
  • Loading branch information
langestefan authored Feb 24, 2025
1 parent 977872f commit 6b00edc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _layouts/post.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ layout: default
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">
Created in {{ page.date | date: '%B %d, %Y' }}
Created on {{ page.date | date: '%B %d, %Y' }}
{% if page.author %}by {{ page.author }}{% endif %}
{% if page.last_updated %}, last updated in {{ page.last_updated | date: '%B %d, %Y' }}{% endif %}
{% if page.last_updated %}, last updated on {{ page.last_updated | date: '%B %d, %Y' }}{% endif %}
{% if page.meta %}• {{ page.meta }}{% endif %}
</p>
<p class="post-tags">
Expand Down

0 comments on commit 6b00edc

Please sign in to comment.