-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added version tag to website footer * Changed layout * Created footer template and and changed it to look better * Fixed font awesome bug
- Loading branch information
Showing
3 changed files
with
29 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{{define "footer"}} | ||
<footer id="desktop-footer" | ||
class="tum-live-footer justify-between space-x-3 items-center hidden md:flex"> | ||
<div class="flex space-x-3"> | ||
<a href="/about">About</a> | ||
<a href="/privacy">Data Privacy</a> | ||
<a href="/imprint">Imprint</a> | ||
</div> | ||
<a href="https://github.com/TUM-Dev/gocast" class="">gocast@{{.}} <i class="fa-brands fa-github"></i></a> | ||
</footer> | ||
{{end}} | ||
|
||
{{define "mobile_footer"}} | ||
<footer class="tum-live-footer w-full md:hidden"> | ||
<div class="grid divide-y dark:divide-gray-800"> | ||
<a href="/about">About</a> | ||
<a href="/privacy">Data Privacy</a> | ||
<a href="/imprint">Imprint</a> | ||
</div> | ||
<a href="https://github.com/TUM-Dev/gocast" class="block mt-1 text-center"> | ||
gocast@{{.}} <i class="fa-brands fa-github"></i> | ||
</a> | ||
</footer> | ||
{{end}} |