We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would be great if we could have splitting happening at the layout level, in addition to just documents.
For instance we have the document src/documents/index.html that has:
src/documents/index.html
--- layout: page title: "Index" --- Welcome
Then we have the layout src/layouts/page.html.eco that has:
src/layouts/page.html.eco
--- layout: default --- <article> <h1><%- @document.title %></h1> <div><%- @content %></div> </article>
Then we have the layout src/layouts/default.html.eco that has:
src/layouts/default.html.eco
<html> <head> <title><%- @document.title %></article> </head> <body> <%- @content %> </body> </html>
Now say we want to split off at the page level, so we should be able to update src/layouts/page.html.eco with:
--- layout: default additionalLayouts: ['data'] --- <article> <h1><%- @document.title %></h1> <div><%- @content %></div> </article>
The text was updated successfully, but these errors were encountered:
Good idea.
Let me see how easily I can make it happen
Sorry, something went wrong.
Interesting, would solve the problem of having to inject additionalLayouts in the document models.
additionalLayouts
No branches or pull requests
Would be great if we could have splitting happening at the layout level, in addition to just documents.
For instance we have the document
src/documents/index.html
that has:Then we have the layout
src/layouts/page.html.eco
that has:Then we have the layout
src/layouts/default.html.eco
that has:Now say we want to split off at the page level, so we should be able to update
src/layouts/page.html.eco
with:The text was updated successfully, but these errors were encountered: