add non-breaking space

This commit is contained in:
2021-06-01 10:58:04 +00:00
parent b04f9ab862
commit 976363fdc6

View File

@@ -32,19 +32,19 @@
{% if author_image and author %}
<div class="article-author">
<a href="{% url 'member' author.id %}">
<img src="{{ author_image }}" alt="" /> {{ author.firstname }}
<img src="{{ author_image }}" alt="" />&nbsp;{{ author.firstname }}
</a>
</div>
{% elif post.author %}
<div class="article-author">
<a href="">
<img src="" alt="" /> {{ post.author }}
<img src="" alt="" />{{ post.author }}
</a>
</div>
{% else %}
<div class="article-author">
<a href="">
<img src="" alt="" />
<img src="" alt="" />&nbsp;
</a>
</div>
{% endif %}