techinc.nl/index.php

60 lines
1.9 KiB
PHP
Raw Normal View History

2025-02-27 00:32:27 +00:00
<?php
/*
* Hello fellow human! Feel free to update this page however you want.
* At the moment, the code lives at https://code.techinc.nl/Thijs/techinc.nl
*
* As this site supports multiple display languages, if you update any text,
* make sure you update the language strings in both
* - language/nl.php
* - language/en.php
2025-02-27 01:57:28 +00:00
* The $lang->get("KEY") function will automatically select the preferred
* display language, based on the Accept-Language client header.
2025-02-27 00:32:27 +00:00
*
* Thank you for keeping the website accessible for people that
* are not fluent in either English or Dutch!
*
*/
2025-02-27 01:57:28 +00:00
require_once("header.php");
?>
2025-02-26 22:35:24 +00:00
<html lang="<?= $lang->languageCode ?>">
2025-02-26 23:30:52 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicons -->
<link rel="icon" type="image/png" href="/icons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/icons/favicon.svg" />
<link rel="shortcut icon" href="/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="TechInc" />
<link rel="manifest" href="/icons/site.webmanifest" />
<!-- Metadata -->
2025-02-27 00:32:27 +00:00
<meta name="description" content="<?= $lang->get('SHORT_DESCRIPTION_HEAD') ?>" />
2025-02-26 23:30:52 +00:00
<title>Technologia Incognita</title>
</head>
2025-02-27 00:32:27 +00:00
<body>
<header>
2025-02-27 01:57:28 +00:00
<!-- Logo -->
2025-02-27 00:32:27 +00:00
<img src="/icons/favicon.svg" width="100px" alt="<?= $lang->get("LOGO_ALT_TEXT") ?>" />
2025-02-27 01:57:28 +00:00
<!-- Space state -->
<?php if ($spacestate->open) { ?>
<?= $lang->get('OPEN_SINCE') ?> <?= $spacestate->formattedLastChange() ?> <?= $lang->get('AGO') ?>
<?php } else { ?>
<?= $lang->get('CLOSED') ?>
<?php } ?>
2025-02-27 00:32:27 +00:00
<!-- Title and short introduction -->
<h1>Technologia Incognita</h1>
2025-02-27 01:57:28 +00:00
<p><?= $lang->get('SHORT_DESCRIPTION_BODY') ?></p>
2025-02-27 00:32:27 +00:00
</header>
2025-02-27 01:57:28 +00:00
<main>
</main>
2025-02-27 00:32:27 +00:00
<footer></footer>
</body>
2025-02-26 22:35:24 +00:00
</html>