Skip to content
Open
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 templates/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
<div class="has-submenu">
<a role="menuitem" href="/community/">Community</a>
<div class="submenu">
<a role="menuitem" href="/community/">Contribute</a>
Comment thread
greptile-apps[bot] marked this conversation as resolved.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if /community/ page exists and examine its structure
fd -t f 'community' | head -10

# Search for community page content
rg -l "community" --type md --type html -g '!node_modules' | grep -i community | head -5

Repository: valkey-io/valkey-io.github.io

Length of output: 325


Avoid redundant “Contribute” navigation URL

The “Contribute” submenu item (templates/default.html line 60) links to /community/, the same destination as the parent “Community” link (templates/default.html line 58), so it doesn’t provide a distinct navigation experience. Link “Contribute” directly to the relevant section on the /community/ page (use a fragment like /community/#contribute with a matching id in content/community/_index.md), or route it to a dedicated /contribute/ page instead.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@templates/default.html` at line 60, The "Contribute" submenu currently links
to the same URL as the parent "Community" link; update the anchor in
templates/default.html (the <a role="menuitem" href="/community/">Contribute</a>
element) to point to a distinct target such as "/community/#contribute" or
"/contribute/" and ensure the target exists by adding a matching id="contribute"
anchor or heading in content/community/_index.md (or by creating a dedicated
/contribute/ page) so the submenu leads to a unique section.

<a role="menuitem" href="/events/">Events</a>
</div>
</div>
Expand Down
Loading