26 lines
595 B
HTML
26 lines
595 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Penpot plugin example</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>Penpot plugin starter template</p>
|
||
|
|
||
|
<p>
|
||
|
Checkout the
|
||
|
<a target="_blank" href="https://help.penpot.app/plugins/"
|
||
|
>documentation</a
|
||
|
>
|
||
|
to get started.
|
||
|
</p>
|
||
|
|
||
|
<button type="button" data-appearance="primary" data-handler="create-text">
|
||
|
Create text
|
||
|
</button>
|
||
|
|
||
|
<script type="module" src="/src/main.ts"></script>
|
||
|
</body>
|
||
|
</html>
|