index.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title>OliveTin</title>
  6. <link rel = "stylesheet" type = "text/css" href = "style.css" />
  7. <link rel = "shortcut icon" type = "image/png" href = "OliveTinLogo.png" />
  8. </head>
  9. <body>
  10. <main title = "main content">
  11. <fieldset id = "rootGroup">
  12. <legend>OliveTin Actions</legend>
  13. </fieldset>
  14. </main>
  15. <footer title = "footer">
  16. <p><img title = "application icon" src = "OliveTinLogo.png" height = "1em" class = "logo" /> OliveTin</p>
  17. <p>
  18. <a href = "https://docs.olivetin.app" target = "_new">Documentation</a> |
  19. <a href = "https://github.com/OliveTin/OliveTin/issues/new/choose" target = "_new">Raise an issue on GitHub</a>
  20. </p>
  21. </footer>
  22. <template id = "tplActionButton">
  23. <span role = "img" title = "button icon" class = "icon">&#x1f4a9;</span>
  24. <p role = "title" class = "title">Untitled Button</p>
  25. </template>
  26. <script type = "module" src = "main.js"></script>
  27. </body>
  28. </html>