all repos — homestead @ 8688a232f5958adbdfd36cdbaec68ecab56aaea1

Code for my website

switch to templ for rendering HTML templates

Alan Pearce
commit

8688a232f5958adbdfd36cdbaec68ecab56aaea1

parent

b0b6eacca2cfd0d39f77687a7787543db9833cd1

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

changed files
A internal/builder/list.templ
@@ -0,0 +1,48 @@
+package builder + +import "website/internal/config" + +templ tagPage(config config.Config, tag string, posts []Post, path string) { + @page(config, PageSettings{ + Title: tag, + Path: path, + TitleAttrs: templ.Attributes{ + "class": "p-author h-card", + "rel": "author", + }, + }) { + <div class="filter"> + <h3 class="filter">#{ tag }</h3> + <small> + <a href="../">Remove filter</a> + </small> + </div> + @list(posts) + } +} + +templ listPage(config config.Config, posts []Post, path string) { + @page(config, PageSettings{ + Title: config.Title, + TitleAttrs: templ.Attributes{ + "class": "p-author h-card", + "rel": "author", + }, + Path: path, + }) { + @list(posts) + } +} + +templ list(posts []Post) { + <ul class="h-feed"> + for _, post := range posts { + <li class="h-entry"> + <span> + @postDate(post.Date) + </span> + <a class="p-name u-url" href={ templ.SafeURL(post.URL) }>{ post.Title }</a> + </li> + } + </ul> +}