1
0
mirror of https://github.com/axzilla/templui.git synced 2025-02-21 00:12:48 +00:00

hotfix: url typo

This commit is contained in:
“axzilla” 2024-10-10 09:22:04 +02:00
parent ebd1b4e0f5
commit 27e3383e77

View File

@ -13,7 +13,7 @@ func CSS(branch string) templ.Component {
branch = "main"
}
cssURL := fmt.Sprintf("https://cdn.jsdelivr.net/gh/axzilla/goilerplate@%s/pgk/styles/goilerplate.css", branch)
cssURL := fmt.Sprintf("https://cdn.jsdelivr.net/gh/axzilla/goilerplate@%s/pkg/styles/goilerplate.css", branch)
return templ.Raw(fmt.Sprintf(`<link rel="stylesheet" href="%s">`, cssURL))
}