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

55 lines
2.2 KiB
Text
Raw Normal View History

2015-06-18 12:35:50 -05:00
<!DOCTYPE html>
2024-04-18 04:39:48 -05:00
<html lang="en">
2015-06-18 12:35:50 -05:00
<head>
2016-02-21 03:22:50 -05:00
<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}}
2020-12-04 10:01:33 -05:00
<link rel="icon" href="images/favicon.png" />
{{# manifest}}
<script>window.penpotWorkerURI="{{& worker_main}}"</script>
<script defer src="{{& config}}"></script>
<script defer src="{{& polyfills}}"></script>
{{/manifest}}
<script type="module" src="{{& pluginRuntimeUri}}"></script>
2020-12-04 10:01:33 -05:00
<script>
window.penpotTranslations = JSON.parse({{& translations}});
window.penpotVersion = "%version%";
window.penpotBuildDate = "%buildDate%";
</script>
2024-04-04 04:41:22 -05:00
<!--cookie-consent-->
2020-12-04 10:01:33 -05:00
</head>
<body>
{{> ../public/images/sprites/symbol/icons.svg }}
{{> ../public/images/sprites/symbol/cursors.svg }}
{{> ../public/images/sprites/assets.svg }}
<div id="app"></div>
2020-12-04 10:01:33 -05:00
<section id="modal"></section>
2024-02-02 03:17:10 -05:00
{{# manifest}}
<script defer src="js/libs.js?ts={{& ts}}"></script>
2024-02-02 03:17:10 -05:00
<script defer src="{{& shared}}"></script>
<script defer src="{{& main}}"></script>
{{/manifest}}
2015-06-18 12:35:50 -05:00
</body>
</html>