2016-07-18 16:39:37 +00:00
|
|
|
<?php
|
|
|
|
if (!isset($ShowPageFooter)) {
|
|
|
|
$ShowPageFooter = true;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<?php if ($ShowPageFooter): ?>
|
|
|
|
<div class="uoj-footer">
|
2019-09-10 02:15:20 +00:00
|
|
|
<div class="btn-group dropright mb-3">
|
|
|
|
<button type="button" class="btn btn-sm btn-outline-secondary dropdown-toggle" data-toggle="dropdown">
|
|
|
|
<span class="glyphicon glyphicon-globe"></span> <?= UOJLocale::get('_common_name') ?>
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu">
|
|
|
|
<a class="dropdown-item" href="<?= HTML::url(UOJContext::requestURI(), array('params' => array('locale' => 'zh-cn'))) ?>">中文</a>
|
|
|
|
<a class="dropdown-item" href="<?= HTML::url(UOJContext::requestURI(), array('params' => array('locale' => 'en'))) ?>">English</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-25 04:00:00 +00:00
|
|
|
|
2019-09-10 02:15:20 +00:00
|
|
|
<ul class="list-inline"><li class="list-inline-item"><?= UOJConfig::$data['profile']['oj-name'] ?></li></ul>
|
|
|
|
<?php if (UOJConfig::$data['profile']['ICP-license'] != '' && preg_match_all('/(\d+\.?\d+)/', UOJConfig::$data['profile']['ICP-license'], $ICP_number)): ?>
|
|
|
|
<p><a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=<?= $ICP_number[0][0] ?>" style="text-decoration:none;"><img src="http://uoj.ac/pictures/beian.png" /> <?= UOJConfig::$data['profile']['ICP-license'] ?></a></p>
|
|
|
|
<?php endif ?>
|
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>
|