|
|
@@ -0,0 +1,55 @@
|
|
|
+<@html>
|
|
|
+ <!DOCTYPE html>
|
|
|
+ <html lang="en">
|
|
|
+ <head>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <title>TODO | NeoVan</title>
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <h1>NeoVan TODO</h1>
|
|
|
+ <p>This is a non-exhaustive list of features that are intended to be added in the future.</p>
|
|
|
+ <p>*Note: Everything is currently experimental at the moment to see if there is interest in the project.</p>
|
|
|
+
|
|
|
+ <ul>
|
|
|
+ <li>Obvious improvement to parsing/building</li>
|
|
|
+ <li>Pre-fetching for links</li>
|
|
|
+ <li>URL parameters</li>
|
|
|
+ <li>Re-writing in Rust/Actix for better server performance</li>
|
|
|
+ <li>Add support for ".neovan" files for VSCode</li>
|
|
|
+ <li>Add scoping for components</li>
|
|
|
+ </ul>
|
|
|
+ </body>
|
|
|
+ </html>
|
|
|
+<@/html>
|
|
|
+
|
|
|
+<@style>
|
|
|
+ *{margin: 0; padding: 0; box-sizing: border-box;}
|
|
|
+
|
|
|
+ body{
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ background: black;
|
|
|
+ color: white;
|
|
|
+ margin: 25px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ h1{
|
|
|
+ color: #00ccaa;
|
|
|
+ margin-bottom: 35px;
|
|
|
+ }
|
|
|
+
|
|
|
+ p{
|
|
|
+ margin-bottom: 15px;
|
|
|
+ font-size: 22px;
|
|
|
+ }
|
|
|
+
|
|
|
+ li{
|
|
|
+ font-size: 24px;
|
|
|
+ margin: 10px 0;
|
|
|
+ }
|
|
|
+<@/style>
|