diff options
author | Jonas Kohl | 2024-07-21 20:08:31 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-07-21 20:08:31 +0200 |
commit | 557844b64120c3c08afa3f4364f1a6fdff7daffd (patch) | |
tree | 7511a26f1ad0ba47b0f738f108e62b96ab74fafd | |
parent | d79fb0f0ce4744974d45d7d4e80c3af8c2cca717 (diff) |
Add more content
-rw-r--r-- | src/pages/about.php | 13 | ||||
-rw-r--r-- | src/pages/index.php | 29 | ||||
-rw-r--r-- | src/static/hzcontent_01.gif | bin | 0 -> 11077 bytes | |||
-rw-r--r-- | src/static/hzcontent_02.gif | bin | 0 -> 2792 bytes | |||
-rwxr-xr-x | src/static/screenshot.bmp | bin | 0 -> 2359350 bytes | |||
-rw-r--r-- | src/static/screenshot_thumb.jpg | bin | 0 -> 7703 bytes | |||
-rw-r--r-- | src/static/style.css | 27 | ||||
-rw-r--r-- | src/template.php | 3 |
8 files changed, 72 insertions, 0 deletions
diff --git a/src/pages/about.php b/src/pages/about.php index 9e7b31b..ebe61a3 100644 --- a/src/pages/about.php +++ b/src/pages/about.php @@ -30,3 +30,16 @@ somehow – I tested it in IE 6, IE 7 and Mozilla 1.1). This website is also available solely via HTTP over at <a href="http://hozyro.jkohl.link/">http://hozyro.jkohl.link/</a>! </p> +<p class="center"> +<!-- I know, 'target' is only allowed in XHTML Frameset, but I don't care --> + <a class="imgLink" target="_new" href="/static/screenshot.bmp"><!-- + --><img src="/static/screenshot_thumb.jpg" + alt="Screenshot of this site being displayed in + Internet Explorer 6 on Windows XP" + width="256" + height="192" /><!-- + --></a><br /> + <span class="smallText">Fig. 1: Screenshot of this site being displayed in + Internet Explorer 6 on Windows XP<br /> + <span class="enlarge">(Click image to enlarge)</span></span> +</p> diff --git a/src/pages/index.php b/src/pages/index.php index cb9b417..973838b 100644 --- a/src/pages/index.php +++ b/src/pages/index.php @@ -1,4 +1,33 @@ <param:title>hozyro's site</param:title> <param:active-link>home</param:active-link> +<table style="width:100%;border-collapse:collapse" cellspacing="0"> +<tbody> + <tr> + <td style="padding:0" colspan="2"> + <img + src="/static/hzcontent_01.gif" + alt="Welcome, stranger!" + style="display:block" /> + </td> + </tr> + <tr> + <td style="padding:0;vertical-align:top"> + <img src="/static/hzcontent_02.gif" alt="" /> + </td> + <td style="padding:0;vertical-align:top"> + <div class="tablePara"> + …to my corner of the internet (well one of them, at least)! + I'm still not quite sure what to put on here, but I'm sure I'll + figure something out. In the meantime, you can check out the + <span class="mark">About me</span> page or my other, proper website! + </div> + <div class="tablePara">Until then,<br />toodaloo!</div> + </td> + </tr> +</tbody> +</table> + +<p> <br /> </p> + <?php include SRCDIR . "/includes/under-construction.php"; ?> diff --git a/src/static/hzcontent_01.gif b/src/static/hzcontent_01.gif Binary files differnew file mode 100644 index 0000000..3544323 --- /dev/null +++ b/src/static/hzcontent_01.gif diff --git a/src/static/hzcontent_02.gif b/src/static/hzcontent_02.gif Binary files differnew file mode 100644 index 0000000..4afc6d0 --- /dev/null +++ b/src/static/hzcontent_02.gif diff --git a/src/static/screenshot.bmp b/src/static/screenshot.bmp Binary files differnew file mode 100755 index 0000000..6d28c7d --- /dev/null +++ b/src/static/screenshot.bmp diff --git a/src/static/screenshot_thumb.jpg b/src/static/screenshot_thumb.jpg Binary files differnew file mode 100644 index 0000000..ca3674a --- /dev/null +++ b/src/static/screenshot_thumb.jpg diff --git a/src/static/style.css b/src/static/style.css index 1c1cd5e..e05ea73 100644 --- a/src/static/style.css +++ b/src/static/style.css @@ -92,3 +92,30 @@ a { height: 31px; vertical-align: middle; } +.center { + text-align: center; +} +.imgLink { + color: black; + text-decoration: none; +} +.imgLink img { + border: 1px solid black; +} +.smallText { + font-size: 8pt; + font-style: italic; + color: gray; +} +.enlarge { + color: black; + text-decoration: underline; + font-style: normal; +} +.mark { + color: #52268f; + font-weight: bold; +} +.tablePara { + margin-top: 1em; +} diff --git a/src/template.php b/src/template.php index ca781b9..69b51f3 100644 --- a/src/template.php +++ b/src/template.php @@ -8,6 +8,9 @@ $nav = fn(string $ln) => <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> + <meta http-equiv="imagetoolbar" content="no" /> + <meta http-equiv="MSThemeCompatible" content="no" /> + <meta name="format-detection" content="telephone=no" /> <title><?= htmlentities($params["title"] ?? "") ?></title> <link rel="stylesheet" href="/static/style.css" type="text/css" /> </head> |