mirror of
https://github.com/Mibew/java.git
synced 2025-01-23 18:10:34 +03:00
41 lines
848 B
PHP
41 lines
848 B
PHP
|
<?php
|
||
|
$page = 'home';
|
||
|
$subpage = 'terms';
|
||
|
require_once('libs/common.php');
|
||
|
start_html_output();
|
||
|
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("license.title") ?></h2>
|
||
|
<div class="entry">
|
||
|
<p>
|
||
|
<?php echo getlocal("license.content") ?><br/>
|
||
|
</p>
|
||
|
</div>
|
||
|
<div class="nometa"></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'); ?>
|