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

26 lines
900 B
HTML
Raw Normal View History

2020-07-27 18:30:01 +05:30
<div class="card">
<div class="image">
2020-09-04 11:24:04 +05:30
<img alt="Thumbnail" src="/img/{{video.videoThumb.replace('/', '~')}}">
2020-07-27 18:30:01 +05:30
</div>
<div class="content">
2020-08-31 16:58:57 +05:30
<a class="video-title break-word" href="{{url_for('watch', v=video.id, _method='GET')}}">{{video.videoTitle}}</a>
2020-07-27 18:30:01 +05:30
<div class="meta">
2020-08-31 16:58:57 +05:30
<a class="break-word" href="{{url_for('channel', id=video.channelId)}}">{{video.channelName}}</a>
2020-07-27 18:30:01 +05:30
</div>
2020-08-30 02:05:29 +05:30
<div class="description break-word">
2020-07-27 18:30:01 +05:30
{{video.description}}
</div>
</div>
<div class="extra content">
<span class="right floated">
<i class="eye icon"></i>
{{video.views}}
</span>
2020-07-27 18:30:01 +05:30
<span class="right floated">
<i class="clock icon"></i>
{{video.timeStamp}}
2020-07-27 18:30:01 +05:30
</span>
<span>
</span>
</div>
</div>