Redesign editor.opencast.org landing page - #1720
Open
lkiesow wants to merge 1 commit into
Open
Conversation
The current design has some overflows for longer branch names like `develop` which makes it look a bit broken. It also leaves aa lot of free and unused space. More than that, the deployment is very complicated with the main page being included in a huge `echo` command. The page is now a regular HTML file at `.github/assets/index.html` with a `<!-- VERSIONS -->` marker where the workflow injects the list of deployed versions. Stylesheet and Opencast logo are inlined, so the landing page is a single self-contained file making it much easier to deploy. The page itself got a fresh look as well: a card with the headline and a short explanation next to a grid of version buttons, a system font stack, dark mode support and a layout which collapses to a single column on narrow screens.
Member
|
Since you are already looking at this, I would like to make a request. Could you make it so the unsupported versions (r/17.x, r/18.x) are dropped from the list? Not only are we not supporting them anymore, but they are probably also using either develop.opencast.org or stable.opencast.org as their backend, which are running different Opencast versions. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The current design has some overflows for longer branch names like
developwhich makes it look a bit broken. It also leaves aa lot of free and unused space.More than that, the deployment is very complicated with the main page being included in a huge
echocommand.The page is now a regular HTML file at
.github/assets/index.htmlwith a<!-- VERSIONS -->marker where the workflow injects the list of deployed versions. Stylesheet and Opencast logo are inlined, so the landing page is a single self-contained file making it much easier to deploy.The page itself got a fresh look as well: a card with the headline and a short explanation next to a grid of version buttons, a system font stack, dark mode support and a layout which collapses to a single column on narrow screens.