CHGenerator/Sources/Generator/Templates/Elements/PageHeadTemplate.swift
2022-09-09 11:18:32 +02:00

17 lines
337 B
Swift

import Foundation
struct PageHeadTemplate: Template {
enum Key: String, CaseIterable {
case author = "AUTHOR"
case title = "TITLE"
case description = "DESCRIPTION"
case image = "IMAGE"
case customPageContent = "CUSTOM"
}
let raw: String
static let templateName = "head.html"
}