From 66909a354f425b869d9ab8178ccba934eccfb1d6 Mon Sep 17 00:00:00 2001 From: Aleks Rutins Date: Wed, 4 Jun 2025 20:51:15 -0400 Subject: [PATCH] Add source link --- views/base_layout.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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