-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make root path catch-all URL handler that redirects to short URLs. Up…
…date hard-coded URLs that reference what are now short URLs.
- Loading branch information
1 parent
f689123
commit 83dc9a2
Showing
9 changed files
with
21 additions
and
18 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
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
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
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
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
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
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 |
---|---|---|
|
@@ -12,23 +12,23 @@ | |
</div> | ||
<div class="flex-shrink-1 mt-lg-0 mt-2"> | ||
<div class="d-inline-flex footer-icons"> | ||
<a href="{{ urlFor('github') }}" target="_blank"> | ||
<a href="/github" target="_blank"> | ||
<i class="bi-github"></i> | ||
<span class="visually-hidden">GitHub</span> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<i class="bi-envelope"></i> | ||
<span class="visually-hidden">E-mail</span> | ||
</a> | ||
<a href="{{ urlFor('twitter') }}" target="_blank"> | ||
<a href="/twitter" target="_blank"> | ||
<i class="bi-twitter-x"></i> | ||
<span class="visually-hidden">Twitter/X</span> | ||
</a> | ||
<a href="{{ urlFor('twitch') }}" target="_blank"> | ||
<a href="/twitch" target="_blank"> | ||
<i class="bi-twitch"></i> | ||
<span class="visually-hidden">Twitch</span> | ||
</a> | ||
<a href="{{ urlFor('discord') }}" target="_blank"> | ||
<a href="/discord" target="_blank"> | ||
<i class="bi-discord"></i> | ||
<span class="visually-hidden">Discord</span> | ||
</a> | ||
|
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
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