mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-12 23:38:41 +00:00
fix: use <ul>
This commit is contained in:
parent
c4792a3b30
commit
a09e3a21e7
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$blogs = DB::selectAll("select blogs.id, title, poster, post_time from important_blogs, blogs where is_hidden = 0 and important_blogs.blog_id = blogs.id order by level desc, important_blogs.blog_id desc limit 5");
|
$blogs = DB::selectAll("select blogs.id, title, poster, post_time from important_blogs, blogs where is_hidden = 0 and important_blogs.blog_id = blogs.id order by level desc, important_blogs.blog_id desc limit 5");
|
||||||
$countdowns = DB::selectAll("select * from countdowns order by endtime asc limit 5")
|
$countdowns = DB::selectAll("select * from countdowns order by endtime asc")
|
||||||
?>
|
?>
|
||||||
<?php echoUOJPageHeader(UOJConfig::$data['profile']['oj-name-short']) ?>
|
<?php echoUOJPageHeader(UOJConfig::$data['profile']['oj-name-short']) ?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -56,20 +56,20 @@
|
|||||||
<div class="card card-default mt-4">
|
<div class="card card-default mt-4">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h3 class="card-title" style="font-size: 1.25rem">倒计时</h3>
|
<h3 class="card-title" style="font-size: 1.25rem">倒计时</h3>
|
||||||
<div>
|
<ul class="pl-4 mb-0">
|
||||||
<?php foreach ($countdowns as $countdown): ?>
|
<?php foreach ($countdowns as $countdown): ?>
|
||||||
<?php
|
<?php
|
||||||
$enddate = strtotime($countdown['endtime']);
|
$enddate = strtotime($countdown['endtime']);
|
||||||
$nowdate = time();
|
$nowdate = time();
|
||||||
$diff = floor(($enddate - $nowdate) / (24 * 60 * 60));
|
$diff = floor(($enddate - $nowdate) / (24 * 60 * 60));
|
||||||
?>
|
?>
|
||||||
<p class="card-text">
|
<li>
|
||||||
<?php if ($diff > 0): ?>
|
<?php if ($diff > 0): ?>
|
||||||
距离 <b><?= $countdown['title'] ?></b> 还有 <b><?= $diff ?></b> 天。
|
距离 <b><?= $countdown['title'] ?></b> 还有 <b><?= $diff ?></b> 天。
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<b><?= $countdown['title'] ?></b> 已开始。
|
<b><?= $countdown['title'] ?></b> 已开始。
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</p>
|
</li>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -77,7 +77,7 @@
|
|||||||
<div class="card card-default mt-4">
|
<div class="card card-default mt-4">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h3 class="card-title" style="font-size: 1.25rem">友情链接</h3>
|
<h3 class="card-title" style="font-size: 1.25rem">友情链接</h3>
|
||||||
<ul class="pl-4">
|
<ul class="pl-4 mb-0">
|
||||||
<li>
|
<li>
|
||||||
<a href="http://www.sjzez.com">石家庄二中</a>
|
<a href="http://www.sjzez.com">石家庄二中</a>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user