Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
rev: v0.45.0
hooks:
- id: markdownlint
args: [--fix]
- repo: https://github.com/Riverside-Healthcare/djLint
rev: v1.36.3
rev: v1.36.4
hooks:
- id: djlint-django
args: [--reformat]
4 changes: 3 additions & 1 deletion docs/.overrides/partials/content_next.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
{% if page.meta and page.meta.hide %}
{% set hidden = "hidden" if "footer" in page.meta.hide %}
{% endif %}
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t("footer") }}" {{ hidden }}>
<nav class="md-footer__inner md-grid"
aria-label="{{ lang.t("footer") }}"
{{ hidden }}>
<!-- Link to previous page -->
{% if page.previous_page %}
{% set direction = lang.t("footer.previous") %}
Expand Down
5 changes: 4 additions & 1 deletion docs/.overrides/partials/nav-item.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
{% set indeterminate = "md-toggle--indeterminate" %}
{% endif %}
<!-- Active checkbox expands items contained within nested section -->
<input class="md-nav__toggle md-toggle {{ indeterminate }}" type="checkbox" id="{{ path }}" {{ checked }} />
<input class="md-nav__toggle md-toggle {{ indeterminate }}"
type="checkbox"
id="{{ path }}"
{{ checked }} />
<!-- Determine all nested items that are index pages -->
{% set indexes = [] %}
{% if "navigation.indexes" in features %}
Expand Down