forked from nextcloud/nextcloud.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-advisories.php
35 lines (33 loc) · 1.47 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
33
34
35
<head>
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/pages/generic.css" rel="stylesheet">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/assets/css/vendor/dsgvo-video-embed.min.css">
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/dsgvo-video-embed.min.js"></script>
<div class="background generic-background">
<img class="pattern" src="<?php echo get_template_directory_uri(); ?>/assets/img/common/empty1x1.png" alt="">
<div class="container">
<div class="col-md-6 topheader">
<h1><?php echo $l->t('Security Advisories');?></h1>
</div>
</div>
</div>
<section class="content">
<div class="container">
<div class="row page-content-header">
<div class="col-md-3 col-md-offset-9">
<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-12">
<?php get_template_part('advisories/full-list');?>
</div>
</div>
</div>
</section>