zentaopms/module/misc/view/about.html.php
2023-05-16 10:47:08 +08:00

33 lines
1.2 KiB
PHP

<?php include '../../common/view/header.lite.html.php';?>
<main id="main">
<div class="container">
<div id='mainContent' class='main-content'>
<div class='main-header'>
<h2><?php echo $lang->misc->zentao->labels['about'];?></h2>
</div>
<table class='table table-form'>
<tr>
<td class='text-center w-160px'>
<img src='<?php echo $config->webRoot . 'theme/default/images/main/' . $lang->logoImg;?>' />
<h4>
<?php if(trim($config->visions, ',') == 'lite'):?>
<?php echo $lang->liteName.$config->liteVersion; ?>
<?php else:?>
<?php printf($lang->misc->zentao->version, $config->version); ?>
<?php endif;?>
</h4>
</td>
<td><?php include './links.html.php';?></td>
</tr>
<tr>
<td colspan='2' class="copyright text-right text-middle">
<div class='pull-left'><?php echo $lang->designedByAIUX;?></div>
<?php echo $lang->misc->copyright;?>
</td>
</tr>
</table>
</div>
</div>
</main>
<?php include '../../common/view/footer.lite.html.php';?>