summary refs log tree commit diff stats
path: root/index.php
blob: 1912636a802ff19c21934ae4186bdb692aa440a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
require 'php/definitions.php';	# Variables and constants definition
# Interact with variables in the execution environment
require 'php/ws-procedures.php';  # website specific
require 'php/rd-procedures.php';  #video management (Read data)
require 'php/wd-procedures.php';  #video management (Write/update data)
?>
<!DOCTYPE html>
<html lang="<?php echo $wsdata[4] ?>">
<?php require 'divs/head.php' ?>
<body>
  <div id="body-wrapper">
    <div id="header"></div>
    <div id="content-wrapper"><?php require 'divs/content-wrapper.php' ?></div>
    <div id="sidebar"><?php require 'divs/sidebar.php' ?></div>
    <div id="footer"><?php require 'divs/footer.php' ?></div>
  </div>
</body>
</html>