blob: 77a19de6b73eb21df007d372e280a7fb3b2b3f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.inc"; global $title; global $isLoggedIn; global $lang; global $pages;
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc';
?>
<br>
<div class="container">
<div id="page-content">
<?= file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/terminology.html") ?>
</div>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/footer.inc'; ?>
|