scribe/src/pages/main_layout.cr

24 lines
378 B
Crystal
Raw Normal View History

2021-05-01 23:02:08 +02:00
abstract class MainLayout
include Lucky::HTMLPage
abstract def content
abstract def page_title
def page_title
"Welcome"
end
def render
html_doctype
html lang: "en" do
mount Shared::LayoutHead, page_title: page_title, context: context
body do
mount Shared::FlashMessages, context.flash
content
end
end
end
end