blob: 006db50aa1794a7c8108c81650b2250d0c5be4e5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package home
import "embed"
//go:embed public/static/*.svg
//go:embed public/static/*.woff2
//go:embed templates/*.html
//go:embed templates/layouts/*.html
//go:embed posts/*.md
var Content embed.FS
|