2020-08-26 22:22:20 +05:30
|
|
|
<div class="ui centered card"><!--Start tweet-->
|
|
|
|
<div class="content">
|
|
|
|
<div class="extra content">
|
|
|
|
<div class="left floated author">
|
2020-09-02 00:33:51 +05:30
|
|
|
<img alt="Avatar" class="ui avatar image" src="{{ post.profilePic }}">
|
2020-07-13 20:06:45 +05:30
|
|
|
</div>
|
2020-08-26 22:22:20 +05:30
|
|
|
|
2020-09-09 20:09:58 +05:30
|
|
|
<a target="_blank" href="{{post.url}}"><span class="right floated star">
|
2020-08-26 22:22:20 +05:30
|
|
|
<i class="share square outline icon"></i>
|
|
|
|
</span></a>
|
|
|
|
</div>
|
2020-08-27 15:37:59 +05:30
|
|
|
<div class="header" id="author"><a href="{{url_for('u', username=post.op.replace('@',''))}}">{{ post.op }}</a></div>
|
2020-08-26 22:22:20 +05:30
|
|
|
<div class="meta">
|
|
|
|
<span class="category" id="time"><i class="clock icon"></i> {{post.date}} </span>
|
2020-08-27 00:19:45 +05:30
|
|
|
{% if post.isPinned %}
|
|
|
|
<span class="category" id="time"><i class="map pin icon"></i> Pinned </span>
|
|
|
|
{%endif%}
|
|
|
|
{% if post.isRT %}
|
2020-08-28 02:55:08 +05:30
|
|
|
<span class="category"><i class="retweet icon"></i> {{post.username}}</span>
|
2020-08-27 00:19:45 +05:30
|
|
|
{%endif%}
|
2020-08-26 22:22:20 +05:30
|
|
|
</div>
|
|
|
|
<div class="description break-word">
|
|
|
|
<p>{{post.content}}</p>
|
|
|
|
</div>
|
|
|
|
<div class="extra content">
|
2020-08-28 02:55:08 +05:30
|
|
|
{% if post.attachedImg != "" %}
|
2020-09-02 00:33:51 +05:30
|
|
|
<img alt="Image attachment" class="ui centered medium image" src="{{post.attachedImg}}">
|
2020-08-28 02:55:08 +05:30
|
|
|
{% 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="description break-word">
|
|
|
|
{{post.replyingTweetContent}}
|
|
|
|
{% if post.replyAttachedImg != "" %}
|
2020-09-02 00:33:51 +05:30
|
|
|
<img alt="Image attachment" class="ui centered medium image" src="{{post.replyAttachedImg}}">
|
2020-08-28 02:55:08 +05:30
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2020-08-26 22:22:20 +05:30
|
|
|
<p>
|
|
|
|
<form class="ui form" action="{{ url_for('savePost', url=post.url.replace('/', '~')) }}" method="post">
|
|
|
|
<button type="submit" class="ui icon button">
|
|
|
|
<i class="bookmark outline icon"></i>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</p>
|
2020-07-13 03:13:36 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div> <!--End tweet-->
|