mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01:00
30 lines
683 B
Plaintext
30 lines
683 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Penpot - Rasterizer</title>
|
|
<link rel="icon" href="images/favicon.png" />
|
|
|
|
<script>
|
|
window.penpotVersion = "%version%";
|
|
window.penpotBuildDate = "%buildDate%";
|
|
</script>
|
|
|
|
{{# manifest}}
|
|
<script>window.penpotWorkerURI="{{& worker_main}}"</script>
|
|
<script src="{{& config}}"></script>
|
|
<script src="{{& polyfills}}"></script>
|
|
{{/manifest}}
|
|
|
|
</head>
|
|
<body>
|
|
{{# manifest}}
|
|
<script type="module" src="{{& libs}}"></script>
|
|
<script type="module">
|
|
import { init } from "{{& rasterizer}}";
|
|
init();
|
|
</script>
|
|
{{/manifest}}
|
|
</body>
|
|
</html>
|