-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.php
More file actions
53 lines (37 loc) · 1.47 KB
/
welcome.php
File metadata and controls
53 lines (37 loc) · 1.47 KB
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
51
52
53
<?php include __DIR__.'/header.php';?>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<p class="lead text-muted">
软件包管理中心,仅限公司内部使用。
</p>
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<?php foreach($out as $k=>$v){?>
<div class="col-md-4">
<div class="card mb-4 box-shadow">
<img class="card-img-top" data-src="holder.js/100px225?theme=thumb&bg=55595c&fg=eceeef&text=<?php echo $k;?>" alt="<?php echo $k;?>">
<div class="card-body">
<p class="card-text">
<?php
$Parsedown = new Parsedown();
echo $Parsedown->text($v['tip']);
?>
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="/wiki/<?php echo $k;?>" class="btn btn-sm btn-outline-secondary">查看</a>
</div>
</div>
</div>
</div>
</div>
<?php }?>
</div>
</div>
</div>
</main>
<?php include __DIR__.'/footer.php';?>