40 lines
1.7 KiB
HTML
40 lines
1.7 KiB
HTML
<div class="ui centered card"><!--Start tweet-->
|
|
<div class="content">
|
|
<div class="extra content">
|
|
<div class="left floated author">
|
|
{% if post.isRT %}
|
|
<img class="ui avatar image" src="{{ url_for('static',filename='img/avatars/')}}{{range(1, 12) | random}}.png">
|
|
{%else%}
|
|
<img class="ui avatar image" src="{{ post.profilePic }}">
|
|
{%endif%}
|
|
|
|
</div>
|
|
|
|
<a href="{{post.url}}"><span class="right floated star">
|
|
<i class="share square outline icon"></i>
|
|
</span></a>
|
|
</div>
|
|
<div class="header" id="author"><a href="user/{{post.op.replace('@','')}}">{{ post.op }}</a></div>
|
|
<div class="meta">
|
|
<span class="category" id="time"><i class="clock icon"></i> {{post.date}} </span>
|
|
{% if post.isPinned %}
|
|
<span class="category" id="time"><i class="map pin icon"></i> Pinned </span>
|
|
{%endif%}
|
|
{% if post.isRT %}
|
|
<span class="category"><i class="retweet icon"></i> {{post.username}} retwitted</span>
|
|
{%endif%}
|
|
</div>
|
|
<div class="description break-word">
|
|
<p>{{post.content}}</p>
|
|
</div>
|
|
<div class="extra content">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div> <!--End tweet--> |