mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-12-29 06:43:45 +00:00
page: Fallback to base template for page/index templates
Implements: https://todo.sr.ht/~adnano/kiln/22
This commit is contained in:
parent
fb6470aa5f
commit
d6f8c03ec3
8
page.go
8
page.go
|
@ -169,6 +169,10 @@ func (p *Page) process(cfg *Site, task *Task) error {
|
|||
// Create index
|
||||
if p.index {
|
||||
tmpl, ok := cfg.templates.FindTemplate(p.Path, "index"+task.TemplateExt)
|
||||
if !ok {
|
||||
// Try the base template
|
||||
tmpl, ok = cfg.templates.FindTemplate(p.Path, "base"+task.TemplateExt)
|
||||
}
|
||||
if ok {
|
||||
var b strings.Builder
|
||||
if err := tmpl.Execute(&b, p); err != nil {
|
||||
|
@ -182,6 +186,10 @@ func (p *Page) process(cfg *Site, task *Task) error {
|
|||
for i := range p.Pages {
|
||||
var b strings.Builder
|
||||
tmpl, ok := cfg.templates.FindTemplate(p.Path, "page"+task.TemplateExt)
|
||||
if !ok {
|
||||
// Try the base template
|
||||
tmpl, ok = cfg.templates.FindTemplate(p.Path, "base"+task.TemplateExt)
|
||||
}
|
||||
if ok {
|
||||
if err := tmpl.Execute(&b, p.Pages[i]); err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue