External files, improve page generation

This commit is contained in:
Christoph Hagen
2024-12-10 15:21:28 +01:00
parent 8183bc4903
commit efc9234917
50 changed files with 1069 additions and 424 deletions

View File

@@ -17,7 +17,7 @@ final class LocalizedTag: ObservableObject {
/// The image id of the thumbnail
@Published
var thumbnail: FileResource?
var linkPreviewImage: FileResource?
/// The original url in the previous site layout
let originalUrl: String?
@@ -32,7 +32,7 @@ final class LocalizedTag: ObservableObject {
self.name = name
self.subtitle = subtitle
self.description = description
self.thumbnail = thumbnail
self.linkPreviewImage = thumbnail
self.originalUrl = originalUrl
}
}