Files
mailblog/post.go
Laurent Ulrich 67700bcb42 petit ménage
2025-07-30 20:33:58 +02:00

18 lines
206 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
Posts []Post
}