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 }