-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bootstrap 4 is past end of life. Updated to Bootstrap 5 to fix XSS vulnerability. https://github.com/artefactual-labs/AIPscan/security/dependabot/39
- Loading branch information
Showing
7 changed files
with
39 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<a class="navbar-brand" href="/">AIPscan</a> | ||
<div class="navbar-collapse" id="navbarNavDropdown"> | ||
<ul class="navbar-nav"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="/">AIPscan</a> | ||
<div class="navbar-collapse" id="navbarNavDropdown"> | ||
<ul class="navbar-nav"> | ||
|
||
{% for section in navbar.sections %} | ||
<li class="nav-item"> | ||
<a class="nav-link {{ 'active fw-bold' if section.is_active(request) else '' }}" href="{{ section.get_url() }}">{{ section.label }}</a> | ||
</li> | ||
{% endfor %} | ||
|
||
{% for section in navbar.sections %} | ||
<li class="nav-item"> | ||
<a class="nav-link {{ 'active fw-bold' if section.is_active(request) else '' }}" href="{{ section.get_url() }}">{{ section.label }}</a> | ||
<a class="nav-link" href="{{ url_for('api.doc') }}" target="apiframe">API</a> | ||
</li> | ||
{% endfor %} | ||
|
||
<li class="nav-item"> | ||
<a class="nav-link" href="{{ url_for('api.doc') }}" target="apiframe">API</a> | ||
</li> | ||
</ul> | ||
</ul> | ||
</div> | ||
<span style="font-style: italic" class="navbar-text">Crawl Archivematica AIPs to provide repository-wide reporting</span> | ||
</div> | ||
<span style="font-style: italic" class="navbar-text">Crawl Archivematica AIPs to provide repository-wide reporting</span> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters