diff --git a/archivebox/templates/core/snapshot.html b/archivebox/templates/core/snapshot.html index 00d5a94e..f35f38b1 100644 --- a/archivebox/templates/core/snapshot.html +++ b/archivebox/templates/core/snapshot.html @@ -14,64 +14,74 @@
- -    - {{title|safe}} -    - - - {{url}} - - +
+   {{title|safe}} +
+
+ + + {{url}} + + +
Added
- {{bookmarked_date}} +
{{bookmarked_date}}
First Archived
- {{oldest_archive_date}} +
{{oldest_archive_date}}
Last Checked
- {{updated_date}} +
{{updated_date}}
Status
-
{{status}}
+
+ {{status}} +
Saved
- ✅  {{num_outputs}} +
{{num_outputs}}
Errors
- ❌  {{num_failures}} +
{{num_failures}}
Size
- {{size}} +
{{size}}
@@ -146,12 +156,12 @@
@@ -164,7 +174,7 @@
diff --git a/docker-compose.yml b/docker-compose.yml index e5d87334..cc8e862c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,6 +9,7 @@ services: volumes: - ./data:/data - ./archivebox:/app/archivebox + - ./public:/app/public environment: - ALLOWED_HOSTS=* - MEDIA_MAX_SIZE=750m diff --git a/public/static/snapshot.css b/public/static/snapshot.css index e61423fa..eb4e75f5 100644 --- a/public/static/snapshot.css +++ b/public/static/snapshot.css @@ -152,3 +152,9 @@ header small code { background-color: #101010; border-radius: .25rem; } +.snapshot-timestamp { + background-color: #1a1a1a; + color: rgba(255,255,255,0.6); + font-size: 12px; + font-weight: 200; +}