aboutsummaryrefslogtreecommitdiff
path: root/http_error_page.go
blob: 2dd1f4f6e3255326b8e5c82d360de8e2236556e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileContributor: Runxi Yu <https://runxiyu.org>

package main

import (
	"net/http"
)

func errorPage404(w http.ResponseWriter, params map[string]any) {
	_ = templates.ExecuteTemplate(w, "404", params)
}