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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<!DOCTYPE html> <html lang="en"> <head> <?php include_once 'head.php';?> </head> <body class="container"> <h1>News Demo</h1> <table class="table table-bordered table-hover"> <tr> <th>title</th> <th>short_content</th> <th>content</th> <th>date</th> <th>start_date</th> <th>end_date</th> <th>cover_img</th> </tr> <?php foreach ($news as $item) { ?>
<tr> <td><?= _h($item->title) ?></td> <td><?= _h($item->short_content) ?></td> <td><?= ($item->content) ?></td> <td><?= _h($item->date) ?></td> <td><?= _h($item->start_date) ?></td> <td><?= _h($item->end_date) ?></td> <td><?php if (!empty($item->cover_img)) { ?> <img src="<?= assets_url($item->cover_img) ?>"> <?php } ?></td> </tr> <?php }
?> </table>
<div class="text-center"> <?= $page_links ?> </div> <div class="col-md-12"> <a class="btn btn-default" href="<?=front_url('home/')?>">Back</a> </div>
<?php include_once 'footer.php' ?>
<?php include_once 'script.php' ?> </body> </html>
|