Improves twitter feed images and quotations

This commit is contained in:
pluja 2020-10-02 16:19:39 +02:00
parent 874d5eb282
commit 917a09101d

View File

@ -24,17 +24,17 @@
</div>
<div class="extra content">
{% if post.attachedImg %}
<img alt="Image attachment" class="ui centered medium image" src="{{post.attachedImg}}">
<a href="{{post.attachedImg}}"><img alt="Image attachment" class="ui centered fluid rounded medium image" src="{{post.attachedImg}}"></a>
{% endif %}
{% if post.isReply %}
<div class="ui card">
<div class="content">
<div class="header">{{post.replyingUser}}</div>
<div class="meta">{{post.replyingUser}}</div>
<div class="header"><a href="/{{post.replyingUser}}">{{post.replyingUser}}</a></div>
<!--<div class="meta">{{post.replyingUser}}</div>-->
<div class="description break-word">
{{post.replyingTweetContent | safe}}
{% if post.replyAttachedImg %}
<img alt="Image attachment" class="ui centered medium image" src="{{post.replyAttachedImg}}">
<a href="{{post.attachedImg}}"><img alt="Image attachment" class="ui centered fluid rounded medium image" src="{{post.replyAttachedImg}}"></a>
{% endif %}
</div>
</div>