-
-
Notifications
You must be signed in to change notification settings - Fork 977
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
Broken links when using the footer from the Docs site #1880
Comments
Upon further investigation, I believe that this page should not be accessed on the If you open the Django website (https://www.djangoproject.com/), everything works as expected. However, if you open https://docs.djangoproject.com/en/5.1/, the link Benevity Workplace Giving Program in the footer, using a relative URL, links to https://docs.djangoproject.com/foundation/donate/#benevity-giving I guess the fix is to ensure the footer link uses the absolute URL, including the host (and potentially adding a redirect to the |
Also when clicking the Corporate Membership links in the footer. djangoproject.com/djangoproject/templates/includes/footer.html Lines 60 to 62 in 20cec45
|
I think this was reported before as #1590, but your issue has more information so I'll keep this one open and close the other. As you pointed out, this has to do with the I'm not too familiar with how |
On the page https://docs.djangoproject.com/foundation/donate/, the "get in touch" links under the following two sections are broken:
Both point to https://docs.djangoproject.com/contact/foundation/, which returns a
404
.Edit: it appears it should be pointing to https://www.djangoproject.com/contact/foundation/, so using the
www
subdomain, rather than thedocs
subdomain, while the link is relative (<a href="/contact/foundation/">
).The text was updated successfully, but these errors were encountered: