package baseview type FooterItem struct { Name string Href string } // Specify the links to show in the footer func getFooterItems() []FooterItem { return []FooterItem{ {Name: "About", Href: "/about"}, } } // Returns the template fragment for the Footer templ Footer() { } templ backToTopButton() {
} templ footerBranding() {
OSL Stats
} templ footerLinks(items []FooterItem) { } templ footerCopyright() {

by Haelnorr

}