diff options
author | Jonas Kohl | 2024-07-20 13:43:21 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-07-20 13:43:21 +0200 |
commit | b4f1a01ea76f6f086999e9598014f4454795d31a (patch) | |
tree | f68396bbca275886913e276ba8d1d2ec82128250 /src/template.php | |
parent | 97c7e0fe43d04d2139f7eb9b4428e3ab3ae006ed (diff) |
Add icons to navigation
Diffstat (limited to 'src/template.php')
-rw-r--r-- | src/template.php | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/src/template.php b/src/template.php index 4c66e3f..d875298 100644 --- a/src/template.php +++ b/src/template.php @@ -28,13 +28,31 @@ <tbody> <tr> <td class="navCell" style="border-left:0"> - <a href="/">Home page</a> + <a href="/"><img + class="navIcon" + alt="" + width="16" + height="16" + src="/static/icons/home.gif" + /> Home page</a> </td> <td class="navCell"> - <a href="/about">About me</a> + <a href="/about"><img + class="navIcon" + alt="" + width="16" + height="16" + src="/static/icons/about.gif" + /> About me</a> </td> <td class="navCell"> - <a href="https://jonaskohl.de/">My actual website</a> + <a href="https://jonaskohl.de/"><img + class="navIcon" + alt="" + width="16" + height="16" + src="/static/icons/website.gif" + /> My actual website</a> </td> <td class="navCell" style="border-right:0"></td> |