Files
oddmuse/stuff/templates/index.html
Aleks-Daniel Jakimenko a70618c3be Moving a whole bunch of files
2015-08-06 02:43:57 +03:00

29 lines
712 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title><?$SiteName?>: Index of all pages</title>
<link type="text/css" rel="stylesheet" href="<?$StyleSheet?>" />
</head>
<body>
<div class="header">
<img class="logo" src="<?$LogoUrl?>" alt="[<?$HomePage?>]" />
<h1>Index of all pages</h1>
</div>
<div class="content index">
<?
$q->p(map {
my $id = $_;
my $title = $id;
$title =~ s/_/ /g;
GetPageOrEditLink($id, $title) . $q->br();
} AllPagesList());
?>
</div>
<div class="footer">
<hr />
<?&GetGotoBar?>
<?&GetFooterLinks($id)?>
</div>
</body>
</html>