mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-06-26 10:11:30 +00:00
404.html no longer contains anything specific to the 404 error and will henceforth serve (with some enhancements) as a general purpose error page template.
16 lines
300 B
HTML
16 lines
300 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta content="text/html;charset=UTF-8" http-equiv="content-type" />
|
|
<title>{{PAGE_TITLE}}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{PAGE_HEADING}}</h1>
|
|
{{#details}}
|
|
<p>
|
|
{{{p}}}
|
|
</p>
|
|
{{/details}}
|
|
</body>
|
|
</html>
|