Welcome to mirror list, hosted at ThFree Co, Russian Federation.

page-advisories.php - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8e09c9051790e2bb7bef66e5ed3083847733f78 (plain)
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>&nbsp;&nbsp;|&nbsp;&nbsp;<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>