add link to footer

This commit is contained in:
Your Name 2023-02-15 15:49:41 -05:00 committed by Henri Dickson
parent e103b6d565
commit 7c2e7a99f1
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@
<a class="footer__link" target="_blank" rel="noopener" href="{{ donation_link }}">捐助本站</a>
{% endif %}
<a class="footer__link" href="/announcement/">公告栏</a>
<a class="footer__link" href="/api-doc/">API</a>
</div>
</div>
</footer>

View file

@ -4,6 +4,6 @@ from .views import *
app_name = "common"
urlpatterns = [
path("", home),
path("api_doc", api_doc),
path("api-doc/", api_doc),
path("home/", home, name="home"),
]