mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-06-26 10:11:30 +00:00
This is a shortcut change since it doesn't make sense to send the error page template with every error response (the viewer can fetch it from the server once but that's slightly more work).
22 lines
599 B
HTML
22 lines
599 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>
|
|
{{#CSS_URL}}
|
|
<link type="text/css" href="{{{CSS_URL}}}" rel="Stylesheet" />
|
|
{{/CSS_URL}}{{#KIWIX_RESPONSE_DATA}} <script>
|
|
const KIWIX_RESPONSE_TEMPLATE = "{{{KIWIX_RESPONSE_TEMPLATE}}}";
|
|
const KIWIX_RESPONSE_DATA = {{{KIWIX_RESPONSE_DATA}}};
|
|
</script>{{/KIWIX_RESPONSE_DATA}}
|
|
</head>
|
|
<body>
|
|
<h1>{{PAGE_HEADING}}</h1>
|
|
{{#details}}
|
|
<p>
|
|
{{{p}}}
|
|
</p>
|
|
{{/details}}
|
|
</body>
|
|
</html>
|