mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 15:13:42 +01:00
21 lines
288 B
PHP
21 lines
288 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Mediathek</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h1>CDs</h1>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<th>Erscheinungsjahr</th>
|
||
|
</tr>
|
||
|
<!-- Hier sollen die CDs aufgelistet werden. -->
|
||
|
</table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|