mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-08 16:00:27 -05:00
72 lines
2.6 KiB
Text
72 lines
2.6 KiB
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
<title>Penpot - Design Freedom for Teams</title>
|
|
|
|
<meta name="description" content="The open-source solution for design and prototyping.">
|
|
<meta property="og:locale" content="en_US">
|
|
<meta property="og:title" content="Penpot | Design Freedom for Teams">
|
|
<meta property="og:description" content="The open-source solution for design and prototyping">
|
|
<meta property="og:image" content="https://penpot.app/images/workspace-ui.jpg">
|
|
<meta name="twitter:title" content="Penpot | Design Freedom for Teams">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:description" content="The open-source solution for design and prototyping">
|
|
<meta name="twitter:image" content="https://penpot.app/images/workspace-ui.jpg">
|
|
<meta name="twitter:site" content="@penpotapp">
|
|
<meta name="twitter:creator" content="@penpotapp">
|
|
<meta name="theme-color" content="#FFFFFF" media="(prefers-color-scheme: light)">
|
|
<link id="theme" href="css/main.css?ts={{& ts}}" rel="stylesheet" type="text/css" />
|
|
{{#isDebug}}
|
|
<link href="css/debug.css?ts={{& ts}}" rel="stylesheet" type="text/css" />
|
|
{{/isDebug}}
|
|
|
|
<link rel="icon" href="images/favicon.png" />
|
|
<script type="importmap">
|
|
{"imports": {"plugins-runtime": "http://localhost:4200/index.mjs"}}
|
|
</script>
|
|
|
|
<script type="module" src="http://localhost:4200/index.mjs"></script>
|
|
|
|
<script>
|
|
window.penpotTranslations = JSON.parse({{& translations}});
|
|
window.penpotThemes = {{& themes}};
|
|
window.penpotVersion = "%version%";
|
|
window.penpotBuildDate = "%buildDate%";
|
|
</script>
|
|
|
|
{{# manifest}}
|
|
<script>window.penpotWorkerURI="{{& worker}}"</script>
|
|
<script defer src="{{& config}}"></script>
|
|
<script defer src="{{& polyfills}}"></script>
|
|
{{/manifest}}
|
|
|
|
</head>
|
|
<body>
|
|
{{>../public/images/sprites/symbol/icons.svg}}
|
|
{{>../public/images/sprites/symbol/cursors.svg}}
|
|
<div id="app"></div>
|
|
<section id="modal"></section>
|
|
{{# manifest}}
|
|
|
|
<script defer src="{{& shared}}"></script>
|
|
<script defer src="{{& main}}"></script>
|
|
|
|
<penpot-plugins />
|
|
{{/manifest}}
|
|
|
|
|
|
<script type="importmap">
|
|
{"imports": {"plugins-runtime": "http://localhost:4200/index.mjs"}}
|
|
</script>
|
|
|
|
<script type="module">
|
|
import * as runtime from "plugins-runtime";
|
|
|
|
// console.log(globalThis.app.plugins);
|
|
runtime.initialize(globalThis.app.plugins);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|