mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-21 18:59:02 -05:00
29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
<% if !chapters.empty? %>
|
|
<div class="description-chapters-section">
|
|
<hr class="description-content-separator"/>
|
|
<h4>Chapters</h4>
|
|
<div class="description-chapters-content-container">
|
|
<% chapters.each do | chapter | %>
|
|
<%- start_in_seconds = chapter.start_ms.milliseconds.total_seconds.to_i %>
|
|
<a href="/watch?v=<%-= video.id %>&t=<%=start_in_seconds %>">
|
|
<div class="chapter">
|
|
<div class="thumbnail">
|
|
<%- if !env.get("preferences").as(Preferences).thin_mode -%>
|
|
<img loading="lazy" class="thumbnail" src="<%-=URI.parse(chapter.thumbnails[-1]["url"].to_s).request_target %>" alt="" />
|
|
<%- else -%>
|
|
<div class="thumbnail-placeholder"></div>
|
|
<%- end -%>
|
|
</div>
|
|
<%- if start_in_seconds > 0 -%>
|
|
<p><%-= recode_length_seconds(start_in_seconds) -%></p>
|
|
<%- else -%>
|
|
<p>0:00</p>
|
|
<%- end -%>
|
|
<p><%-=chapter.title-%></p>
|
|
</div>
|
|
</a>
|
|
<% end %>
|
|
</div>
|
|
<hr class="description-content-separator"/>
|
|
</div>
|
|
<% end %> |