diff options
| author | Baitinq <[email protected]> | 2022-10-30 15:47:47 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-10-30 16:12:40 +0100 |
| commit | 57e36c148c00c339d7b1b3426b7ca651edfc8a1b (patch) | |
| tree | f2c52861821c97a419757f8d48e22fb38577f0e7 /frontend/index.html | |
| parent | Frontend: Move app-specific code to app.rs (diff) | |
| download | OSSE-57e36c148c00c339d7b1b3426b7ca651edfc8a1b.tar.gz OSSE-57e36c148c00c339d7b1b3426b7ca651edfc8a1b.tar.bz2 OSSE-57e36c148c00c339d7b1b3426b7ca651edfc8a1b.zip | |
Frontend: Setup skeleton route support
We now have the / and /search/ route boilerplate. This will allow us to switch to the /search/ route when searching.
Diffstat (limited to '')
| -rw-r--r-- | frontend/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/index.html b/frontend/index.html index 35e10c8..abf3b18 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -7,7 +7,7 @@ <title>OSSE</title> <link data-trunk rel="copy-dir" href="css"> <link data-trunk rel="copy-dir" href="js"> - <link href="./css/bootstrap.min.css" rel="stylesheet"> + <link href="/css/bootstrap.min.css" rel="stylesheet"> <style> body, html { @@ -17,7 +17,7 @@ </head> <body> - <script src="./js/bootstrap.bundle.min.js"></script> + <script src="/js/bootstrap.bundle.min.js"></script> </body> </html> \ No newline at end of file |