forked from nextcloud/nextcloud.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-advisories.php
32 lines (32 loc) · 1.21 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
30
31
32
<div class="row page-content-header">
<div class="col-md-5">
<h1><?php echo $l->t('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"><?php echo $l->t('<a href="/security">Security page</a> | <a href="/security/threat-model">Threat Model</a>');?></div>
<div style="margin-top: 20px;"><p><?php echo $l->t('You can <a href="/advisories/advisories.rss">follow our advisories via RSS</a>.');?></p></div>
<div class="row" style="
margin-top: 20px;
">
<div class="col-md-4">
<h2><?php
echo $l->t('Nextcloud Server');?></h2><br>
<?php get_template_part('advisories/server-list-part');?>
</div>
<div class="col-md-4">
<h2><?php
echo $l->t('Desktop Clients');?></h2><br>
<?php get_template_part('advisories/desktop-list-part');?>
</div>
<div class="col-md-4">
<h2><?php
echo $l->t('Mobile Clients');?></h2><br>
<?php get_template_part('advisories/mobile-list-part');?>
</div>
</div>