Skip to content

Commit

Permalink
Swap date/author order on blog pages
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinEtchells committed Aug 5, 2024
1 parent 8f75247 commit c8ca536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blog.njk
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ permalink: "blogs/{{ blog.title | slugify }}/"

<div class="iai-blog-title container">
<h2 class="iai-blog-title__title">{{ blog.title }}</h2>
<p class="iai-blog-title__date">{{ blog.date | dateFormat }}</p>
{% if blog.author %}
{{ blogAuthor (blog.author, "large") }}
{% endif %}
<p class="iai-blog-title__date">{{ blog.date | dateFormat }}</p>
{% if blog.summaryLong %}
<p class="iai-blog-title__summary">{{ blog.summaryLong }}</p>
{% endif %}
Expand Down

0 comments on commit c8ca536

Please sign in to comment.