-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
31 lines (22 loc) · 860 Bytes
/
view.php
File metadata and controls
31 lines (22 loc) · 860 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
28
29
30
31
<?php include __DIR__.'/header.php';?>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading"><?php echo $type;?></h1>
<p class="lead text-muted">
版本号:<?php echo $version;?>
</p>
<a style="margin-left: 10px;" class="btn btn-primary my-2" href="/download/<?php echo $type;?>?version=<?php echo $version; ?>">下载</a>
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<?php $mk = $out[$type]['lists'][$version]['readme'];?>
<?php
$Parsedown = new Parsedown();
echo $Parsedown->text($mk);
?>
</div>
</div>
</main>
<?php include __DIR__.'/footer.php';?>