mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-05 15:27:53 +10:00
remove huey
This commit is contained in:
6
archivebox/plugins/singlefile/templates/embed.html
Normal file
6
archivebox/plugins/singlefile/templates/embed.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<!-- Singlefile embed - full iframe of archived HTML -->
|
||||
<iframe src="{{ output_path }}"
|
||||
class="extractor-embed singlefile-embed"
|
||||
style="width: 100%; height: 100%; min-height: 500px; border: none;"
|
||||
sandbox="allow-same-origin allow-scripts allow-forms">
|
||||
</iframe>
|
||||
6
archivebox/plugins/singlefile/templates/fullscreen.html
Normal file
6
archivebox/plugins/singlefile/templates/fullscreen.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<!-- Singlefile fullscreen - full page iframe -->
|
||||
<iframe src="{{ output_path }}"
|
||||
class="extractor-fullscreen singlefile-fullscreen"
|
||||
style="width: 100%; height: 100vh; border: none;"
|
||||
sandbox="allow-same-origin allow-scripts allow-forms allow-top-navigation-by-user-activation">
|
||||
</iframe>
|
||||
1
archivebox/plugins/singlefile/templates/icon.html
Normal file
1
archivebox/plugins/singlefile/templates/icon.html
Normal file
@@ -0,0 +1 @@
|
||||
📦
|
||||
8
archivebox/plugins/singlefile/templates/thumbnail.html
Normal file
8
archivebox/plugins/singlefile/templates/thumbnail.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<!-- Singlefile thumbnail - scaled down iframe preview of archived HTML -->
|
||||
<div class="extractor-thumbnail singlefile-thumbnail" style="width: 100%; height: 100px; overflow: hidden; background: #fff;">
|
||||
<iframe src="{{ output_path }}"
|
||||
style="width: 400%; height: 400px; transform: scale(0.25); transform-origin: top left; pointer-events: none; border: none;"
|
||||
loading="lazy"
|
||||
sandbox="allow-same-origin">
|
||||
</iframe>
|
||||
</div>
|
||||
Reference in New Issue
Block a user