-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathindex.html
38 lines (36 loc) · 1.37 KB
/
index.html
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
36
37
38
{% extends "base.html" %}
{% load widget_tweaks %}
{% block title %}
VulnerableCode Home
{% endblock %}
{% block content %}
<section class="section pt-2">
<div class="container">
<div class="columns is-centered mb-5 mt-2">
<div class="column is-full-tablet is-full-desktop">
{% include "package_search_box.html" %}
</div>
</div>
<div class="columns is-centered mb-5">
<div class="column is-full-tablet is-full-desktop">
{% include "vulnerability_search_box.html" %}
</div>
</div>
<div class="notification is-info is-light has-text-centered">
<p class="is-size-6 has-text-grey-dark has-text-centered mb-3">
<strong>VulnerableCode</strong> aggregates software
vulnerabilities from multiple public advisory sources
and presents their details along with their affected
packages and fixed-by packages identified by
Package URLs (PURLs).
</p>
<p class="is-size-5">
<strong>What's new in this Release:</strong>
<a href="{{ release_url }}" target="_blank" class="has-text-link is-underlined">
Check out latest updates here!
</a>
</p>
</div>
</div>
</section>
{% endblock %}