mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 17:48:51 +02:00
31 lines
985 B
HTML
31 lines
985 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>HTWKalender</title>
|
|
<meta
|
|
name="description"
|
|
content="Calendar implementation for the HTWK Leipzig timetable. Evaluation and display of the individual dates in iCal format."
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="HTWK, calendar, iCal, dates, events, schedule"
|
|
/>
|
|
<link rel="icon" href="/favicon.ico" sizes="32x32" />
|
|
<link rel="icon" type="image/svg+xml" href="/htwk.svg" />
|
|
<link rel="mask-icon" href="/htwk-mask.svg" color="#00494c" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<meta name="theme-color" content="#1b2022" />
|
|
<link
|
|
id="theme-link"
|
|
rel="stylesheet"
|
|
href="/themes/lara-light-blue/theme.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|