Skip to content

Commit

Permalink
Support the about page
Browse files Browse the repository at this point in the history
  • Loading branch information
adamboutcher committed Feb 13, 2025
1 parent 015d2ca commit b478900
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions mathics_django/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
# url(''),
re_path(r"^", include("mathics_django.web.urls")),
re_path(r"^"+settings.BASE_URL, include("mathics_django.web.urls")),
re_path(r"^"+settings.BASE_URL+"/", include("mathics_django.web.urls")),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
2 changes: 1 addition & 1 deletion mathics_django/web/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<a href="javascript:createLink()" title="Generate Worksheet Input Hash"><i class="fa fa-share-alt"></i></a>
<a href="javascript:showGallery()" title="Run some demo examples"><i class="fa fa-table"></i></a>
<a href="https://github.com/Mathics3" title="Go to Mathics3 GitHub repository"><i class="fa fa-github"></i></a>
<a href="/about" title="Mathics3 information page"><i class="fa fa-info"></i></a>
<a href="about" title="Mathics3 information page"><i class="fa fa-info"></i></a>
</div>
</div>

Expand Down

0 comments on commit b478900

Please sign in to comment.