Last active
September 7, 2018 14:14
-
-
Save 9876691/d93a933de0c83b2e61388a88e8c698a4 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
abstract class GuestLayout | |
# Edit shared layout code in src/components/shared/layout.cr | |
include Shared::Layout | |
def render | |
html_doctype | |
html lang: "en" do | |
shared_layout_head | |
# Add a class to the body element. | |
body class: "authentication" do | |
# surround the content with a main element. | |
main do | |
render_flash | |
content | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment