34 lines
711 B
HTML
34 lines
711 B
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="de">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<title>Mitarbeiterliste</title>
|
|||
|
|
<style>
|
|||
|
|
body {
|
|||
|
|
font-family: Verdana, Arial, sans-serif;
|
|||
|
|
font-size: 87.5%;
|
|||
|
|
background-color: AliceBlue;
|
|||
|
|
}
|
|||
|
|
h1 {
|
|||
|
|
color: Indigo;
|
|||
|
|
}
|
|||
|
|
#vorname {
|
|||
|
|
color: green;
|
|||
|
|
}
|
|||
|
|
footer {
|
|||
|
|
margin-top: 40px;
|
|||
|
|
font-size: 0.9em;
|
|||
|
|
color: gray;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<h1>Mitarbeiterliste</h1>
|
|||
|
|
<p>{{ mycontent | safe }}</p>
|
|||
|
|
|
|||
|
|
<footer>
|
|||
|
|
Autor: Butenhoff – <a href="mailto: tobu6289@thwildau.de">tobu6289@th-wildau.de</a>
|
|||
|
|
</footer>
|
|||
|
|
</body>
|
|||
|
|
</html>
|