Browse code

Add AGPL link to footer

Joseph Weston authored on 08/12/2021 04:27:46
Showing 1 changed files
... ...
@@ -285,8 +285,14 @@
285 285
       (for [[index item] (enumerated @history)]
286 286
         ^{:key index} [:li [input (item :input)] [output (item :output)]])]))
287 287
 
288
+(def agpl-link
289
+    [:a
290
+     {:href "https://www.gnu.org/licenses/agpl-3.0.html"}
291
+     "GNU Affero Public License"])
292
+
288 293
 (defn footer []
289 294
   [:footer {:class (styles/footer)}
295
+   [:span.license agpl-link]
290 296
    [:span.version (spaced "version:" config/version)]])
291 297
 
292 298
 (defn main-panel []