Add source link

This commit is contained in:
Aleks Rutins 2025-06-04 20:51:15 -04:00
parent f271bd6e36
commit 66909a354f
Signed by: asr
SSH key fingerprint: SHA256:DBype7RrB3qCdOLdkvecD2Y3THOYgYOVw6jAHVgsGRQ

View file

@ -4,6 +4,7 @@ module BC
module Views module Views
class BaseLayout < ::Phlex::HTML class BaseLayout < ::Phlex::HTML
def initialize(title) def initialize(title)
super
@title = title @title = title
end end
@ -52,6 +53,10 @@ module BC
a(href: "https://opensource.org/license/mit") { "MIT license" } a(href: "https://opensource.org/license/mit") { "MIT license" }
plain "." plain "."
} }
p {
a(href: "https://git.farthergate.com/p/rad:z3pwwNxar5VGj2noYW2iYBNhVGGqm") { "Source" }
}
end end
end end
end end