diff options
author | 53hornet <atc@53hor.net> | 2021-12-10 23:17:42 -0500 |
---|---|---|
committer | 53hornet <atc@53hor.net> | 2021-12-10 23:17:42 -0500 |
commit | de9bbfdb8f0d3b366e76a5cc775690f7315c740f (patch) | |
tree | ce5dd65c507ce5db6382665d824ef163e47e8d0f /links/index.php | |
parent | e68127a6ff2428657b8dab0b90cd16bf1dd99dad (diff) | |
download | 53hor-de9bbfdb8f0d3b366e76a5cc775690f7315c740f.tar.xz 53hor-de9bbfdb8f0d3b366e76a5cc775690f7315c740f.zip |
feat: custom routing, no required php in posts
Diffstat (limited to 'links/index.php')
-rw-r--r-- | links/index.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/links/index.php b/links/index.php index a5cf83f..3012a69 100644 --- a/links/index.php +++ b/links/index.php @@ -1,8 +1,20 @@ <?php -$title = "Egress Links"; include('../includes/head.php'); ?> +<h1>Egress Links</h1> <p> If you're going to leave my site to go somewhere else on the web, I recommend linking out via one of these. This is my curated collection of awesome sites, resources, and online assets. </p> + +<h2>Automotive</h2> + +<h2>*nix</h2> + +<ul> + <li><a href="https://docs.freebsd.org/en/books/handbook/">FreeBSD Handbook</a></li> +</ul> + +<?php +include('../includes/foot.php'); +?> |