diff options
Diffstat (limited to '')
-rw-r--r-- | src/views/pages/about.ejs | 5 | ||||
-rw-r--r-- | src/views/pages/index.ejs | 2 | ||||
-rw-r--r-- | src/views/partials/head.ejs | 6 |
3 files changed, 6 insertions, 7 deletions
diff --git a/src/views/pages/about.ejs b/src/views/pages/about.ejs index 022354c..2feede5 100644 --- a/src/views/pages/about.ejs +++ b/src/views/pages/about.ejs @@ -4,12 +4,12 @@ <head> <!-- HTML headers information --> <%- include('../partials/head.ejs') %> + <title>About the Remotely Accessible Inverted Pendulum</title> </head> <body> <!-- Get the navbar --> <%- include('../partials/nav.ejs') %> - <title>About the Remotely Accessible Inverted Pendulum</title> <div class="header"> <img src="public/img/site_logo.png" alt="Pendulum logo" width="160" height="130" /> <h1>Remotely Accessible Inverted Pendulum</h1> @@ -28,8 +28,7 @@ <br /> <h1 id="Background">Background</h1> <p> - Our teams developed an inverted pendulum system that could be accessed over a computer network for use by students. The inverted pendulum is a common controls problem used in academia. This problem teaches students concepts of control loops, data filtering, - and machine learning, and web development. + Our teams developed an inverted pendulum system that could be accessed over a computer network for use by students. The inverted pendulum is a common controls problem used in academia. This problem teaches students concepts of control loops, data filtering, and machine learning. </p> <br /> <h1 id="Pendulum_info"> What is an Inverted Pendulum? </h1> diff --git a/src/views/pages/index.ejs b/src/views/pages/index.ejs index 0e6fe15..8b5f044 100644 --- a/src/views/pages/index.ejs +++ b/src/views/pages/index.ejs @@ -11,7 +11,7 @@ <!-- Get the navbar --> <%- include('../partials/nav.ejs') %> <br /> - <h2>Please upload a Python file (.py file extension) onto the Inverted Pendulum.</h2> + <h2>Please upload a Python file (.py file extension) to run on the Inverted Pendulum.</h2> <br /> <br /> <form id="upload" enctype="multipart/form-data"> <input type="hidden" name="_csrf" value="<%= csrfToken %>"> diff --git a/src/views/partials/head.ejs b/src/views/partials/head.ejs index 320f0e6..4a9d76a 100644 --- a/src/views/partials/head.ejs +++ b/src/views/partials/head.ejs @@ -1,6 +1,6 @@ <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="stylesheet" href="public/css/style.css" type="text/css"> - <link rel="icon" href="public/img/site_logo.png" type="image/x-icon">
\ No newline at end of file + <link rel="stylesheet" href="public/css/style.css" type="text/css" /> + <link rel="icon" href="public/img/site_logo.png" type="image/x-icon" />
\ No newline at end of file |