forked from mirrors/thatmattlove-hyperglass
finally fixed bulma sticky footer nonsense
This commit is contained in:
parent
fc6201fe8a
commit
265169cf9d
4 changed files with 10 additions and 10 deletions
|
|
@ -34,7 +34,7 @@ class html:
|
|||
elif t == "415":
|
||||
template = env.get_template("templates/415.html")
|
||||
elif t == "test":
|
||||
template = env.get_template("templates/415.html")
|
||||
template = env.get_template("templates/429.html")
|
||||
return template.render(
|
||||
# General
|
||||
primary_asn=configuration.gen.primary_asn(),
|
||||
|
|
|
|||
|
|
@ -34,9 +34,9 @@
|
|||
<a href="/" class="button is-medium is-rounded is-inverted is-danger is-outlined">Home</a>
|
||||
</div>
|
||||
</section>
|
||||
{% if enable_footer == true %}
|
||||
{% include "templates/footer.html" %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
{% endblock %}
|
||||
{% if enable_footer == true %}
|
||||
{% include "templates/footer.html" %}
|
||||
{% endif %}
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -34,9 +34,9 @@
|
|||
<a href="/" class="button is-medium is-rounded is-inverted is-danger is-outlined">Try Again</a>
|
||||
</div>
|
||||
</section>
|
||||
{% if enable_footer == true %}
|
||||
{% include "templates/footer.html" %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
{% endblock %}
|
||||
{% if enable_footer == true %}
|
||||
{% include "templates/footer.html" %}
|
||||
{% endif %}
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<footer class="footer is-fixed-bottom">
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="content is-small has-text-centered">
|
||||
{{ footer_content }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue