uni-repo/ub2/templates/index.html

34 lines
711 B
HTML
Raw Normal View History

2025-03-29 12:32:35 +01:00
<!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>