Exemple #1
0
func PageCanonical(p *post.Post) string {
	return "/" + p.Slug()
}
Exemple #2
0
func PostCanonical(p *post.Post) string {
	return fmt.Sprintf("/%s/%s", p.PublishedOn.Format("2006/01/02"), p.Slug())
}