ezmlm-web/template/header.cs
lars 4c83771e11 updated UPGRADE file
new configuration setting: HTML_LINKS
changed layout of top div
fixed some IE rendering problems
improved visualization of subscriber's log
changed interface of 'form_header' macros
moved interface and language selection to the top of the page
reverse order of subscriber's log entries
set explicit default values for UNSAFE_RM, PRETTY_NAMES, ALIAS_USER, HTML_LINKS, HTML_LANGUAGE, FILE_UPLOAD and DEFAULT_OPTIONS
HTML_CSS_FILE replaced by HTML_CSS_URL - it defaults to '/ezmlm-web.css'
added manpages for 'webusers' and 'ezmlmwebrc' file formats
added check for required settings
ignore 'taintness' of 'send' input data due to non-ascii characters in buttons' values
2007-04-10 22:19:43 +00:00

39 lines
1.3 KiB
C#

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?cs var:Config.PageTitle ?></title>
<meta http-equiv="pragma" content="no-cache" /> <!-- for browsers -->
<meta http-equiv="cache-control" content="no-cache" /> <!-- for proxys -->
<meta http-equiv="content-language" content="<?cs var:html_escape(Language) ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Author" content="devel[at]sumpfralle.de" />
<meta http-equiv="expire" content="-1d" />
<link rel="stylesheet" type="text/css" href="<?cs var:Stylesheet ?>" />
</head>
<body>
<table id="top"><tr>
<td id="title">
<h1>ezmlm-web</h1>
<?cs if:Config.PageTitle
?><p><?cs var:Config.PageTitle ?></p><?cs /if ?>
</td>
<td id="perm_nav">
<?cs if:subcount(Config.PageLinks) > 0 ?><p><?cs
loop: x = #0, subcount(Config.PageLinks)-1, #1
?><?cs if:x > #0 ?> | <?cs /if
?><a href="<?cs var:html_escape(Config.PageLinks[x].url)
?>"><?cs var:html_escape(Config.PageLinks[x].name)
?></a>
<?cs /loop ?></p><?cs /if ?>
<?cs if:UI.Top.Language || UI.Top.Interface ?>
<?cs include: TemplateDir + '/interface_select.cs' ?>
<?cs /if ?>
</td>
</tr></table>