From 301e4c7e78edabc4763cbf992624ad70ec4555b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 26 Oct 2016 20:50:12 +0200 Subject: [PATCH] Make Amber read from the Afero source file system --- tpl/template.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tpl/template.go b/tpl/template.go index a1568b91..2d8ed294 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -306,8 +306,14 @@ func (t *GoHTMLTemplate) AddTemplateFile(name, baseTemplatePath, path string) er case ".amber": templateName := strings.TrimSuffix(name, filepath.Ext(name)) + ".html" compiler := amber.New() - // Parse the input file - if err := compiler.ParseFile(path); err != nil { + b, err := afero.ReadFile(hugofs.Source(), path) + + if err != nil { + return err + } + + // Parse the input data + if err := compiler.ParseData(b, path); err != nil { return err } -- 2.30.2