summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorAmbrose <me@librelife.org>2026-03-01 17:22:16 -0500
committerAmbrose <me@librelife.org>2026-03-01 17:22:16 -0500
commitf5a7d806e3504c820db4f4c19ab599b4ea23a72d (patch)
tree5a266c80509d7c6f7e99cbcd1ce4141ad1d5dee1 /index.html
Created plain index / landing page
Diffstat (limited to 'index.html')
-rw-r--r--index.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..d4c11eb
--- /dev/null
+++ b/index.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="description" content="My personal website, made by hand with with love.">
+ <meta name="author" content="Ambrose">
+ <title>Ambrose's Personal Webpage</title>
+ <link rel="Website icon" href="/static/favicon.svg" type="image/svg">
+ <link rel="stylesheet" href="styles.css">
+ <script src="/static/js/jquery-1.10.2.js"></script>
+</head>
+<body>
+ <h1 class="title">Ambrose's Personal Webpage</h1>
+<!--navigation bar-->
+<div id="nav-placeholder">
+
+</div>
+
+<script>
+$(function(){
+ $("#nav-placeholder").load("/static/nav.html");
+});
+</script>
+<!--end of navigation bar-->
+
+<!--footer-->
+<div id="footer-placeholder">
+
+</div>
+
+<script>
+$(function(){
+ $("#footer-placeholder").load("/static/footer.html");
+});
+</script>
+<!--end of footer-->
+
+</body>
+</html>