I am trying to change the links in the navigation for the footer. I have set my site root correctly so it shows
mysite.com/donate for the donate link instead of localhost/donate, but this is still insufficient since my site doesn't have a donate page, or a blog page, and the about page is under /vision
How can I edit the footer dictionary for navigation links:?
footer['navigation_links']
___
From edx-platform/lms/templates/footer.html:
<nav class="nav-colophon" aria-label="${_('About')}">
<ol>
% for item_num, link in enumerate(footer['navigation_links'], start=1):
<li class="nav-colophon-0${item_num}">
<a id="${link['name']}" href="${link['url']}">${link['title']}</a>
</li>
% endfor
</ol>