mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-23 05:40:30 +03:00
dcc2f75732
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@710 c66351dc-e62f-0410-b875-e3a5c0b9693f
39 lines
837 B
PHP
Executable File
39 lines
837 B
PHP
Executable File
<?php
|
|
$page = 'home';
|
|
$subpage = 'copyright';
|
|
require_once('libs/common.php');
|
|
start_html_output();
|
|
$title = getlocal("copyright.title");
|
|
require_once('inc/header.i');
|
|
require_once('inc/menu.i');
|
|
?>
|
|
|
|
<div id="page">
|
|
<div id="content">
|
|
<div class="box1">
|
|
<p><img src="images/webimlogo.gif" alt="" width="74" height="79" class="left" /><?php echo getlocal("head.intro") ?></p>
|
|
</div>
|
|
<div class="post">
|
|
<h2 class="title"><?php echo getlocal("copyright.title") ?></h2>
|
|
<div class="entry">
|
|
<? echo getlocal("copyright.text") ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end content -->
|
|
<!-- start sidebar -->
|
|
<div id="sidebar">
|
|
<ul>
|
|
<?php
|
|
require_once('inc/main.i');
|
|
require_once('inc/locales.i');
|
|
?>
|
|
</ul>
|
|
</div>
|
|
<!-- end sidebar -->
|
|
<div style="clear: both;"> </div>
|
|
</div>
|
|
|
|
|
|
<?php require_once('inc/footer.i'); ?>
|