diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2021-04-10 21:54:43 -0400 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2021-04-10 21:54:43 -0400 |
commit | 88a08ee48cbbae086ddbfeaff0679bfe4fe6ce47 (patch) | |
tree | b62ec45eeb42b76ea1dae72d3cd8cea614c0194f /frontend/index.html | |
parent | 756b9fdefc1a28ac46aa4b76676c7ffb57c9e11a (diff) |
Added a transpiler that will make it so that we no longer need any JavaScript of Jquery in our App
Diffstat (limited to 'frontend/index.html')
-rw-r--r-- | frontend/index.html | 69 |
1 files changed, 49 insertions, 20 deletions
diff --git a/frontend/index.html b/frontend/index.html index 61d145e..73b3b21 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1,21 +1,51 @@ <!DOCTYPE html> <html lang="en"> - <head> - <meta charset="utf-8"> - <script src="scripts/jquery-3.5.1.min.js"></script> - <script src="index.js"></script> - <link rel="stylesheet" href="index.css"> - - <title>Physics for Games</title> - <link rel="shortcut icon" href="favicon/favicon.ico" type="image/x-icon"> - </head> - <body> - <header> - <h1>Physics for Games</h1> - </header> - <main> - <nav> - </nav> + <head> + <meta charset="utf-8"> + <link rel="stylesheet" href="/index.css"> + <title>Physics for Games</title> + <link rel="shortcut icon" href="favicon/favicon.ico" type="image/x-icon"> + </head> + <body> + <header> + <h1>Physics for Games</h1> + </header> + <main> + <nav> + <ul class="outer-tree"> + <li><a href="/">Introduction</a></li> + <li> + <span>🏀<span>2D</span></span> + <ul class="inner-tree"> + <li><label>Rigidbody</label></li> + <li><a href="/2d/_rigidbody/part_1.html">Linear Forces</a></li> + <li><a href="/2d/_rigidbody/part_2.html">Rotational Forces</a></li> + <li><a href="/2d/_rigidbody/part_3.html">Collision Forces</a></li> + <li><label>Collisions</label></li> + <li><a href="/2d/_collisions/circle_line.html">Circle-Line</a></li> + <li><a href="/2d/_collisions/rectangle_line.html">Rectangle-Line</a></li> + <li><a href="/2d/_collisions/pill_line.html">Pill-Line</a></li> + </ul> + </li> + <li> + <span>🌠<span>3D</span></span> + <ul class="inner-tree"> + </ul> + </li> + <li> + <span>🔧<span>WebAssembly</span></span> + <ul class="inner-tree"> + <li><a href="/intro/intro.html">Introduction</a></li> + </ul> + </li> + <li> + <span>🛈<span>About</span></span> + <ul class="inner-tree"> + <li><a href="/roadmap.html">Roadmap</a></li> + </ul> + </li> + </ul> + </nav> <section> <h1>Introduction: Rigid Body Physics</h1> <article> @@ -46,7 +76,6 @@ n' References page of the website. </p> </article> - </section> - </main> - </body> -</html>
\ No newline at end of file + </section> </main> + </body> +</html> |