mirror of
https://github.com/Mibew/mibew.git
synced 2024-11-16 09:04:11 +03:00
53258ad278
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@216 c66351dc-e62f-0410-b875-e3a5c0b9693f
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
$page = 'feat';
|
|
require_once('libs/common.php');
|
|
start_html_output();
|
|
require_once('inc/header.i');
|
|
require_once('inc/menu.i');
|
|
?>
|
|
|
|
<div id="container">
|
|
<div id="content">
|
|
<a name='price'></a>
|
|
<h3><?php echo getlocal("features.price.title") ?></h3>
|
|
<?php echo getlocal("features.price") ?>
|
|
|
|
<a name='main'></a>
|
|
<h3><?php echo getlocal("features.main.title") ?></h3>
|
|
<?php echo getlocal("features.main") ?>
|
|
|
|
|
|
<a name='chat'></a>
|
|
<h3><?php echo getlocal("features.chat.title") ?></h3>
|
|
<?php echo getlocal("features.chat") ?>
|
|
|
|
<a name='operator'></a>
|
|
<h3><?php echo getlocal("features.operator.title") ?></h3>
|
|
<?php echo getlocal("features.operator") ?>
|
|
|
|
<a name='next'></a>
|
|
<h3><?php echo getlocal("features.next.title") ?></h3>
|
|
<?php echo getlocal("features.next") ?>
|
|
|
|
</div>
|
|
|
|
<div id="side">
|
|
<p><?php echo getlocal("features.content.head") ?></p>
|
|
<p>
|
|
<a href="#price"><?php echo strtolower(getlocal("features.price.title")) ?></a><br/>
|
|
<a href="#main"><?php echo strtolower(getlocal("features.main.title")) ?></a><br/>
|
|
<a href="#chat"><?php echo strtolower(getlocal("features.chat.title")) ?></a><br/>
|
|
<a href="#operator"><?php echo strtolower(getlocal("features.operator.title")) ?></a><br/>
|
|
<a href="#next">what is coming next</a><br/>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once('inc/footer.i'); ?>
|