forked from fsi-tue/eei
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhead.php
More file actions
20 lines (19 loc) · 812 Bytes
/
head.php
File metadata and controls
20 lines (19 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
require_once 'config.php';
require_once 'utils.php';
require_once 'i18n/i18n.php';
require_once 'event_type.php';
global $i18n, $FILE_REVISION, $CONFIG_THEME;
?>
<head>
<meta charset='UTF-8'>
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui'>
<meta http-equiv='X-UA-Compatible' content='ie=edge'>
<link rel='stylesheet' href="css/style-<?=$CONFIG_THEME?>.css<?= $FILE_REVISION ?>">
<link rel='stylesheet' href="css/style.css<?= $FILE_REVISION ?>">
<link rel='stylesheet' href="css/icons.css<?= $FILE_REVISION ?>">
<link rel='stylesheet' href="css/input.css<?= $FILE_REVISION ?>">
<link rel='stylesheet' href="css/modal.css<?= $FILE_REVISION ?>">
<title><?= $i18n['title'] ?></title>
</head>