cipher templates

This commit is contained in:
2025-09-14 19:05:41 +02:00
parent c0687e6bc2
commit 488084f1bb
5 changed files with 71 additions and 21 deletions

16
templates.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
"html/template"
)
type CipherTemplateS struct {
Order uint
Assignment template.HTML
HelpText string
FinalClue string
Coordinates string
Solution string
}
var CipherTemplate = template.Must(template.ParseFiles("templates/assignment.html"))