mirror of
https://github.com/elektricM/amd-bc250-docs.git
synced 2026-07-16 01:51:15 +00:00
Two small additions to make it easier for readers to find their way back to the GitHub side of the project (stars, Discussions, PRs): - overrides/main.html: site-wide announce banner with links to the repo and Discussions. Uses Material's announce block, dismissable by the reader once they've seen it - mkdocs.yml: enable custom_dir for the override and add announce.dismiss to theme features - docs/index.md: replace the brief Contributing paragraph with a Get Involved card grid (Star, Discussions, PRs, Issues). Sits on the home page where most first-time visitors land No content changes outside of these blocks.
14 lines
417 B
HTML
14 lines
417 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block announce %}
|
|
Found this useful?
|
|
<a href="https://github.com/elektricM/amd-bc250-docs" target="_blank" rel="noopener">
|
|
Star the project on GitHub
|
|
</a>
|
|
and join the
|
|
<a href="https://github.com/elektricM/amd-bc250-docs/discussions" target="_blank" rel="noopener">
|
|
community discussions
|
|
</a>
|
|
to share builds, ask questions, and help shape the docs.
|
|
{% endblock %}
|