Skip to content

Commit

Permalink
feat: bring back "Posted on" for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonman225 committed May 25, 2022
1 parent fe83501 commit 8db38a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion themes/pure-ejs/layouts/partials/articleList.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h3 class="Article__Title">
<% } %>
<div class="DateTagBar">
<% if (page.date) { %>
<span class="DateTagBar__Item DateTagBar__Date"><%= page.dateString %></span>
<span class="DateTagBar__Item DateTagBar__Date">Posted on <%= page.dateString %></span>
<% } %>
<% page.tags.forEach(function(tag) { %>
<span class="DateTagBar__Item DateTagBar__Tag DateTagBar__Tag--<%= tag.color %>">
Expand Down
2 changes: 1 addition & 1 deletion themes/pure-ejs/layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1 class="Header__Title"><%= post.title %></h1>
<% if (post.date || post.tags.length) { %>
<div class="DateTagBar">
<% if (post.date) { %>
<span class="DateTagBar__Item DateTagBar__Date"><%= post.dateString %></span>
<span class="DateTagBar__Item DateTagBar__Date">Posted on <%= post.dateString %></span>
<% } %>
<% post.tags.forEach(function(tag) { %>
<span class="DateTagBar__Item DateTagBar__Tag DateTagBar__Tag--<%= tag.color %>">
Expand Down

0 comments on commit 8db38a4

Please sign in to comment.