From fa5890295e949a5761065fa840bd03ef85c6e77a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=94lain?= Date: Wed, 2 Mar 2022 00:55:24 +0200 Subject: [PATCH] Add #standwithukraine link to donate top banner Add a support Ukraine HTML link banner (that leads to Red Cross donations) inspired by anttispitkanen's initiative: https://gist.github.com/anttispitkanen/cfc6df6b8cba3b6d02f752fc3ddf0637 --- src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 2b20206..1c5d278 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -75,7 +75,11 @@ int main() { // Social media center ->addChild(new Tag("p", R"(Twitter / Discord / Github / Twitch)")); - + + // #standwithukraine banner + center + ->addChild(new Tag("p", R"( 💙 #standwithukraine 💛)")); + // Print generated html to stdout html.show(); }