Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c377e9f
make user and group id use the numeric UID/GID available
jh-RLI Jun 17, 2026
44b24bb
remove certain directories and files from docker image
jh-RLI Jun 17, 2026
726d193
- versions now keeps only entries that are real directories and whose…
jh-RLI Jun 17, 2026
1d36044
Refactor oeo version read
jh-RLI Jun 17, 2026
4a2c65c
Change files
bmlancien Jun 23, 2026
a50e420
Replace hero section in homepage
bmlancien Jun 23, 2026
17c81f8
Add platform features section
bmlancien Jun 23, 2026
24c5751
Add platform capabilities section
bmlancien Jun 23, 2026
4765be0
Add further hex icons
bmlancien Jun 23, 2026
2d38764
Add academy section
bmlancien Jun 24, 2026
e18c792
Add developer resources section
bmlancien Jun 24, 2026
9ebbb2a
Improve header styling in homepage
bmlancien Jun 24, 2026
1525089
Improve footer styling on homepage
bmlancien Jun 24, 2026
b2757d7
Remove stray macOS AppleDouble files from repo
bmlancien Jun 24, 2026
7b19485
Improve accessibility on homepage
bmlancien Jun 24, 2026
0d05b27
Add space between hamburger menu icon and logo
bmlancien Jun 24, 2026
825df2c
Improve responsive behavior in Core Platform Features
bmlancien Jun 24, 2026
d9e9986
Improve homepage header
bmlancien Jun 24, 2026
d0ae4b6
Add scroll-triggered fade + translate to cards and sections
bmlancien Jun 24, 2026
d76e0b6
Respect prefers-reduced-motion
bmlancien Jun 24, 2026
f5fcae4
Refactor homepage into modules
bmlancien Jun 24, 2026
d135ff9
Make a few styling changes and fixes
bmlancien Jun 24, 2026
5cb0cc2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 24, 2026
e3b3f42
Add changelog entry
bmlancien Jun 24, 2026
6b14ca2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 24, 2026
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
23 changes: 23 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Python virtualenvs (note: "venv*" does NOT match ".venv" — list both)
venv*
env*
.venv/
.env/

# local secrets / generated config
oeplatform/securitysettings.py

# node deps (installed inside the image / named volume)
node_modules/

# VCS + large runtime data that is bind-mounted, never needed at build time
.git/
.gitignore
ontologies/
media/
static/
data/

# editor / OS / build noise
.vscode/
.idea/
__pycache__/
*.pyc
*.bak
*.bak-*
podman/
6 changes: 6 additions & 0 deletions base/static/css/base-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ body {
background-image: unset;
}

@media screen and (max-width: 991.98px) {
.navbar-toggler + .navbar-brand {
margin-left: 2rem;
}
}

.site-header {
text-align: center;
width: 100%;
Expand Down
Loading
Loading