| 12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>OliveTin</title>
- <link rel = "stylesheet" type = "text/css" href = "style.css" />
- <link rel = "shortcut icon" type = "image/png" href = "OliveTinLogo.png" />
- </head>
- <body>
- <main title = "main content">
- <fieldset id = "rootGroup">
- <legend>OliveTin Actions</legend>
- </fieldset>
- </main>
- <footer title = "footer">
- <p><img title = "application icon" src = "OliveTinLogo.png" height = "1em" class = "logo" /> OliveTin</p>
- <p>
- <a href = "https://docs.olivetin.app" target = "_new">Documentation</a> |
- <a href = "https://github.com/OliveTin/OliveTin/issues/new/choose" target = "_new">Raise an issue on GitHub</a>
- </p>
- </footer>
- <template id = "tplActionButton">
- <span role = "img" title = "button icon" class = "icon">💩</span>
- <p role = "title" class = "title">Untitled Button</p>
- </template>
- <script type = "module" src = "main.js"></script>
- </body>
- </html>
|