19 lines
321 B
Go
19 lines
321 B
Go
package main
|
|
|
|
import (
|
|
"html/template"
|
|
)
|
|
|
|
type CipherTemplateS struct {
|
|
Order uint
|
|
Assignment template.HTML
|
|
HelpText string
|
|
FinalClue string
|
|
Coordinates string
|
|
Solution string
|
|
Help int
|
|
Wrong bool
|
|
}
|
|
|
|
var CipherTemplate = template.Must(template.ParseFiles("templates/assignment.html"))
|