Last active
December 21, 2015 17:49
-
-
Save paulschwarz/6342647 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<head> | |
</head> | |
<body> | |
I'm the chrome. | |
<div id="a big div that wraps admin, where's the problem?"> | |
I'm the admin menu | |
{{>admin_menu}} | |
I'm the admin content | |
{{>content}} | |
</div> | |
</body> | |
</html> |
This file contains 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> | |
<head> | |
</head> | |
<body> | |
I'm the chrome. | |
{{>content}} | |
</body> | |
</html> |
This file contains 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
<div id="a big div that wraps admin, where's the problem?"> | |
I'm the admin menu | |
{{>admin_menu}} | |
I'm the admin content | |
{{>content}} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment