forked from BNUACM/bnuoj-web-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.php
More file actions
27 lines (26 loc) · 707 Bytes
/
Copy pathnews.php
File metadata and controls
27 lines (26 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
$pagetitle="News";
include_once("header.php");
include_once("functions/sidebars.php");
?>
<div class="span9">
<table class="table table-hover table-striped" id="newslist">
<thead>
<tr>
<th width="15%">News ID</th>
<th width="40%">Title</th>
<th width="25%">Last Edit Time</th>
<th width="15%">Author</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody></tbody>
</table>
</div>
<div class="span3">
<?=sidebar_common()?>
</div>
<script type="text/javascript" src="js/news.js"></script>
<?php
include("footer.php");
?>