techinc.nl/index.php
2025-02-27 01:32:27 +01:00

46 lines
1.6 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
*
* 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 and space state -->
<img src="/icons/favicon.svg" width="100px" alt="<?= $lang->get("LOGO_ALT_TEXT") ?>" />
<!-- Title and short introduction -->
<h1>Technologia Incognita</h1>
<?= $lang->get('SHORT_DESCRIPTION_BODY') ?>
</header>
<main></main>
<footer></footer>
</body>
</html>