-
-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathnavbar.html
More file actions
74 lines (74 loc) · 3.7 KB
/
Copy pathnavbar.html
File metadata and controls
74 lines (74 loc) · 3.7 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<nav class="navbar is-dark mb-5 border-bottom-radius" role="navigation" aria-label="main navigation">
<div class="navbar-brand ml-3">
<a class="navbar-item is-size-4 has-text-weight-bold" href="/">
VulnerableCode<span class="nexb-orange">.</span>io
</a>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="{% url 'package_search' %}">
Packages
</a>
<a class="navbar-item" href="{% url 'vulnerability_search' %}">
Vulnerabilities
</a>
<a class="navbar-item" href="https://vulnerablecode.readthedocs.io/en/latest/" target="_blank">
Documentation
</a>
</div>
</div>
<div class="navbar-end mr-3">
<div class="navbar-item navbar-item is-cursor-help">
<div class="dropdown is-right is-hoverable ">
<div class="dropdown-trigger has-text-grey-light">
API
</div>
<div class="dropdown-menu navbar-hover-div" role="menu">
<div class="dropdown-content">
<div class="dropdown-item about-hover-div">
If you want to try the JSON REST API for VulnerableCode.io, please send an email to <a href="mailto:info@nexb.com">info@nexb.com</a> with "VulnerableCode API Key" in the email title. API access is limited to a maximum of 1000 package-versions per request.
</div>
</div>
</div>
</div>
</div>
<div class="navbar-item navbar-item is-cursor-help">
<div class="dropdown is-right is-hoverable ">
<div class="dropdown-trigger has-text-grey-light">
About
</div>
<div class="dropdown-menu navbar-hover-div" role="menu">
<div class="dropdown-content">
<div class="dropdown-item about-hover-div">
A free and open vulnerabilities database and the packages they impact.
And the tools to aggregate and correlate these vulnerabilities.
<ul>
<li>
Sponsored by NLnet <a href="https://nlnet.nl/project/vulnerabilitydatabase/">
https://nlnet.nl/project/vulnerabilitydatabase/</a> for
<a href="https://www.aboutcode.org/">https://www.aboutcode.org/</a>
</li>
<li>
Chat at <a href="https://gitter.im/aboutcode-org/vulnerablecode">
https://gitter.im/aboutcode-org/vulnerablecode</a>
</li>
<li>
Docs at <a href=https://vulnerablecode.readthedocs.org/>
https://vulnerablecode.readthedocs.org/</a>
</li>
<li>
Source code and issues at <a href="https://github.com/nexB/vulnerablecode">https://github.com/nexB/vulnerablecode</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="navbar-item navbar-item is-cursor-help">
<div class="dropdown-trigger has-text-grey-light">
v{{ VULNERABLECODE_VERSION }}
</div>
</div>
</div>
</nav>