Skip to content

Commit

Permalink
Tweak date text size on archive page
Browse files Browse the repository at this point in the history
  • Loading branch information
spudooli committed Sep 3, 2022
1 parent ffc62bc commit dd8bfd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spudoolicom/photoblog.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def post(id):
commentdate = datetime.now()
if "thesis" in commenturl:
flash("We got your comment, we'll consider publishing it in due course")
elif id == "110":
elif id == "110" or id == "66":
flash("We got your comment, we'll consider publishing it in due course")
else:
cur = db.mysql.connection.cursor()
Expand Down
2 changes: 1 addition & 1 deletion spudoolicom/templates/photoblog.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1 class="title-un">{% block title %}The Photoblog{% endblock %}</h1>
<h5><a href="{{ url_for('post', id=post[0]) }}">
<h5>{{ post[1] | replace('\\', '') }}
</a></h5>
<div class="post-info"><span> {{ post[3].strftime('%A, %-d %B, %Y %-H:%M')}}</span></div>
<div class="counter-title"><span> {{ post[3].strftime('%A, %-d %B, %Y %-H:%M')}}</span></div>
</div>
</li>

Expand Down

0 comments on commit dd8bfd2

Please sign in to comment.