-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.php
49 lines (41 loc) · 1.14 KB
/
index.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
session_start();
error_reporting(E_ALL);
ini_set("display_errors", 1);
require_once("includes/setdefaultpage.php");
userlanguage();
require("language/".$_SESSION['language']."/index.php");
$header=explode(":",DEFAULTHEADER);
defaultheader($header[0],$header[1],$header[2],$header[3]);
?>
<body>
<?php defaulttop(); ?>
<header class="w3-container w3-teal">
<h1><?php echo WELCOME;?></h1>
</header>
<div class="w3-center">
<div class="w3-row"><br/>
<article class="w3-col m10 w3-container">
<h1><?php echo TITLE1;?></h1>
<div class="w3-center">
<img src="images/gtkaboutdialog.png" height="260" width="350" alt="php-gtk example" />
</div>
<p class="w3-justify"><?php echo TEXT1;?></p>
<h1><?php echo TITLE2;?></h1>
<p class="w3-justify"><?php echo TEXT2;?></p>
<p class="w3-justify"><?php echo TEXT3;?></p>
<p class="w3-justify"><?php echo TEXT4;?></p>
</article>
<aside>
<nav class="w3-col m2 w3-light-grey">
<?php defaultmenuright();?>
</nav>
</aside>
</div>
</div>
<footer class="w3-container w3-small w3-teal">
<p><?php echo FOOTER;?></p>
</footer>
<?php
defaultfooter();
?>