scribe/src/pages/articles/show_page.cr

16 lines
268 B
Crystal

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