mirror of
https://github.com/php/web-gtk.git
synced 2026-03-24 15:22:06 +01:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?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 w3-animate-opacity">
|
|
<h1><?php echo WELCOME;?></h1>
|
|
</header>
|
|
<div class="w3-center w3-animate-opacity">
|
|
<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 w3-animate-opacity">
|
|
<?php defaultmenuright();?>
|
|
</nav>
|
|
</aside>
|
|
|
|
</div>
|
|
</div>
|
|
<footer class="w3-container w3-small w3-teal w3-animate-opacity">
|
|
<p><?php echo FOOTER;?></p>
|
|
</footer>
|
|
|
|
|
|
<?php
|
|
defaultfooter();
|
|
?>
|