18 lines
862 B
HTML
18 lines
862 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Studentportalen [proof-of-concept progressive web app]</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
<link rel="icon" href="../images/icons/student-hat-32.png" type="image/png" sizes="32x32">
|
|
<link rel="icon" href="../images/icons/student-hat-64.png" type="image/png" sizes="64x64">
|
|
<link rel="icon" href="../images/icons/student-hat-128.png" type="image/png" sizes="128x128">
|
|
<link rel="icon" href="../images/icons/student-hat-256.png" type="image/png" sizes="256x256">
|
|
<link rel="icon" href="../images/icons/student-hat-512.png" type="image/png" sizes="512x512">
|
|
</head>
|
|
<body>
|
|
<h1>Offline</h1>
|
|
<p>Oh no, you are offline. Please check your internet connection.</p>
|
|
</body>
|
|
</html> |