scribe/src/components/shared/layout_footer.cr
Edward Loveall 4b354c659f
Add FAQ
2021-10-23 15:34:13 -04:00

12 lines
214 B
Crystal

class Shared::LayoutFooter < BaseComponent
def render
section do
footer do
para do
a "Source code", href: "https://sr.ht/~edwardloveall/scribe"
end
end
end
end
end