Files
mailblog/blog.go
2025-07-31 17:06:30 +02:00

19 lines
220 B
Go

package main
import "html/template"
type Post struct {
Id string
Title string
Author string
Date string
HTML template.HTML
Text string
}
type Blog struct {
Title string
Lang string
Posts []Post
}