2022-08-16 10:39:05 +02:00
|
|
|
import Foundation
|
|
|
|
|
|
|
|
struct OverviewSectionTemplate: Template {
|
|
|
|
|
|
|
|
enum Key: String, CaseIterable {
|
|
|
|
case url = "URL"
|
|
|
|
case title = "TITLE"
|
|
|
|
case items = "ITEMS"
|
|
|
|
case more = "MORE"
|
|
|
|
}
|
|
|
|
|
|
|
|
static let templateName = "overview-section.html"
|
|
|
|
|
|
|
|
let raw: String
|
2022-12-02 10:25:54 +01:00
|
|
|
|
|
|
|
let results: GenerationResultsHandler
|
2022-08-16 10:39:05 +02:00
|
|
|
}
|