index.html 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <!-- Licensed to the .NET Foundation under one or more agreements. -->
  3. <!-- The .NET Foundation licenses this file to you under the MIT license. -->
  4. <html>
  5. <head>
  6. <title>AvaloniaUI - ControlCatalog</title>
  7. <meta charset="UTF-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <link rel="modulepreload" href="./main.js" />
  10. <link rel="modulepreload" href="./dotnet.js" />
  11. <link rel="modulepreload" href="./avalonia.js" />
  12. <link rel="stylesheet" href="./app.css" />
  13. </head>
  14. <body style="margin: 0px">
  15. <div id="out">
  16. <div id="avalonia-splash">
  17. <div class="center">
  18. <h2>Powered by</h2>
  19. <a class="navbar-brand" href="https://www.avaloniaui.net/" target="_blank">
  20. <img src="Logo.svg" alt="Avalonia Logo" width="30" height="24" />
  21. Avalonia
  22. </a>
  23. </div>
  24. </div>
  25. </div>
  26. <script type='module' src="./main.js"></script>
  27. </body>
  28. </html>