From ed4800ecff6b7cb46601acdad6ed411f46d2fae7 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 7 Aug 2025 22:55:54 +0200 Subject: [PATCH 1/9] Test social links in the footer --- mkdocs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index 466463564..c19e63ce8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -79,6 +79,9 @@ plugins: - rss extra: + social: + - icon: fontawesome/brands/discord + link: https://discord.gg/HZ5AecN3KX analytics: provider: google property: G-7FLS2HCYHH From 25af44893ff9955f7fd10eef9c5e83e2fcc7889b Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 7 Aug 2025 23:15:18 +0200 Subject: [PATCH 2/9] put Discord link in the header --- src/overrides/partials/header.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/overrides/partials/header.html b/src/overrides/partials/header.html index 967330642..75e1bcfae 100644 --- a/src/overrides/partials/header.html +++ b/src/overrides/partials/header.html @@ -87,6 +87,12 @@
{% include "partials/source.html" %}
+ +
From cb1a8deee9c070acbe8c4447a45370e88096ea25 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 7 Aug 2025 23:22:22 +0200 Subject: [PATCH 3/9] Update header.html --- src/overrides/partials/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overrides/partials/header.html b/src/overrides/partials/header.html index 75e1bcfae..80e46dc1e 100644 --- a/src/overrides/partials/header.html +++ b/src/overrides/partials/header.html @@ -90,7 +90,7 @@ From 9d70fde7d15cfd780b2da8d11e0f99f61d0cd2c1 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 7 Aug 2025 23:29:29 +0200 Subject: [PATCH 4/9] Update header.html --- src/overrides/partials/header.html | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/overrides/partials/header.html b/src/overrides/partials/header.html index 80e46dc1e..ebb439bc8 100644 --- a/src/overrides/partials/header.html +++ b/src/overrides/partials/header.html @@ -86,20 +86,15 @@ {% if config.repo_url %}
{% include "partials/source.html" %} -
- - - - {% endif %} {% if "navigation.tabs.sticky" in features %} From 806502e6d46f14ce25479d37e99b26ac0d4898fb Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 7 Aug 2025 23:33:55 +0200 Subject: [PATCH 5/9] put links outside of div --- src/overrides/partials/header.html | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/overrides/partials/header.html b/src/overrides/partials/header.html index ebb439bc8..edc2778b4 100644 --- a/src/overrides/partials/header.html +++ b/src/overrides/partials/header.html @@ -86,16 +86,15 @@ {% if config.repo_url %} {% endif %} + + {% include ".icons/fontawesome/solid/rss.svg" %} + + + + {% include ".icons/fontawesome/brands/discord.svg" %} + {% if "navigation.tabs.sticky" in features %} {% if "navigation.tabs" in features %} From 82f492ccb074fc1587d8193c82fc8e9bacc5ae36 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 7 Aug 2025 23:39:21 +0200 Subject: [PATCH 6/9] wrap links in div --- src/overrides/partials/header.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/overrides/partials/header.html b/src/overrides/partials/header.html index edc2778b4..7765e9f5f 100644 --- a/src/overrides/partials/header.html +++ b/src/overrides/partials/header.html @@ -88,13 +88,17 @@ {% include "partials/source.html" %}
{% endif %} +
{% include ".icons/fontawesome/solid/rss.svg" %} - +
+ + {% if "navigation.tabs.sticky" in features %} {% if "navigation.tabs" in features %} From ffb16b9cd149bf0e3025618f9100310ed457a2ed Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Fri, 8 Aug 2025 09:33:37 +0200 Subject: [PATCH 7/9] fix --- src/overrides/partials/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overrides/partials/header.html b/src/overrides/partials/header.html index 7765e9f5f..0b6058769 100644 --- a/src/overrides/partials/header.html +++ b/src/overrides/partials/header.html @@ -88,7 +88,7 @@ {% include "partials/source.html" %} {% endif %} -
{% include ".icons/fontawesome/solid/rss.svg" %} From 81cb8461b28bbb67848620d5cce384f20feed279 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Fri, 8 Aug 2025 09:36:48 +0200 Subject: [PATCH 8/9] add github link to footer socials --- mkdocs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index c19e63ce8..8dcdcc5f6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -80,6 +80,8 @@ plugins: extra: social: + - icon: fontawesome/brands/github + link: https://github.com/cp-algorithms/cp-algorithms - icon: fontawesome/brands/discord link: https://discord.gg/HZ5AecN3KX analytics: From 76f996922221fc31bda32ca0f5af5f695b6f0cc4 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Fri, 8 Aug 2025 09:39:06 +0200 Subject: [PATCH 9/9] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 513e55f32..445039e5a 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Compiled pages are published at [https://cp-algorithms.com/](https://cp-algorith ## Changelog +- August, 2025: Launched a [Discord server](https://discord.gg/HZ5AecN3KX)! - October, 2024: Welcome new maintainers: [jxu](https://github.com/jxu), [mhayter](https://github.com/mhayter) and [kostero](https://github.com/kostero)! - October, 15, 2024: GitHub pages based mirror is now served at [https://gh.cp-algorithms.com/](https://gh.cp-algorithms.com/), and an auxiliary competitive programming library is available at [https://lib.cp-algorithms.com/](https://lib.cp-algorithms.com/). - July 16, 2024: Major overhaul of the [Finding strongly connected components / Building condensation graph](https://cp-algorithms.com/graph/strongly-connected-components.html) article.