Skip to content

Commit

Permalink
Fix website footer version display
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorfs committed Sep 8, 2021
1 parent 5df6b4f commit 71a18b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion parsifal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from parsifal.utils.version import get_version

VERSION = (2, 0, 2, "final", 0)
VERSION = (2, 0, 3, "final", 0)

__version__ = get_version(VERSION)
12 changes: 5 additions & 7 deletions parsifal/templates/includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<footer>
<div class="container">
<div class="row">
<div class="col-xs-6 legal">
<div class="col-xs-4 legal">
<span>© 2021 Simple Complex</span>
</div>
<div class="col-xs-6 social">
<div class="col-xs-4" style="text-align: center;padding-top: 13px;">
<small class="text-muted">v{{ parsifal_version }}</small>
</div>
<div class="col-xs-4 social">
<a href="https://github.com/vitorfs/parsifal" target="_blank" data-toggle="tooltip" title="Github" data-placement="top"><span class="fa fa-github"></span></a>
<a href="https://twitter.com/parsif_al" target="_blank" data-toggle="tooltip" title="Twitter" data-placement="top"><span class="fa fa-twitter"></span></a>
<a href="https://youtube.com/ParsifalReviews/" target="_blank" data-toggle="tooltip" title="Youtube" data-placement="top"><span class="fa fa-youtube"></span></a>
</div>
</div>
<div class="row">
<div class="col-xs-12" style="text-align: center; margin-top: -25px;">
<small class="text-muted">v{{ parsifal_version }}</small>
</div>
</div>
</div>
</footer>

0 comments on commit 71a18b5

Please sign in to comment.