index.neovan 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <@html>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>TODO | NeoVan</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. </head>
  9. <body>
  10. <@ ../components/menu.neovan @>
  11. <h1>NeoVan TODO</h1>
  12. <p>This is a non-exhaustive list of features that are intended to be added in the future.</p>
  13. <p>*Note: Everything is currently experimental at the moment to see if there is interest in the project.</p>
  14. <ul>
  15. <li>Obvious improvement to parsing/building</li>
  16. <li>Pre-fetching for links</li>
  17. <li>URL parameters</li>
  18. <li>Re-writing in Rust/Actix for better server performance</li>
  19. <li>Add support for ".neovan" files for VSCode</li>
  20. <li>Add scoping for components</li>
  21. </ul>
  22. </body>
  23. </html>
  24. <@/html>
  25. <@style>
  26. *{margin: 0; padding: 0; box-sizing: border-box;}
  27. body{
  28. height: 100%;
  29. width: 100%;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. background: black;
  34. color: white;
  35. box-sizing: border-box;
  36. }
  37. h1{
  38. color: #00ccaa;
  39. margin: 35px 0;
  40. }
  41. p{
  42. font-size: 22px;
  43. margin: 15px 15px;
  44. }
  45. li{
  46. font-size: 24px;
  47. margin: 10px 25px;
  48. }
  49. <@/style>