diff options
Diffstat (limited to '')
-rw-r--r-- | src/views/pages/index.ejs | 2 | ||||
-rw-r--r-- | src/views/partials/nav.ejs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/views/pages/index.ejs b/src/views/pages/index.ejs index 3d9d0be..ca9b20f 100644 --- a/src/views/pages/index.ejs +++ b/src/views/pages/index.ejs @@ -5,7 +5,7 @@ <!-- HTML headers --> <%- include('../partials/head.ejs') %> <title>Upload your code here!</title> - <script type="module" src="public/js/form.js" defer></script> + <script type="module" src="public/js/form.js"></script> </head> <body> diff --git a/src/views/partials/nav.ejs b/src/views/partials/nav.ejs index 04054a9..3244ca1 100644 --- a/src/views/partials/nav.ejs +++ b/src/views/partials/nav.ejs @@ -1,7 +1,7 @@ <nav> <ul class="navbar"> - <li><a href="/">Home</a></li> - <li><a href="/about">About the Inverted Pendulum</a></li> + <li><a href="/pendulum">Run the Pendulum!</a></li> + <li><a href="/">About the Inverted Pendulum</a></li> <li><a href="https://github.com/UMN-EE4951W-Lamperski/pendulum" style="right: 0px">GitHub Repo</a></li> </ul> </nav>
\ No newline at end of file |