diff options
author | Adam T. Carpenter <atc@53hor.net> | 2023-05-11 21:45:40 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2023-05-11 21:45:40 -0400 |
commit | 08a38d69d9e495261261bcbc48a64e1570f38434 (patch) | |
tree | a73f70b51e4c3991825956b1e064ac013da52047 | |
parent | 4317628b3936c24c610feea6b5ba287065b62b47 (diff) | |
download | 53hor-08a38d69d9e495261261bcbc48a64e1570f38434.tar.xz 53hor-08a38d69d9e495261261bcbc48a64e1570f38434.zip |
feat: include projects
-rw-r--r-- | includes/nav.php | 3 | ||||
-rw-r--r-- | pages/projects.php | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/includes/nav.php b/includes/nav.php index 779e89f..1cac23c 100644 --- a/includes/nav.php +++ b/includes/nav.php @@ -13,6 +13,9 @@ <a href="/now">Now</a> </li> <li> + <a href="/projects">Projects</a> + </li> + <li> <a href="/contact">Contact</a> </li> <!--<li> diff --git a/pages/projects.php b/pages/projects.php new file mode 100644 index 0000000..41b0178 --- /dev/null +++ b/pages/projects.php @@ -0,0 +1,15 @@ +<h1>Projects</h1> + +<h2>Active Projects</h2> + +<ul> + + <li><a href="https://github.com/adpllc/altruistic-angelshark">Altruistic Angelshark</a>: an automation API and command-line interface for Avaya Communication Managers. +</ul> + +<h2>Learning & Teaching</h2> + +<ul> + <li><a href="https://www.youtube.com/@carpentertutoring841">Carpenter Tutoring</a>: practical computer programming and software development tutorials with no fluff.</li> + <li>Computational Problem Solving with Rust: stay tuned!</li> +</ul> |