index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  6. <title>Home - Countries</title>
  7. <link title="Countries" href="/opensearch.xml" rel="search" type="application/opensearchdescription+xml"/>
  8. <link type="image/png" sizes="16x16" href="/dist/images/icons/favicon-16x16.png" rel="icon"/>
  9. <link href="/dist/css/normalize.css" rel="stylesheet"/>
  10. <link href="/dist/css/home.min.css" rel="stylesheet"/>
  11. </head>
  12. <body>
  13. <noscript>
  14. <h1>Countries</h1>
  15. <p>JavaScript required</p>
  16. <p>It seems JavaScript is either blocked or disabled in your web browser. We totally get that. However, this page will not work without it.</p>
  17. <p>If you are concerned about the security and privacy (or lack thereof) of JavaScript web applications, you might want to review the source code of the <a href="https://hgit.conocimientoslibres.ga/testing/countries.git" target="_blank" rel="noopener noreferrer">countries-app</a> you are trying to access, or look for security audits.</p>
  18. <link href="/dist/css/noscript.css" rel="stylesheet"/>
  19. </noscript>
  20. <header class="header">
  21. <nav class="home">
  22. <a href="/" id="home-link" class="home-link">Countries</a>
  23. </nav>
  24. </header>
  25. <main class="main">
  26. <div class="countries-container" id="countries"></div>
  27. </main>
  28. <footer class="footer">
  29. <div>
  30. <a href="https://c.hgit.ga/testing/countries.git"
  31. rel="noopener noreferrer" target="_blank">
  32. Released under the AGPLv3 or later
  33. </a>
  34. </div>
  35. <div>
  36. <p>This site is Free/Libre Software</p>
  37. <p>Current version: 0.1.0</p>
  38. </div>
  39. <div>
  40. <a href="/licenses.html" data-jslicense="1" rel="noopener noreferrer" target="_blank">JavaScript licenses</a>
  41. </div>
  42. </footer>
  43. <script src="/dist/js/main.js"></script>
  44. </body>
  45. </html>