Skip to content

Test social links in the footer #1493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Aug 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ plugins:
- rss

extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cp-algorithms/cp-algorithms
- icon: fontawesome/brands/discord
link: https://discord.gg/HZ5AecN3KX
analytics:
provider: google
property: G-7FLS2HCYHH
16 changes: 10 additions & 6 deletions src/overrides/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,18 @@
<div class="md-header__source">
{% include "partials/source.html" %}
</div>

<div class="rss icon">
<a href="https://cp-algorithms.com/feed_rss_created.xml" title="RSS" class="md-content__button md-icon">
{% include ".icons/fontawesome/solid/rss.svg" %}
{% endif %}
<div class="md-header__option">
<a href="https://cp-algorithms.com/feed_rss_created.xml" title="RSS" class="md-header__button md-icon" aria-label="RSS">
{% include ".icons/fontawesome/solid/rss.svg" %}
</a>
</div>
</div>

{% endif %}
<div class="md-header__option">
<a href="https://discord.gg/HZ5AecN3KX" title="Discord" class="md-header__button md-icon" aria-label="Discord">
{% include ".icons/fontawesome/brands/discord.svg" %}
</a>
</div>
</nav>
{% if "navigation.tabs.sticky" in features %}
{% if "navigation.tabs" in features %}
Expand Down