diff options
| -rw-r--r-- | Caddyfile | 6 | ||||
| -rw-r--r-- | index.html | 22 |
2 files changed, 28 insertions, 0 deletions
diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..33bc4ff --- /dev/null +++ b/Caddyfile @@ -0,0 +1,6 @@ +:8080 + +rewrite / /index +redir /index / +try_files {path}.xml {path}.html +file_server diff --git a/index.html b/index.html new file mode 100644 index 0000000..6524dc5 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ +<html> + <head> + <title>Alexander F. Kavon</title> + <link rel="stylesheet" href="main.css" /> + </head> + <body> + <img src="/public/images/head.png" /> + <nav id="navigation"> + <ul> + <li><a href="/log">Feed (thoughts, photos, video, et al.)</a></li> + <li><a href="/stand-up">Stand-up Comedy</a></li> + <li><a href="https://hivemindcomedy.com">Hive Mind Comedy (sketches)</a></li> + <li><a href="https://gitlab.com/alexkavon">Code</a></li> + </ul> + </nav> + <nav id="social-media"> + <ul> + <li><a href="https://instagram.com/afk_comedy"><span class="icon-instagram"></span></a></li> + </ul> + </nav> + </body> +</html> |
