ytdl-web/app/views/partials/footer.html

23 lines
893 B
HTML
Raw Normal View History

2023-08-12 23:27:11 -04:00
<footer class="footer mt-auto py-3 bg-body-tertiary" style="font-size: 0.95rem">
<div class="container">
<div class="row gap-2 gap-md-0">
<div class="d-flex gap-4 col-md justify-content-center">
<div class="d-flex gap-1 align-items-baseline">
Version:
<span class="text-muted">{{.Version}}</span>
<span class="text-muted text-nowrap" style="font-size: smaller"
>(Build: {{.Build}})</span
>
</div>
<div class="d-flex gap-1 align-items-baseline text-nowrap">
yt-dlp version: <span class="text-muted">{{.BinaryVersion}}</span>
</div>
</div>
<div class="d-flex gap-2 col-md justify-content-center">
<a href="https://git.fifitido.net/apps/ytdl-web">Git Repository</a>
<span class="text-muted">&copy; 2023 FiFiTiDo</span>
</div>
</div>
</div>
</footer>