2016-07-18 16:39:37 +00:00
|
|
|
<?php
|
|
|
|
if (!isset($ShowPageFooter)) {
|
|
|
|
$ShowPageFooter = true;
|
|
|
|
}
|
2022-09-18 04:58:35 +00:00
|
|
|
?>
|
2016-07-18 16:39:37 +00:00
|
|
|
</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>
|
2022-09-21 05:27:01 +00:00
|
|
|
|
|
|
|
<p><?= UOJLocale::get('server time') ?>: <?= UOJTime::$time_now_str ?></p>
|
|
|
|
<p>
|
2022-09-22 03:10:57 +00:00
|
|
|
<a href="https://github.com/renbaoshuo/S2OJ<?= UOJConfig::$data['profile']['s2oj-version'] == "dev" ? '' : '/tree/' . UOJConfig::$data['profile']['s2oj-version'] ?>">S2OJ (build: <?= UOJConfig::$data['profile']['s2oj-version'] ?>)</a>
|
2022-09-21 05:27:01 +00:00
|
|
|
<?php if (UOJConfig::$data['profile']['ICP-license'] != ''): ?>
|
|
|
|
| <a target="_blank" href="https://beian.miit.gov.cn" style="text-decoration:none;"><?= UOJConfig::$data['profile']['ICP-license'] ?></a>
|
|
|
|
<?php endif ?>
|
|
|
|
</p>
|
2016-07-18 16:39:37 +00:00
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
<!-- /container -->
|
|
|
|
</body>
|
|
|
|
</html>
|