2008-11-27 15:10:48 +03:00
|
|
|
<?php
|
|
|
|
$page = 'home';
|
2008-12-02 00:55:24 +03:00
|
|
|
require_once('libs/common.php');
|
|
|
|
start_html_output();
|
2008-11-27 15:10:48 +03:00
|
|
|
require_once('inc/header.i');
|
|
|
|
require_once('inc/menu.i');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="container">
|
|
|
|
<div id="content">
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("index.whatis.title") ?></h3>
|
|
|
|
<p><?php echo getlocal("index.whatis") ?></p>
|
2008-11-27 15:10:48 +03:00
|
|
|
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("index.why.title") ?></h3>
|
|
|
|
<p><?php echo getlocal("index.why") ?></p>
|
2008-11-27 15:10:48 +03:00
|
|
|
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("index.how.title") ?></h3>
|
|
|
|
<p><?php echo getlocal("index.how") ?></p>
|
2008-11-27 15:10:48 +03:00
|
|
|
|
2008-12-02 00:55:24 +03:00
|
|
|
<h3><?php echo getlocal("index.license.title") ?></h3>
|
|
|
|
<p><?php echo getlocal("index.license") ?></p>
|
2008-11-27 15:10:48 +03:00
|
|
|
|
2008-12-02 00:55:24 +03:00
|
|
|
<p><?php echo getlocal("index.hosted") ?></p>
|
2008-11-27 15:10:48 +03:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php require_once('inc/footer.i'); ?>
|