From 1fb1ca6cceee4ab13a8fb303cb489c65c7ddccc5 Mon Sep 17 00:00:00 2001 From: Kouya Heika Date: Thu, 23 Apr 2026 03:04:36 -0500 Subject: [PATCH] Add credits to bottom of the page --- src/main.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.h b/src/main.h index a8d45f7..8b25b20 100644 --- a/src/main.h +++ b/src/main.h @@ -300,6 +300,14 @@ mxml_node_t* generate_index() { } } mxmlNewElement(colgroup, "col"); + + mxmlNewElement(center, "hr"); + mxml_node_t* credit_text = mxmlNewElement(center, "p"); + mxmlNewText(credit_text, 0, "Powered by "); + mxml_node_t* prj_link = mxmlNewElement(credit_text, "a"); + mxmlElementSetAttr(prj_link, "href", "https://git.canithesis.org/Canithesis/stethoscope"); + mxmlNewText(prj_link, 0, "Stethoscope"); + return doc; } #endif \ No newline at end of file