2022-09-25 17:19:07 +02:00
|
|
|
import Foundation
|
|
|
|
|
|
|
|
struct PageLinkTemplate: Template {
|
|
|
|
|
|
|
|
enum Key: String, CaseIterable {
|
|
|
|
case url = "URL"
|
|
|
|
case image = "IMAGE"
|
|
|
|
case title = "TITLE"
|
|
|
|
case path = "PATH"
|
|
|
|
case description = "DESCRIPTION"
|
|
|
|
case className = "CLASS"
|
|
|
|
}
|
|
|
|
|
|
|
|
static let templateName = "page-link.html"
|
|
|
|
|
|
|
|
let raw: String
|
|
|
|
|
2022-12-02 10:25:54 +01:00
|
|
|
let results: GenerationResultsHandler
|
|
|
|
|
2022-09-25 17:19:07 +02:00
|
|
|
func makePath(components: [String]) -> String {
|
|
|
|
components.joined(separator: " » ") //  » ")
|
|
|
|
}
|
|
|
|
}
|