Skip to content

Commit

Permalink
Fix typo in posts.html
Browse files Browse the repository at this point in the history
  • Loading branch information
acsany authored Dec 21, 2023
1 parent 4db06ea commit 8c4f3e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask-logging/board/templates/posts/posts.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h2>{% block title %}Posts{% endblock title %}</h2>
{% for post in posts %}
<article>
<p class="message">{{ post["message"] }}<p>
<aside>Posted by {{ post["author"] }} on {{ post["created"].strftime("%b %d, %Y at %-I:%M%p") }}</aside>
<aside>Posted by {{ post["author"] }} on {{ post["created"].strftime("%b %d, %Y at %I:%M%p") }}</aside>
</article>
{% endfor %}
{% endblock content %}

0 comments on commit 8c4f3e3

Please sign in to comment.