0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 16:30:37 -05:00
penpot/frontend/resources/templates/index.mustache

36 lines
1 KiB
Text
Raw Normal View History

2015-06-18 12:35:50 -05:00
<!DOCTYPE html>
<html>
<head>
2016-02-21 03:22:50 -05:00
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
2020-10-28 04:28:01 -05:00
<title>PENPOT - The Open-Source prototyping tool</title>
<link id="theme" href="/css/main-{{& th}}.css?ts={{& ts}}"
rel="stylesheet" type="text/css" />
2020-12-04 10:01:33 -05:00
2016-02-21 03:22:50 -05:00
<link rel="icon" href="/images/favicon.png" />
2020-12-04 10:01:33 -05:00
<script>
2020-12-04 10:01:33 -05:00
window.appTranslations = JSON.parse({{& translations}});
window.appThemes = {{& themes}};
window.appVersion = "%version%";
</script>
{{# manifest}}
<script>window.appWorkerURI="{{& worker}}"</script>
<script src="{{& config}}"></script>
2020-11-20 18:14:59 -05:00
<script src="{{& polyfills}}"></script>
2020-12-04 10:01:33 -05:00
{{/manifest}}
</head>
<body>
{{>../public/images/sprites/symbol/icons.svg}}
{{>../public/images/sprites/symbol/cursors.svg}}
2020-12-04 10:01:33 -05:00
<section id="app" tabindex="1"></section>
<section id="modal"></section>
{{# manifest}}
<script src="{{& shared}}"></script>
<script src="{{& main}}"></script>
{{/manifest}}
2015-06-18 12:35:50 -05:00
</body>
</html>