1
0
Fork 0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-05-03 22:26:28 +02:00

Move templates to templates/_default

This commit is contained in:
Adnan Maolood 2021-05-10 15:03:02 -04:00
parent 7645acdcbd
commit 01815ec49d
4 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ func copyAll(srcDir, dstDir string) error {
}) })
} }
//go:embed templates config.toml //go:embed templates/_default config.toml
var builtin embed.FS var builtin embed.FS
func newSite(name string) { func newSite(name string) {
@ -152,7 +152,7 @@ func newSite(name string) {
templates := []string{"atom.xml", "index.gmi", "page.gmi"} templates := []string{"atom.xml", "index.gmi", "page.gmi"}
for _, template := range templates { for _, template := range templates {
b, _ := builtin.ReadFile(path.Join("templates", template)) b, _ := builtin.ReadFile(path.Join("templates/_default", template))
os.WriteFile(path.Join(name, "templates/_default", template), b, 0644) os.WriteFile(path.Join(name, "templates/_default", template), b, 0644)
} }
} }