22 lines
826 B
HTML
22 lines
826 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>{{title}}</title>
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16.png">
|
|
<!-- For Google and Android -->
|
|
<link rel="icon" type="image/png" sizes="48x48" href="static/favicon-48.png">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="static/favicon-192.png">
|
|
<!-- For iPad -->
|
|
<link rel="apple-touch-icon" type="image/png" sizes="167x167" href="static/favicon-167.png">
|
|
<!-- For iPhone -->
|
|
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="static/favicon-180.png">
|
|
</head>
|
|
<body>
|
|
It still works!
|
|
</body>
|
|
</html>
|