scribe/src/pages/articles/show_page.cr

23 lines
355 B
Crystal

class Articles::ShowPage < MainLayout
needs page : Page
def page_title
page.title
end
def content
h1 page.title
if subtitle = page.subtitle
para subtitle, class: "subtitle"
end
para do
text "#{page.author}"
end
article do
section do
mount PageContent, page: page
end
end
end
end