move templ templates into separate package
Alan Pearce alan@alanpearce.eu
Mon, 24 Jun 2024 21:48:36 +0200
10 files changed, 59 insertions(+), 41 deletions(-)
M default.nix → default.nix
@@ -72,6 +72,7 @@ ./go.mod ./go.sum ./cmd/build ./internal + ./templates ]; }; modules = ./nix/gomod2nix.toml; @@ -92,6 +93,7 @@ ./templates ]; }; } '' + cd $src ${builder}/bin/build -s $src -d $out cp $src/config.toml $out/ ''; @@ -106,6 +108,7 @@ ./go.mod ./go.sum ./cmd/server ./internal + ./templates ]; }; modules = ./nix/gomod2nix.toml;
D internal/builder/404.templ
@@ -1,13 +0,0 @@-package builder - -import "website/internal/config" - -templ notFound(config config.Config, path string) { - @page(config, PageSettings{ - Title: "Not Found", - Path: path, - }) { - <h1>404</h1> - <h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2> - } -}
M internal/builder/builder.go → internal/builder/builder.go
@@ -14,6 +14,7 @@ "website/internal/config" "website/internal/content" "website/internal/log" "website/internal/sitemap" + "website/templates" "github.com/a-h/templ" mapset "github.com/deckarep/golang-set/v2" @@ -127,7 +128,7 @@ return nil, errors.WithMessage(err, "could not create directory for post") } log.Debug("rendering post", "post", post.Basename) sitemap.AddPath(post.URL, post.Date) - if err := renderToFile(postPage(config, post), post.Output); err != nil { + if err := renderToFile(templates.PostPage(config, post), post.Output); err != nil { return nil, err } } @@ -136,7 +137,7 @@ if err := mkdirp(publicDir, "tags"); err != nil { return nil, errors.WithMessage(err, "could not create directory for tags") } log.Debug("rendering tags list") - if err := renderToFile(tagsPage(config, "tags", mapset.Sorted(tags), "/tags"), publicDir, "tags", "index.html"); err != nil { + if err := renderToFile(templates.TagsPage(config, "tags", mapset.Sorted(tags), "/tags"), publicDir, "tags", "index.html"); err != nil { return nil, err } sitemap.AddPath("/tags/", lastMod) @@ -153,7 +154,7 @@ return nil, errors.WithMessage(err, "could not create directory") } log.Debug("rendering tags page", "tag", tag) url := "/tags/" + tag - if err := renderToFile(tagPage(config, tag, matchingPosts, url), publicDir, "tags", tag, "index.html"); err != nil { + if err := renderToFile(templates.TagPage(config, tag, matchingPosts, url), publicDir, "tags", tag, "index.html"); err != nil { return nil, err } sitemap.AddPath(url, matchingPosts[0].Date) @@ -174,7 +175,7 @@ } } log.Debug("rendering list page") - if err := renderToFile(listPage(config, posts, "/post"), publicDir, "post", "index.html"); err != nil { + if err := renderToFile(templates.ListPage(config, posts, "/post"), publicDir, "post", "index.html"); err != nil { return nil, err } sitemap.AddPath("/post/", lastMod) @@ -215,7 +216,7 @@ content, err := content.RenderMarkdown(text) if err != nil { return nil, err } - if err := renderToFile(homepage(config, posts, content), publicDir, "index.html"); err != nil { + if err := renderToFile(templates.Homepage(config, posts, content), publicDir, "index.html"); err != nil { return nil, err } // it would be nice to set LastMod here, but using the latest post @@ -226,7 +227,7 @@ h, _ = getHTMLStyleHash(publicDir, "index.html") r.Hashes = append(r.Hashes, h) log.Debug("rendering 404 page") - if err := renderToFile(notFound(config, "/404.html"), privateDir, "404.html"); err != nil { + if err := renderToFile(templates.NotFound(config, "/404.html"), privateDir, "404.html"); err != nil { return nil, err }
M internal/builder/homepage.templ → templates/homepage.templ
@@ -1,12 +1,12 @@-package builder +package templates import ( "website/internal/config" "website/internal/content" ) -templ homepage(config config.Config, posts []content.Post, content string) { - @page(config, PageSettings{ +templ Homepage(config config.Config, posts []content.Post, content string) { + @Page(config, PageSettings{ Title: config.Title, TitleAttrs: templ.Attributes{ "class": "p-name u-url",
M internal/builder/list.templ → templates/list.templ
@@ -1,12 +1,12 @@-package builder +package templates import ( "website/internal/config" "website/internal/content" ) -templ tagPage(config config.Config, tag string, posts []content.Post, path string) { - @page(config, PageSettings{ +templ TagPage(config config.Config, tag string, posts []content.Post, path string) { + @Page(config, PageSettings{ Title: tag, Path: path, TitleAttrs: templ.Attributes{ @@ -24,8 +24,8 @@ @list(posts) } } -templ listPage(config config.Config, posts []content.Post, path string) { - @page(config, PageSettings{ +templ ListPage(config config.Config, posts []content.Post, path string) { + @Page(config, PageSettings{ Title: config.Title, TitleAttrs: templ.Attributes{ "class": "p-author h-card",
M internal/builder/page.templ → templates/page.templ
@@ -1,9 +1,23 @@-package builder +package templates import ( + "os" "net/url" + "website/internal/config" ) + +var ( + css string +) + +func init() { + bytes, err := os.ReadFile("templates/style.css") + if err != nil { + panic(err) + } + css = string(bytes) +} type PageSettings struct { Title string @@ -29,7 +43,7 @@ } >{ item.Name }</a> } -templ page(site config.Config, page PageSettings) { +templ Page(site config.Config, page PageSettings) { <!DOCTYPE html> <html lang={ site.DefaultLanguage }> <head>
M internal/builder/post.templ → templates/post.templ
@@ -1,4 +1,4 @@-package builder +package templates import ( "time" @@ -19,8 +19,8 @@ { d.Format("2006-01-02") } </time> } -templ postPage(config config.Config, post content.Post) { - @page(config, PageSettings{ +templ PostPage(config config.Config, post content.Post) { + @Page(config, PageSettings{ Title: post.Title, TitleAttrs: templ.Attributes{ "class": "p-author h-card",
M internal/builder/template.go → internal/builder/template.go
@@ -21,9 +21,9 @@ "golang.org/x/net/html" ) var ( - css string - templates = make(map[string]*os.File) - nsMap = map[string]string{ + css string + templateFiles = make(map[string]*os.File) + nsMap = map[string]string{ "xsl": "http://www.w3.org/1999/XSL/Transform", "atom": "http://www.w3.org/2005/Atom", "xhtml": "http://www.w3.org/1999/xhtml", @@ -39,14 +39,14 @@ css = string(bytes) } func loadTemplate(path string) (file *os.File, err error) { - if templates[path] == nil { + if templateFiles[path] == nil { file, err = os.OpenFile(path, os.O_RDONLY, 0) if err != nil { return nil, errors.Wrapf(err, "could not load template at path %s", path) } - templates[path] = file + templateFiles[path] = file } - file = templates[path] + file = templateFiles[path] return }
A templates/404.templ
@@ -0,0 +1,13 @@+package templates + +import "website/internal/config" + +templ NotFound(config config.Config, path string) { + @Page(config, PageSettings{ + Title: "Not Found", + Path: path, + }) { + <h1>404</h1> + <h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2> + } +}