summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpommicket <leonardomtenenbaum@gmail.com>2016-08-29 20:11:18 -0400
committerpommicket <leonardomtenenbaum@gmail.com>2016-08-29 20:11:18 -0400
commitee0e4a4a72beedd7901c05856bce1a79aac30904 (patch)
tree905111d9f6e0f5fa8a3decd516546114234effc3
parent0a053ee6d4cf6f9dc3d4094b3fc6789ec8889ba8 (diff)
Testing new navbar
-rw-r--r--apps.html9
-rw-r--r--navbar.js4
2 files changed, 7 insertions, 6 deletions
diff --git a/apps.html b/apps.html
index 610977d..54636bd 100644
--- a/apps.html
+++ b/apps.html
@@ -5,15 +5,12 @@
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
+<div id="navbar"></div><script src="navbar.js"></script>
<h2>Android Apps</h2>
-<a class="header_link" href="index.html">Home</a>
-<a class="header_link" href="all.html">All</a>
-<a class="header_link" href="mathematical.html">Mathematical Demonstrations</a>
-<a class="header_link" href="games.html">Games</a>
-<hr>
<img src="screenshots/autoartapp.png" width=200><br>
<a href="https://play.google.com/store/apps/details?id=org.neocities.autoart.autoart">AutoArt</a><br>
The Android app for <a href="AutoImages.html">AutoImages</a>.<br>
@@ -32,4 +29,4 @@ The Android app for <a href="magnets.html">Magnets</a>.<br>
The Android app for <a href="ballbounce.html">Ball Bounce</a>.<br>
</p>
-</body> \ No newline at end of file
+</body>
diff --git a/navbar.js b/navbar.js
new file mode 100644
index 0000000..5926ec4
--- /dev/null
+++ b/navbar.js
@@ -0,0 +1,4 @@
+$(function()
+{
+ $("#navbar").load("http://pommicket.github.io/Navbar.html");
+});