diff options
Diffstat (limited to 'src/pages/auth_layout.cr')
-rw-r--r-- | src/pages/auth_layout.cr | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/pages/auth_layout.cr b/src/pages/auth_layout.cr new file mode 100644 index 0000000..c2ac1b0 --- /dev/null +++ b/src/pages/auth_layout.cr @@ -0,0 +1,27 @@ +abstract class AuthLayout + include Lucky::HTMLPage + + abstract def content + abstract def page_title + + # The default page title. It is passed to `Shared::LayoutHead`. + # + # Add a `page_title` method to pages to override it. You can also remove + # This method so every page is required to have its own page title. + def page_title + "Welcome" + end + + def render + html_doctype + + html lang: "en" do + mount Shared::LayoutHead, page_title: page_title + + body do + mount Shared::FlashMessages, context.flash + content + end + end + end +end |