mirror of
https://github.com/Mibew/mibew.git
synced 2024-11-16 09:04:11 +03:00
45148071b4
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@230 c66351dc-e62f-0410-b875-e3a5c0b9693f
30 lines
811 B
PHP
30 lines
811 B
PHP
<?php
|
|
$page = 'home';
|
|
require_once('libs/common.php');
|
|
start_html_output();
|
|
require_once('inc/header.i');
|
|
require_once('inc/menu.i');
|
|
?>
|
|
|
|
<div id="container">
|
|
<div id="content">
|
|
<img src="images/style_default_tn.png" style="display:inline;float:left;margin:15px 15px 5px 0px;" width="200" height="166" border="0"/>
|
|
<h3><?php echo getlocal("index.whatis.title") ?></h3>
|
|
<p><?php echo getlocal("index.whatis") ?></p>
|
|
|
|
<h3><?php echo getlocal("index.why.title") ?></h3>
|
|
<p><?php echo getlocal("index.why") ?></p>
|
|
|
|
<h3><?php echo getlocal("index.how.title") ?></h3>
|
|
<p><?php echo getlocal("index.how") ?></p>
|
|
|
|
<h3><?php echo getlocal("index.license.title") ?></h3>
|
|
<p><?php echo getlocal("index.license") ?></p>
|
|
|
|
<p><?php echo getlocal("index.hosted") ?></p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once('inc/footer.i'); ?>
|