-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmpl.php
46 lines (39 loc) · 1.46 KB
/
tmpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php declare(strict_types=1);
include_once(__DIR__ . '/vendor/autoload.php');
use \Oeuvres\Kit\{Http, Route};
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://oeuvres.github.io/teinte_theme/teinte.css" />
<link rel="stylesheet" href="https://oeuvres.github.io/teinte_theme/teinte.tree.css" />
<script src="https://oeuvres.github.io/teinte_theme/teinte.tree.js"></script>
<link rel="stylesheet" href="<?= Route::home_href() ?>theme/obtic_teinte.css" />
<title>ObTiC, Teinte, conversion de livres</title>
</head>
<body>
<div id="win">
<header id="header">
<a class="logo" href="https://obtic.sorbonne-universite.fr">
<img src="<?= Route::home_href() ?>theme/obtic_logo.svg" alt="ObTIC" />
</a>
<nav id="tabs">
<?= Route::tab('', 'Accueil') ?>
<?= Route::tab('lots', 'Lots') ?>
<?= Route::tab('contact', 'Contact') ?>
<a target="_blank" id="github" href="https://github.com/OBVIL/teinte_obtic">Open Source</a>
</nav>
</header>
<?= Route::main() ?>
<footer id="footer">
<div class="rule">
<div class="monogram"></div>
</div>
</footer>
</div>
<script type="module" type="text/javascript" src="<?= Route::home_href() ?>teinte_obtic.js"> </script>
</body>
</html>