From 3dceaa0741cc31025b49731cf4648236e606ef84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleks=20R=C5=ABti=C5=86=C5=A1?= Date: Tue, 28 Jan 2025 20:47:31 -0500 Subject: [PATCH] bring footer contents back into existence --- views/base_layout.rb | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/views/base_layout.rb b/views/base_layout.rb index 4507c84..bed60b4 100644 --- a/views/base_layout.rb +++ b/views/base_layout.rb @@ -37,13 +37,20 @@ module BC a(href: "https://farthergate.com") { "Aleks Rūtiņš" } end - unsafe_raw { -<Built with Cheetah, Function Plot, and $\KaTeX$

-

- With the exception of pasted graphics, where the source is noted, this work is licensed under a Creative Commons Attribution License CC BY-NC-SA 4.0. All code contained herein is licensed under an MIT license. -

-EOF + p { + plain "Built with" + a(href: "https://docs.farthergate.com/s/phlexite") { "Phlexite" } + plain ", " + a(href: "https://mauriciopoppe.github.io/function-plot/") { "Function Plot" } + plain ", and " + a(href: "https://katex.org/") { "$\KaTeX$" } + } + p { + plain "With the exception of pasted graphics, where the source is noted, this work is licensed under a " + a(href: "https://creativecommons.org/licenses/by-nc-sa/4.0/") {"Creative Commons Attribution License CC BY-NC-SA 4.0" } + plain ". All code contained herein is licensed under an " + a(href: "https://opensource.org/license/mit") { "MIT license" } + plain "." } end end