card.html 490 B

123456789101112
  1. {% load config_tags %}
  2. {% get_config "ARCHIVEDOTORG_ENABLED" as enabled %}
  3. {% if enabled %}
  4. <!-- Archive.org thumbnail - iframe preview of archived page -->
  5. <div class="extractor-thumbnail archivedotorg-thumbnail" style="width: 100%; height: 100px; overflow: hidden;">
  6. <iframe src="{{ output_path }}"
  7. style="width: 100%; height: 100px; border: none; pointer-events: none;"
  8. loading="lazy"
  9. sandbox="allow-same-origin">
  10. </iframe>
  11. </div>
  12. {% endif %}