this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

:bug: Fix /to/ links

+2 -1
+2 -1
main.go
··· 173 173 } 174 174 175 175 for _, site := range sites { 176 - redirect(filepath.Join("to", site.Name), site.URL) 176 + fmt.Printf("Redirecting /to/%s to %s\n", site.Name, site.URL) 177 + server.Handle(fmt.Sprintf("/to/%s", site.Name), http.RedirectHandler(site.URL, http.StatusSeeOther)) 177 178 } 178 179 179 180 handlePage("about", pages.AboutPage(translations.language))