summary refs log tree commit diff stats
path: root/index.php
blob: 91a70b4424b6389fe36482b5be062e800d95b8fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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[3] ?>">
<head>
  <title><?php printf("%s - %s", $vdata[2], $wsdata[0]) ?></title>
  <meta name="description" content="<?php echo $wsdata[4] ?>" />
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <link rel="stylesheet" type="text/css" href="/theme/body-wrapper.css"/>
</head>
<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>