-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (27 loc) · 749 Bytes
/
Copy pathindex.php
File metadata and controls
31 lines (27 loc) · 749 Bytes
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
<?php require_once 'init.php';?>
<!DOCTYPE html>
<html lang="<?=$lang;?>">
<head>
<meta charset="UTF-8">
<title>LibreWolf</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/screen.css" media="screen">
<link rel="stylesheet" href="assets/css/print.css" media="print">
</head>
<body>
<div class="rules">
<?php print_rules($lang, $roles);?>
</div>
<div class="roles">
<?php print_role_cards($roles, $role_count);?>
</div>
<div class="gamemaster">
<section class="role_table">
<?php print_gamemasters_role_table($roles);?>
</section>
<section class="night_table">
<?php print_gamemaster_night_table($roles);?>
</section>
</div>
</body>
</html>