diff options
| author | kj-sh604 | 2024-08-05 17:04:26 -0400 |
|---|---|---|
| committer | kj-sh604 | 2024-08-05 17:04:26 -0400 |
| commit | 11ae134cd720443b6ed5fe67bc570bbfcc8730e0 (patch) | |
| tree | f4cc000ad6ea18b095f6c463796b0011220a471a /includes | |
| parent | 7e1da62bb3f0f3836c4006e44560241479767c50 (diff) | |
refactor: lighthouse optimizations 🗼 and slight redesign
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/link-tags-in-head.php | 2 | ||||
| -rw-r--r-- | includes/link-tags.php | 2 | ||||
| -rw-r--r-- | includes/main-info.php | 2 | ||||
| -rw-r--r-- | includes/nav-footer.php | 7 | ||||
| -rw-r--r-- | includes/nav-header.php | 7 | ||||
| -rw-r--r-- | includes/procrastislides-banner.php | 2 |
6 files changed, 10 insertions, 12 deletions
diff --git a/includes/link-tags-in-head.php b/includes/link-tags-in-head.php new file mode 100644 index 0000000..3b5f302 --- /dev/null +++ b/includes/link-tags-in-head.php @@ -0,0 +1,2 @@ +<link rel="icon" href="../img/site-icon.webp" type="image/x-icon"> +<link rel="stylesheet" href="../css/style.css"> diff --git a/includes/link-tags.php b/includes/link-tags.php deleted file mode 100644 index 23a6120..0000000 --- a/includes/link-tags.php +++ /dev/null @@ -1,2 +0,0 @@ -<!-- link rel="icon" href="../img/site-icon.webp" type="image/x-icon" --> <!-- (Unsupported in Chrome) --> -<link rel="stylesheet" href="../css/style.css"> diff --git a/includes/main-info.php b/includes/main-info.php index 0d3aa98..8428ddf 100644 --- a/includes/main-info.php +++ b/includes/main-info.php @@ -1,4 +1,4 @@ -<p class="centered">simple presentation(s) site for quick slides from markdown <br> +<p class="centered">a VERY minimal presentation(s) site to create quick slides from markdown<br> (powered by LaTeX beamer, pandoc, and the rust uutils)</p> <p class="centered"><b>✨ latest feature update:</b> addition of 16:9 themes 🚀</p> <hr> diff --git a/includes/nav-footer.php b/includes/nav-footer.php index 2035daa..370eeae 100644 --- a/includes/nav-footer.php +++ b/includes/nav-footer.php @@ -1,8 +1,7 @@ <hr/> -<a href="../index.php">home</a> -<a href="../index.php#how-to">how-to</a> -<a href="../info.php">info</a> -<a href="../licenses.php">licenses</a> +<a href="../index.php">home</a> +<a href="../info.php">info</a> +<a href="../licenses.php">licenses</a> <br> <p>all site content is in the public domain</p> <p><small>my other stuff: <a href="https://aedrielkylejavier.me/" target="_blank">website link →</a></small></p> diff --git a/includes/nav-header.php b/includes/nav-header.php index 86a987d..c4cac05 100644 --- a/includes/nav-header.php +++ b/includes/nav-header.php @@ -1,9 +1,8 @@ <div class="centered"> <h2> - <a href="../index.php">home</a> - <a href="./index.php#how-to">how-to</a> - <a href="../info.php">info</a> - <a href="../licenses.php">licenses</a> + <a style="text-decoration: none;" href="../index.php">🏠 home</a> + <a style="text-decoration: none;" href="../info.php">📃 info</a> + <a style="text-decoration: none;" href="../licenses.php">🏛 licenses</a> </h2> <hr> diff --git a/includes/procrastislides-banner.php b/includes/procrastislides-banner.php index 3a6ca46..e69a821 100644 --- a/includes/procrastislides-banner.php +++ b/includes/procrastislides-banner.php @@ -1,4 +1,4 @@ <div class=banner> - <h1>📑 procrastiSlides v0.02p1 🎬</h1> + <h1>📑 procrastiSlides v0.02 p2 🎬</h1> <hr /> </div> |
