Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/router/faq_handler.go

24 lignes
541 o
Go
Brut Vue normale Historique

package router
import (
"net/http"
2017-05-17 07:58:40 +02:00
"github.com/NyaaPantsu/nyaa/util/languages"
"github.com/gorilla/mux"
)
func FaqHandler(w http.ResponseWriter, r *http.Request) {
languages.SetTranslationFromRequest(faqTemplate, r)
ftv := FaqTemplateVariables{
Navigation: NewNavigation(),
Search: NewSearchForm(),
User: GetUser(r),
URL: r.URL,
Route: mux.CurrentRoute(r),
}
err := faqTemplate.ExecuteTemplate(w, "index.html", ftv)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}