-
-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathnavbar.html
More file actions
85 lines (81 loc) · 3.9 KB
/
Copy pathnavbar.html
File metadata and controls
85 lines (81 loc) · 3.9 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
75
76
77
78
79
80
81
82
83
84
85
{% load utils %}
{% if STAGING %}
<div class="notification is-danger has-text-centered is-fixed-top my-0" style="border-radius: 0;">
<span class="icon">
<i class="fa fa-exclamation-triangle"></i>
</span>
<strong> Staging Environment:</strong>
Content and features may be unstable or change without notice.
</div>
{% endif %}
<nav class="navbar is-dark mb-5 border-bottom-radius" role="navigation" aria-label="main navigation"
style="border-radius: 0;">
<div class="navbar-brand ml-3">
<a class="navbar-item is-size-4 has-text-weight-bold {% active_item 'home' %}" href="{% url 'home' %}">
VulnerableCode<span class="nexb-orange">.</span>io
</a>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item {% active_item 'package_search' %}" href="{% url 'package_search' %}">
Packages
</a>
<a class="navbar-item {% active_item 'vulnerability_search' %}" href="{% url 'vulnerability_search' %}">
Vulnerabilities
</a>
<a class="navbar-item {% active_item 'package_search_v2' %}" href="{% url 'package_search_v2' %}">
V2
</a>
<a class="navbar-item {% active_item 'detection_rule_search' %}" href="{% url 'detection_rule_search' %}">
Detection Rules
</a>
<a class="navbar-item" href="https://vulnerablecode.readthedocs.io/en/latest/" target="_blank">
Documentation
</a>
</div>
</div>
<div class="navbar-end mr-3">
<a class="navbar-item {% active_item 'dashboard' %}" href="{% url 'dashboard' %}">
Pipeline Dashboard
</a>
<a class="navbar-item {% active_item 'api_user_request' %}" href="{% url 'api_user_request' %}" target="_blank">
API
</a>
<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">
VulnerableCode is a free and open database of software package vulnerabilities.
<ul>
<li>
Live chat at <a href="https://gitter.im/aboutcode-org/vulnerablecode">
https://gitter.im/aboutcode-org/vulnerablecode</a>
</li>
<li>
Source code and support at <a
href="https://github.com/nexB/vulnerablecode">https://github.com/nexB/vulnerablecode</a>
</li>
<li>
Docs at <a href=https://vulnerablecode.readthedocs.org />
https://vulnerablecode.readthedocs.org/</a>
</li>
<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>
</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>