Skip to content

Commit

Permalink
Merge pull request #186 from sfu-dhil/ui-tweaks
Browse files Browse the repository at this point in the history
Small tweak to footer
  • Loading branch information
andrew-gardener authored Dec 7, 2023
2 parents f441e20 + 0122f2c commit 2fa5aaf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,6 @@
<div class="container">
<div class="footer-menu">
{{ knp_menu_render('footer') }}
<div class="mx-auto">
{% if git_repo and (git_tag or git_commit) %}
<a href="{{ git_repo ~ '/tree/' ~ (git_tag ? git_tag : git_commit) }}" class="text-center small p-0 m-0 link-secondary text-decoration-none ignore-external" target="_blank">
<i class="bi bi-github">&nbsp;</i>MVM {{ git_tag ? git_tag : 'commit ' ~ git_commit_short }}
</a>
{% endif %}
</div>
</div>
<div class="footer-imgs">
<ul>
Expand All @@ -110,6 +103,13 @@
<img src="{{ asset_prefix|default('') ~ asset('images/SFU_block_colour_rgb.png') }}" /> </a>
</li>
</ul>
<div class="mt-3 me-3 text-end-md text-lg-end">
{% if git_repo and (git_tag or git_commit) %}
<a href="{{ git_repo ~ '/tree/' ~ (git_tag ? git_tag : git_commit) }}" class="text-center small p-0 m-0 link-secondary text-decoration-none ignore-external" target="_blank">
<i class="bi bi-github">&nbsp;</i>MVM {{ git_tag ? git_tag : 'commit ' ~ git_commit_short }}
</a>
{% endif %}
</div>
</div>
</div>
</footer>
Expand Down

0 comments on commit 2fa5aaf

Please sign in to comment.