mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-08-03 04:52:12 +00:00
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sp2</title>
|
|
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1">
|
|
<link rel="icon"
|
|
type="image/x-icon"
|
|
href="favicon.ico">
|
|
<link rel="manifest"
|
|
href="manifest.json">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
|
rel="stylesheet">
|
|
<meta name="theme-color"
|
|
content="#1976d2">
|
|
<!-- Enable all requests and inline styles for painless development.
|
|
TODO configure more restrictive Content-Security-Policy
|
|
@see http://content-security-policy.com/
|
|
@see http://www.html5rocks.com/en/tutorials/security/content-security-policy/ -->
|
|
<meta http-equiv="Content-Security-Policy"
|
|
content="default-src *;
|
|
font-src * data:;
|
|
img-src * data:;
|
|
style-src * 'unsafe-inline' ;
|
|
script-src * 'self' 'unsafe-inline' 'unsafe-eval'">
|
|
<base href="./">
|
|
</head>
|
|
<body class="mat-typography">
|
|
<app-root></app-root>
|
|
<noscript>Please enable JavaScript to continue using this application.</noscript>
|
|
</body>
|
|
</html>
|