Created
June 23, 2011 18:01
-
-
Save logankoester/1043138 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
navlink: | |
data-transition: fade | |
sidebar: | |
data-role: sidebar | |
data-transition: slide | |
data-position: left | |
# ... |
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
#content(app_helper) | |
#header | |
%ul.navigation(app_toolbar) | |
%li.navigation(app_navlink) Link 1 | |
%li.navigation(app_navlink) Link 2 | |
#main(app_window) | |
Hello World | |
#sidebar(app_sidebar) | |
#footer |
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
def method_missing(meth) | |
if meth ~= /^app_(.*)$/ | |
ATTR_CONFIG[$1].to_hash | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment