Add convenience box command

This commit is contained in:
Christoph Hagen
2022-09-18 17:21:57 +02:00
parent 396e03279f
commit 53500c31f6
5 changed files with 28 additions and 12 deletions

View File

@@ -1,13 +1,13 @@
import Foundation
struct PlaceholderTemplate: Template {
struct BoxTemplate: Template {
enum Key: String, CaseIterable {
case title = "TITLE"
case text = "TEXT"
}
static let templateName = "empty.html"
static let templateName = "box.html"
var raw: String
}