diff --git a/views/base_layout.rb b/views/base_layout.rb index c0562bc..6fd0a89 100644 --- a/views/base_layout.rb +++ b/views/base_layout.rb @@ -4,6 +4,7 @@ module BC module Views class BaseLayout < ::Phlex::HTML def initialize(title) + super @title = title end @@ -40,7 +41,7 @@ module BC p { plain "Built with " a(href: "https://docs.farthergate.com/s/phlexite") { "Phlexite" } - plain ", " + plain ", " a(href: "https://mauriciopoppe.github.io/function-plot/") { "Function Plot" } plain ", and " a(href: "https://katex.org/") { "$\KaTeX$" } @@ -52,6 +53,10 @@ module BC a(href: "https://opensource.org/license/mit") { "MIT license" } plain "." } + + p { + a(href: "https://git.farthergate.com/p/rad:z3pwwNxar5VGj2noYW2iYBNhVGGqm") { "Source" } + } end end end