Open
Conversation
- update README.md
- add instruction for contentFor
supports for extended block of HTML to be included in the layout. Inspired by ejs-layout
Owner
|
Sounds great! Apologies if it takes a few days to get to testing/merging |
|
+1 |
|
This would be awesome. I'm wondering about one thing, when is stopped the code included into a contentFor in the View? I mean, if I want to set some contentFor, in the example it looks like it pass all the code until the next contentFor. But what if I want to have some kind of end to have source code that won't be in any contentFor? <%- contentFor('leftNav') -%>
<ul>
...
</ul>
// Stop it, the block for leftNav ends here.
<%- contentForEnd('leftNav') -%>
// This isn't in any contentFor block.
<div>tralala</div>
// Another contentFor block?
<%- contentFor('someOtherSection') -%>
....Here we could end a block manually to stop and it would allow to have some code after the block that belongs to the view. The issue with the current solution is that we need to set the contentFor blocks at the end of the file, else we wouldn't be able to "stop" a block. I hope I've been clear. |
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.
Inspired by ejs-layout, I update the code to support
contentForblock with following syntax:inside the view
inside the layout