---
template: default.html
---
{{define "body"}}
Welcome to this fine blog
{{range .Routes | fn "routes => Array.from(routes.reduce((tags, route) => {route.Meta?.tags?.forEach(tag => tags.add(tag)); return tags}, new Set()))"}}
-
{{.}}
{{end}}
This is an example of a typical website structure for a blog.
Here is the latest post
{{with index (.Routes | filterFilePath "**/posts/*.md" | sortDesc "date") 0}}
{{.Meta.title}}
{{end}}
{{end}}