#include "website.h" void serve_404(Filesystem& fs, Response& response) { response.status = "404 Not Found"; response.html.add("" HTML_METAS "404 - Page Not Found"); add_banner(fs, &response.html, NAV_IDX_NULL); response.html.add("

404

" "

The thing you were trying to load was not found!
Could be a typo, a bug or something I decided to delete. Oops.

" ""); }