Skip to content

Commit

Permalink
Update display.html
Browse files Browse the repository at this point in the history
  • Loading branch information
engrmarkk committed Aug 24, 2024
1 parent 67b2c77 commit dfe1334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/display.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% if post.author.photo %}
<img class="rounded-circle article-img"
style="width: 5rem;"
src="{{ url_for('static', filename='images/profile/' + post.author.photo) }}">
src="{{ post.author.photo }}">
{% else %}
<img
style="width: 4rem"
Expand Down Expand Up @@ -59,7 +59,7 @@
{% if post.photo %}
<div class="mt-4">
<img class=" article-img img-thumbnail"
src="{{ url_for('static', filename='images/post/' + post.photo) }}">
src="{{ post.photo }}">
</div>
{% endif %}

Expand Down

0 comments on commit dfe1334

Please sign in to comment.