404.html (917B)
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.0"> 6 <meta name="theme-color" content="#ff8000"> 7 <link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"> 8 <link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png"> 9 10 <title>404 Not Found - Running Tools</title> 11 <meta name="description" content="%VITE_DESCRIPTION%"> 12 </head> 13 14 <body> 15 <header> 16 <h1>Running Tools</h1> 17 </header> 18 <main style="margin: 1em; text-align: center"> 19 <h2 style="font-size: 1.5em">404 Not Found</h2> 20 <p style="margin-top: 0.5em"> 21 <a href="%BASE_URL%">Return home</a> 22 </p> 23 </main> 24 25 <!-- no #app div, so styles will be loaded but app will not be mounted --> 26 <script type="module" src="/src/main.js"></script> 27 </body> 28 </html>