forked from nextcloud/nextcloud.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-advisories.php
29 lines (29 loc) · 1.12 KB
/
page-advisories.php
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
<div class="row page-content-header">
<div class="col-md-5">
<h1>Security Advisories</h1>
</div>
<div class="col-md-5 col-md-offset-2">
<form role="form" action="/security/advisory/" method="get">
<input name="id" type="text" class="form-control" placeholder="Advisory identifier">
<button type="submit" class="btn btn-default">Go</button>
</form>
</div>
</div>
<div class="sub-nav"><a href="/security">Security page</a> | <a href="/security/threat-model">Threat Model</a></div>
<div style="margin-top: 20px;"><p>You can <a href="<?php echo get_template_directory_uri(); ?>/advisories/advisories.rss">follow our advisories via RSS</a>.</p></div>
<div class="row" style="
margin-top: 20px;
">
<div class="col-md-4">
<h2>Nextcloud Server</h2><br>
<?php get_template_part('advisories/server-list-part'); ?>
</div>
<div class="col-md-4">
<h2>Desktop Clients</h2><br>
<?php get_template_part('advisories/desktop-list-part'); ?>
</div>
<div class="col-md-4">
<h2>Mobile Clients</h2><br>
<?php get_template_part('advisories/mobile-list-part'); ?>
</div>
</div>