mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-06 07:47:53 +10:00
18 lines
637 B
HTML
18 lines
637 B
HTML
<!-- YT-DLP output list -->
|
|
{% if media_files %}
|
|
<div class="loose-items" style="pointer-events: auto;">
|
|
{% for file in media_files %}
|
|
<a href="{{ file.url|default:file.path|urlencode }}" target="preview"
|
|
title="{{ file.name }}">
|
|
📄 {{ file.name }}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="thumbnail-compact" data-plugin="ytdlp" data-compact="1">
|
|
<span class="thumbnail-compact-icon">🎬</span>
|
|
<span class="thumbnail-compact-label">YT-DLP</span>
|
|
<span class="thumbnail-compact-meta">media</span>
|
|
</div>
|
|
{% endif %}
|