about summary refs log tree commit diff stats
path: root/templates/tags.templ
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags.templ')
-rw-r--r--templates/tags.templ4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/tags.templ b/templates/tags.templ
index 7218ca1..c872a0d 100644
--- a/templates/tags.templ
+++ b/templates/tags.templ
@@ -1,12 +1,12 @@
 package templates
 
-import "website/internal/config"
+import "go.alanpearce.eu/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) {
+templ TagsPage(config *config.Config, title string, tags []string, path string) {
 	@Page(config, PageSettings{
 		Title: title,
 		Path:  path,