all repos — website @ 1d247493e05cdc659e46cd3d8a01d5da1e893867

My website

switch to templ for rendering HTML templates

Alan Pearce
commit

1d247493e05cdc659e46cd3d8a01d5da1e893867

parent

a238c7e0889cbe7dfaa1a700dea30686a4e2139a

1 file changed, 23 insertions(+), 0 deletions(-)

changed files
A internal/builder/tags.templ
@@ -0,0 +1,23 @@
+package builder + +import "website/internal/config" + +templ tagLink(tag string, attrs templ.Attributes) { + <a { attrs... } href={ templ.SafeURL("/tags/" + tag) }>#{ tag }</a> +} + +templ tagsPage(config config.Config, title string, tags []string, path string) { + @page(config, PageSettings{ + Title: title, + Path: path, + }) { + <h3 class="filter">Tags</h3> + <ul class="tags"> + for _, tag := range tags { + <li class="h-feed"> + @tagLink(tag, templ.Attributes{}) + </li> + } + </ul> + } +}