-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
Add "content" listing to CMS #342
Comments
The first iteration of a content listing admin modal is available in v0.7.0 The previous "add" section has been combined into this new panel. |
Just want to note that in v0.7.1 I updated the evaluation of paths to include a leading forward slash If you were manually hardcoding leading forward slashes in your templates like: <a href="/{content.path}"> This will make your paths start with double forward slashes, which will remove your TLD and break your navigation. Because of this, I'm adding a breaking label to this issue. If this happened to you, fix your site by simply removing the hardcoded forward slash: <a href="{content.path}"> |
Initially we were forcing a root relative URL (leading forward slash |
We should have a directory that lists all the content items across the site, so folks can filter by type and locate items that are not necessarily displayed in their custom frontend.
It might make sense to consolidate the existing "add" section under this panel as well, since it's all related to content.
The text was updated successfully, but these errors were encountered: