-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: footer text-muted was deprecated:
changed in bootstrap 5.3 Signed-off-by: Lachezar Lechev <[email protected]>
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<footer class="pt-3 mt-4 text-muted"> | ||
<footer class="pt-3 mt-4 text-white-50"> | ||
<ul class="nav justify-content-center border-bottom pb-2 mb-2"> | ||
<li class="nav-item"><a href="{{ get_url(path="@/_index.md") }}" class="nav-link px-2 text-muted">Home</a></li> | ||
<li class="nav-item"><a href="{{ get_url(path="@/catalogue/_index.md") }}" class="nav-link px-2 text-muted">Are we in space yet?</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.github_org | safe }}" class="nav-link px-2 text-muted"><i class="bi bi-github me-1"></i>Github</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.discord_invite | safe }}" class="nav-link px-2 text-muted"><i class="bi bi-discord me-1"></i>Discord</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.twitter_url | safe }}" class="nav-link px-2 text-muted"><i class="bi bi-twitter me-1"></i>Twitter</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.youtube_url | safe }}" class="nav-link px-2 text-muted"><i class="bi bi-youtube me-1"></i>Youtube</a></li> | ||
{# <li class="nav-item"><a href="#" class="nav-link px-2 text-muted">About</a></li> #} | ||
<li class="nav-item"><a href="{{ get_url(path="@/_index.md") }}" class="nav-link px-2 text-white-50">Home</a></li> | ||
<li class="nav-item"><a href="{{ get_url(path="@/catalogue/_index.md") }}" class="nav-link px-2 text-white-50">Are we in space yet?</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.github_org | safe }}" class="nav-link px-2 text-white-50"><i class="bi bi-github me-1"></i>Github</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.discord_invite | safe }}" class="nav-link px-2 text-white-50"><i class="bi bi-discord me-1"></i>Discord</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.twitter_url | safe }}" class="nav-link px-2 text-white-50"><i class="bi bi-twitter me-1"></i>Twitter</a></li> | ||
<li class="nav-item"><a href="{{ config.extra.youtube_url | safe }}" class="nav-link px-2 text-white-50"><i class="bi bi-youtube me-1"></i>Youtube</a></li> | ||
{# <li class="nav-item"><a href="#" class="nav-link px-2 text-white-50">About</a></li> #} | ||
</ul> | ||
<p class="text-center">© {{ now(utc=true) | date(format="%Y") }} AeroRust (ÄR) community</p> | ||
</footer> |