Problem
On the "About" page of the Wikidata Reference Validator tool, the "GitHub Repository" link is not working.
Currently, the link has an empty href attribute, so clicking it does nothing.
Goal
Fix the GitHub Repository link so that it correctly points to the project's GitHub repository.
Steps to Reproduce
- Open the About page
- Scroll to the bottom section
- Click on "GitHub Repository"
- Observe that nothing happens
Expected Behavior
Clicking the "GitHub Repository" link should open the correct GitHub repository in a new tab.
Hint
The correct GitHub repository URL can be found in the README file of the project.
File to Update
Locate the About page template (HTML file), and update this line:
<a href="" target="_blank" class="link-light">GitHub Repository</a>
Replace the empty href with the correct GitHub repository URL.
Example Fix
<a href="https://github.com/JosefAnthony/Wikidata-Reference-Validator-Hackathon2026" target="_blank" class="link-light">GitHub Repository</a>
Acceptance Criteria
- The link opens the GitHub repository in a new tab
- No UI is broken after the change
Difficulty
Easy (Beginner-friendly)
Notes
This is a great first task to get familiar with the project structure.