59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
<?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
|
|
* The $lang->get("KEY") function will automatically select the preferred
|
|
* display language, based on the Accept-Language client header.
|
|
*
|
|
* Thank you for keeping the website accessible for people that
|
|
* are not fluent in either English or Dutch!
|
|
*
|
|
*/
|
|
|
|
require_once("header.php");
|
|
|
|
?>
|
|
<html lang="<?= $lang->languageCode ?>">
|
|
<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 -->
|
|
<meta name="description" content="<?= $lang->get('SHORT_DESCRIPTION_HEAD') ?>" />
|
|
<title>Technologia Incognita</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<!-- Logo -->
|
|
<img src="/icons/favicon.svg" width="100px" alt="<?= $lang->get("LOGO_ALT_TEXT") ?>" />
|
|
|
|
<!-- Space state -->
|
|
<?php if ($spacestate->open) { ?>
|
|
<?= $lang->get('OPEN_SINCE') ?> <?= $spacestate->formattedLastChange() ?> <?= $lang->get('AGO') ?>
|
|
<?php } else { ?>
|
|
<?= $lang->get('CLOSED') ?>
|
|
<?php } ?>
|
|
|
|
<!-- Title and short introduction -->
|
|
<h1>Technologia Incognita</h1>
|
|
<p><?= $lang->get('SHORT_DESCRIPTION_BODY') ?></p>
|
|
|
|
</header>
|
|
<main>
|
|
|
|
</main>
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|