-
Notifications
You must be signed in to change notification settings - Fork 0
/
copy.php
38 lines (37 loc) · 1.7 KB
/
copy.php
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
<?php
header('content-type: text/html; charset=utf-8');
include_once('code/replacements.inc.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Der Vertretungsplan</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Der Vertretungsplan des Albert-Schweitzer-Gynmnasiums Erlangen" />
<meta name="keywords" content="Vertretungsplan ASG Albert Schweitzer Gymnasium Erlangen Schule Ausfall Lehrer Schüler Information" />
<meta name="robots" content="index, follow" />
<link rel="shortcut icon" href="---" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="style/fonts.css" />
<link rel="stylesheet" type="text/css" href="style/layout.css" />
<link rel="stylesheet" type="text/css" href="style/menu.css" />
<link rel="stylesheet" type="text/css" href="style/design.css" />
<script type="text/javascript" src="script/targetblank.js.php"></script>
</head>
<body>
<?php
include("style/header.inc.php");
?>
<div class="copy colmask">
<h1>Ältere Vertretungspläne:</h1>
<p>Bitte beachten Sie, dass nur Vertretungspläne angezeigt werden, die über diese Seite bereits abgerufen wurden.</p>
<p>Die Vertretungspläne sind sortiert nach Datum und letzter Änderung:</p>
<?php
include("code/log.inc.php");
echo log_getHTML();
?>
</div>
<?php
include("style/footer.inc.php");
?>
</body>
</html>