1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
[% MACRO t(text) BLOCK;
gettext.get(text);
END; %]
<head>
<title>[% t("Debian Online Help (Error)") %]</title>
<link rev="made" href="mailto:dhelp%40packages.debian.org" />
<link rel="stylesheet" href="[% base_url %]/doc/dhelp/css/dhelp.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div id="top-bar">
<a href="[% base_url %]/doc/HTML/index.html"><span id="logo"><img
src="[% base_url %]/doc/dhelp/css/swirl.png" alt=""><img
src="[% base_url %]/doc/dhelp/css/debian.png" alt="Debian"></span>
<h1>[% t("Online Help") %]</h1></a>
<div id="navigation-bar">
[% IF online %]
<a href="/cgi-bin/info2www">[% t("info pages") %]</a> |
<a href="/cgi-bin/man/man2html">[% t("man pages") %]</a> |
[% END %]
<a href="/doc/">[% t("documentation folder") %]</a>
[% IF online %]
| <form id="search-form" action="/cgi-bin/dsearch">
<input type="text" name="search">
<input type="submit" value="[% t("Search") %]">
</form>
[% END %]
</div>
</div>
<h2>[% t("Error") %]</h2>
<p class="error">[% error %]</p>
</body>
</html>
|