2016-07-18 16:39:37 +00:00
|
|
|
<?php
|
|
|
|
if (!isset($ShowPageFooter)) {
|
|
|
|
$ShowPageFooter = true;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<?php if ($ShowPageFooter): ?>
|
|
|
|
<div class="uoj-footer">
|
2017-11-25 04:00:00 +00:00
|
|
|
<p>
|
|
|
|
<a href="<?= HTML::url(UOJContext::requestURI(), array('params' => array('locale' => 'zh-cn'))) ?>"><img src="/pictures/lang/cn.png" alt="中文" /></a>
|
|
|
|
<a href="<?= HTML::url(UOJContext::requestURI(), array('params' => array('locale' => 'en'))) ?>"><img src="/pictures/lang/gb.png" alt="English" /></a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul class="list-inline">
|
|
|
|
<li><?= UOJConfig::$data['profile']['oj-name'] ?></li>
|
|
|
|
<?php if (UOJConfig::$data['profile']['ICP-license'] != ''): ?> |
|
2019-04-18 03:10:53 +00:00
|
|
|
<li><a href="http://www.miitbeian.gov.cn" target="_blank"><?= UOJConfig::$data['profile']['ICP-license'] ?></a></li>
|
2017-11-25 04:00:00 +00:00
|
|
|
<?php endif ?>
|
|
|
|
</ul>
|
|
|
|
|
2019-04-30 16:30:55 +00:00
|
|
|
<p><?= UOJLocale::get('server time') ?>: <?= UOJTime::$time_now_str ?> | <a href="https://github.com/UniversalOJ/UOJ-System" target="_blank"><?= UOJLocale::get('opensource project') ?></a></p>
|
2016-07-18 16:39:37 +00:00
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
<!-- /container -->
|
|
|
|
</body>
|
|
|
|
</html>
|