This repository was archived by the owner on Oct 8, 2021. It is now read-only.
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
[FEATURE] Parameters for pages #471
Closed
Description
I haven't spelunked through the whole codebase yet, but this is a feature that would be really helpful.
Scenario:
- I have one file (index.html) with multiple pages (ie "parent", "child")
- I want to load the "child" page from a list in the "parent" page (but with data loaded via some JSON resource for the "child")
- This would require an "id" parameter, so the link url would be something like "#child?id=123"
- When the "child" page is loaded, then we'd somehow have the "id=123" param available to load via AJAX and populate the page.
Currently we can't do this b/c we can't have a "child?id=123" page for every single ID on "index.html". If we could do that, we could also link to the full url directly ("index.html#child?id=123") to get that "child" resource.
If there's not already a way to do this, I'd be willing to help out on this feature if anyone is 'int.