1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!DOCTYPE html>
<html>
<head>
<!--
Committed rather than generated. `just flutter-web` used to run
`flutter create --platforms=web` when this directory was missing, which
was fine while the page was Flutter's default one — but the OAuth client
needs a script of its own beside the bundle, and a generated runner is no
place to keep one.
`$FLUTTER_BASE_HREF` is the token `flutter build web` rewrites; leave it.
-->
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="freeq client">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="frq">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<link rel="icon" type="image/png" href="favicon.png"/>
<title>frq</title>
<link rel="manifest" href="manifest.json">
<!--
WebCrypto for the OAuth client, loaded before the bundle so it is there
the moment ClojureDart asks. Not `async`: `frq.dpop.web` calls into it
during sign-in, and a helper that might not have parsed yet is a race
nobody would enjoy debugging.
-->
<script src="frq_dpop.js"></script>
</head>
<body>
<script src="flutter_bootstrap.js" async></script>
</body>
</html>
|