mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 01:15:57 +10:00
10 lines
434 B
HTML
10 lines
434 B
HTML
<!-- Favicon thumbnail - small favicon preview -->
|
|
<div class="extractor-thumbnail favicon-thumbnail" style="width: 100%; height: 100px; display: flex; align-items: center; justify-content: center; background: #fff;">
|
|
{% if output_path %}
|
|
<img src="{{ output_path }}"
|
|
alt="Favicon"
|
|
style="max-width: 80%; max-height: 80%; object-fit: contain;"
|
|
loading="lazy">
|
|
{% endif %}
|
|
</div>
|