forked from beeware/briefcase-web-static-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.56 KB
/
Copy pathindex.html
File metadata and controls
48 lines (37 loc) · 1.56 KB
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
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ cookiecutter.formal_name|xml_escape }}</title>
<link rel="icon" type="image/png" href="/static/logo-32.png"/>
<!-- Social Sharing Metadata -->
<meta property="og:title" content="{{ cookiecutter.formal_name|xml_attr }}">
<meta property="og:description" content="{{ cookiecutter.description|xml_attr }}">
<meta property="og:url" content="{{ cookiecutter.homepage }}">
<meta property="og:type" content="website">
<meta property="og:image" content="/static/social.png">
<!-- PyScript -->
<!--@@ PyScript:start @@-->
<!--@@ PyScript:end @@-->
<!-- Toolkit Head Insert (any valid <head> content)-->
<!--@@ head:start @@-->
<!--@@ head:end @@-->
<link rel="stylesheet" href="/static/css/briefcase.css">
</head>
<body id="app-placeholder">
<div id="briefcase-splash">
<img src="static/logo-32.png" alt="Splash screen logo">
<p>Loading...</p>
</div>
<script type="py" async="false" config="pyscript.toml">
import runpy
result = runpy.run_module(
"{{ cookiecutter.module_name }}", run_name="__main__", alter_sys=True
)
</script>
<!-- Toolkit Body Insert (any valid <script> tags)-->
<!--@@ end:start @@-->
<!--@@ end:end @@-->
</body>
</html>