Last active
August 29, 2015 14:04
-
-
Save sartak/4864919d315724a9f062 to your computer and use it in GitHub Desktop.
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
<html> | |
<body> | |
: block outer -> { | |
<h1>hello world</h1> | |
<nav>...</nav> | |
<div> | |
: block inner -> { } | |
: block footer -> { | |
copyright | |
: } | |
</div> | |
: } | |
</body> | |
</html> |
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
: cascade "1-wrapper.tx" | |
: around inner -> { | |
<p>this works fine and gets the footer</p> | |
: } |
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
: cascade "1-wrapper.tx" | |
: around outer -> { | |
<p>this page uses the outer "body" block but still wants to reuse that | |
existing "footer" block</p> | |
:block footer | |
: } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment