Skip to content
Open
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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ repos:
hooks:
- id: check-github-workflows
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.20
rev: v0.16.0
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v2.1.0
rev: v2.3.0
hooks:
- id: mypy
exclude: manage.py
Expand All @@ -46,18 +46,18 @@ repos:
- django-multiselectfield
- django-tables2
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.49.0
rev: v0.49.1
hooks:
- id: markdownlint-fix
exclude: ^main/static/assets/
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
rev: v2.4.3
hooks:
- id: codespell
args: [-I, .codespell_ignore.txt]
exclude: ^main/static/assets/|^package-lock.json$|^direct_webapp/fixtures/framework-2-0.json$
- repo: https://github.com/djlint/djLint
rev: v1.40.3
rev: v1.43.0
hooks:
- id: djlint-django
- id: djlint-reformat-django
3 changes: 2 additions & 1 deletion main/templates/main/base.auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
</p>
</div>
<div class="w-50 bg-size-cover bg-repeat-0 bg-position-center d-none d-lg-block"
style="background-image: url({% static 'assets/img/auth/cover.webp' %})"></div>
style="background-image: url({% static 'assets/img/auth/cover.webp' %})">
</div>
</div>
</main>
</body>
Expand Down
6 changes: 4 additions & 2 deletions main/templates/main/pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
{% endblock title %}
{% block content %}
<section class="bg-dark position-relative py-5">
<div class="d-none d-dark-mode-block position-absolute top-0 start-0 w-100 h-100"></div>
<div class="d-none d-dark-mode-block position-absolute top-0 start-0 w-100 h-100">
</div>
<div class="container position-relative z-2 py-5 mb-4 mb-sm-5"
data-bs-theme="dark">
<div class="row pb-5 mb-2 mb-sm-0 mb-lg-3">
Expand Down Expand Up @@ -46,7 +47,8 @@ <h1 class="display-2 pb-2 pb-sm-3">Building a stronger future for digital resear
<div class="rounded-5 overflow-hidden">
<div class="jarallax ratio ratio-16x9" data-jarallax data-speed="0.6">
<div class="jarallax-img"
style="background-image: url({% static 'assets/img/landing/workshop-stickies.webp' %})"></div>
style="background-image: url({% static 'assets/img/landing/workshop-stickies.webp' %})">
</div>
</div>
</div>
<div class="row pt-5 mt-n2 mt-sm-0 mt-md-2 mt-lg-4 mt-xl-5">
Expand Down
3 changes: 2 additions & 1 deletion main/templates/main/snippets/hero.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
<svg class="position-absolute start-0 bottom-0 w-100 h-100"
viewBox="0 0 3000 185.4"
xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor" d="M3000,0v185.4H0V0c496.4,115.6,996.4,173.4,1500,173.4S2503.6,115.6,3000,0z"></path>
<path fill="currentColor" d="M3000,0v185.4H0V0c496.4,115.6,996.4,173.4,1500,173.4S2503.6,115.6,3000,0z">
</path>
</svg>
</div>
</div>
Expand Down