-
Notifications
You must be signed in to change notification settings - Fork 75
docs: redoes the landing page so it looks less like a FAQ #571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
lubianat
wants to merge
31
commits into
main
Choose a base branch
from
landing-page-redo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
4c29921
remove leftover reference to bikeshed
lubianat 87eb2e6
fix broken links in a-z
lubianat 2e0f2e1
fix internal link for 0.5 (soon to change)
lubianat 70d2f4f
Fix boldface errors
lubianat 4edff7a
change links to use https
lubianat d327d10
fix anchors and refs in rfc1
lubianat b310e48
fix internal links and anchors
lubianat da50802
fix link to rfc1
lubianat a3d8cc7
Add html-proofer linking
lubianat 62f9f6d
adapt html-proofer action to this context
lubianat 7fc4159
docs: rollback auto-formatting on rfc 3
lubianat fb988cb
docs: Fix broken internal links after rollback
lubianat f704c11
move questions in the landing page to the FAQ
lubianat 5e0e75b
Draft new look for the landing page
lubianat 64930c5
feat: arrange cards in grid with placeholders
lubianat bf68534
Add images+emojis to main page
lubianat 87c407c
add DOI to paper below
lubianat 73542a3
Re-add TOC tree
lubianat 1160b79
Fix link to RFCs; re-remove TOC tree
lubianat fc58554
Make the toctree hidden
lubianat ad50db5
Improve organization of images and text on the grid
lubianat 0137080
Merge branch 'main' into landing-page-redo
lubianat e4b5913
fix css media tags
lubianat 3b8ac6d
Remove duplicated Y/Z glossary sections
Copilot ebd9958
disable pre-fetch for cards (fix navigation bug)
lubianat 1b7f1cf
Merge branch 'landing-page-redo' of github.com:ome/ngff into landing-…
lubianat b3f8bed
Remove custom css for hovering; testing if it works on RTD
lubianat 33ac9e6
Remove all custom CSS about cards
lubianat 01f2cdd
try to disable injected linkpreview from cards
lubianat 699375a
Add TODOs that document the patches over RTD extension
lubianat c51bc80
Remove source link tip
lubianat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| /* hero */ | ||
| h1:has(+ .ome-hero) { | ||
| text-align: center; | ||
| font-size: 4rem; | ||
| font-weight: 700; | ||
| letter-spacing: -0.02em; | ||
| margin-bottom: 0.5rem; | ||
| } | ||
| .ome-hero { | ||
| text-align: center; | ||
| margin: 0 auto 3rem; | ||
| } | ||
| .ome-hero p { | ||
| font-size: 1.25rem; | ||
| color: var(--pst-color-text-muted); | ||
| max-width: 42rem; | ||
| margin: 0 auto; | ||
| } | ||
| @media (max-width: 768px) { | ||
| .ome-hero h1 { font-size: 2.5rem; } | ||
| } | ||
|
|
||
| /* cards */ | ||
| .sd-row { align-items: stretch; } | ||
| .sd-col { display: flex; } | ||
| .sd-card { | ||
| border-radius: 12px; | ||
| overflow: hidden; | ||
| transition: transform 0.15s ease, box-shadow 0.15s ease; | ||
| } | ||
| .sd-card:hover { | ||
| transform: translateY(-4px); | ||
| box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); | ||
| } | ||
| .sd-card img { | ||
| aspect-ratio: 16 / 9; | ||
| object-fit: cover; | ||
| } | ||
|
|
||
| /* The snippet below is needed as sphinx-design cards with links | ||
| and the RTD link-preview extension are not playing well together. | ||
| TODO: Remove this if moving away from RTD or disabling the link-preview extension.*/ | ||
| .tooltip[data-linkpreview-href] { display: none !important; pointer-events: none !important; } | ||
| .tooltip[data-linkpreview-href] iframe { display: none !important; } | ||
This file contains hidden or 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,3 +1,13 @@ | ||
| $(document).ready( function () { | ||
| $('table.datatable').DataTable(); | ||
| } ); | ||
|
|
||
| // The snippet below is needed as sphinx-design cards with links | ||
| // and the RTD link-preview extension don't play well together. | ||
| // TODO: Remove this if moving away from RTD or disabling the link-preview extension. | ||
| document.addEventListener("readthedocs-addons-data-ready", function () { | ||
| document.querySelectorAll("a.link-preview, .sd-card a.sd-stretched-link").forEach(function (a) { | ||
| a.classList.remove("link-preview"); | ||
| a.removeAttribute("data-linkpreview-href"); | ||
| }); | ||
| }); |
This file contains hidden or 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,3 +1,4 @@ | ||
| (community-main)= | ||
| # Community | ||
|
|
||
| ## Community Calls | ||
|
|
||
This file contains hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 hidden or 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 hidden or 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
Submodule dev
updated
3 files
| +4 −8 | examples/transformations/byDimensionXarray.json | |
| +8 −8 | examples/transformations/mapAxis1.json | |
| +9 −13 | examples/transformations/sequenceSubspace1.json |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.