39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<base href="{{ cookiecutter.base_url }}">
|
|
<meta charset="UTF-8">
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
|
<meta name="description" content="{{ cookiecutter.project_description }}">
|
|
|
|
<!-- iOS meta tags & icons -->
|
|
<meta name="apple-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="{{ cookiecutter.product_name }}">
|
|
<link rel="apple-touch-icon" href="icons/Icon-192.png">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
|
|
<!-- Flet specific -->
|
|
<meta name="flet-route-url-strategy" content="{{ cookiecutter.route_url_strategy }}">
|
|
<meta name="flet-web-pyodide" content="true">
|
|
|
|
<title>{{ cookiecutter.product_name }}</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
<script>
|
|
var webRenderer = "{{ cookiecutter.web_renderer }}";
|
|
var useColorEmoji = "{{ cookiecutter.use_color_emoji }}" == "true";
|
|
var pythonModuleName = "{{ cookiecutter.python_module_name }}";
|
|
</script>
|
|
|
|
<script src="python.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="flutter_bootstrap.js" async></script>
|
|
</body>
|
|
|
|
</html> |