This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Yotter/app/templates/_video_item.html
2020-09-04 07:54:04 +02:00

26 lines
900 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="card">
<div class="image">
<img alt="Thumbnail" src="/img/{{video.videoThumb.replace('/', '~')}}">
</div>
<div class="content">
<a class="video-title break-word" href="{{url_for('watch', v=video.id, _method='GET')}}">{{video.videoTitle}}</a>
<div class="meta">
<a class="break-word" href="{{url_for('channel', id=video.channelId)}}">{{video.channelName}}</a>
</div>
<div class="description break-word">
{{video.description}}
</div>
</div>
<div class="extra content">
<span class="right floated">
<i class="eye icon"></i>
{{video.views}}
</span>
<span class="right floated">
<i class="clock icon"></i>
{{video.timeStamp}}
</span>
<span>
</span>
</div>
</div>