package template import ( "strings" "git.thomasvoss.com/euro-cash.eu/lib" ) templ Language() { {{ p := ctx.Value("printer").(lib.Printer) }}
@navbar()

{ p.T("Select Your Language") }

{ p.T("Select your preferred language to use on the site.") }

If you are an American user, it’s suggested that you select American English instead of British English. This will ensure that dates will be formatted with the month before the day.


{ p.T("Eurozone Languages") }

@languageGrid(true)

{ p.T("Other Languages") }

@languageGrid(false)
} templ languageGrid(eurozone bool) {
for _, loc := range lib.Locales { if loc.Eurozone == eurozone { } }
}