From 755c6978285eca7faa2891baa42bd920a8fc517f Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sun, 2 Jun 2024 21:50:09 -0400 Subject: feat: remove _blank targets for accessibility Users decide whether links open in new tabs! --- assets/resume.html | 4 ++-- includes/foot.php | 4 ++-- includes/nav.php | 2 +- index.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/resume.html b/assets/resume.html index 7507a30..0c1addc 100644 --- a/assets/resume.html +++ b/assets/resume.html @@ -5,8 +5,8 @@ atc@53hor.net (757) 774-6829 www.53hor.net - git.53hor.net - LinkedIn + git.53hor.net + LinkedIn

diff --git a/includes/foot.php b/includes/foot.php index f0330de..e8432b9 100644 --- a/includes/foot.php +++ b/includes/foot.php @@ -6,9 +6,9 @@

© 2019- Adam Carpenter
- Content released under CC BY 4.0. + Content released under CC BY 4.0.
- Source code released under BSD 3-Clause, unless otherwise stated. + Source code released under BSD 3-Clause, unless otherwise stated. diff --git a/includes/nav.php b/includes/nav.php index 1cac23c..93d83fa 100644 --- a/includes/nav.php +++ b/includes/nav.php @@ -33,7 +33,7 @@ Links

  • - Repos + Repos
  • RSS diff --git a/index.php b/index.php index 3d0a8b3..5996fca 100644 --- a/index.php +++ b/index.php @@ -7,7 +7,7 @@ if (empty($page)) { } else if (!empty($page) && $page[0] >= '0' && $page[0] <= '9' && is_readable("./posts/$page.php")) { $script = file_get_contents("./posts/$page.php"); $re = '/([^\(<>\)]*)\(([0-9])\)<\/code>/m'; - $subst = '$1($2)'; + $subst = '$1($2)'; $script = preg_replace($re, $subst, $script); eval("?>$script