aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-07-21 16:10:14 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-07-21 16:10:14 +0200
commitd54d24eaced0d6965351ad289ef4d4f00980c8b3 (patch)
treed397221c3ce23a94ae71d0401927981ee9fdc4ee /pyaggr3g470r/templates
parentmaking gen_url get args order predictable so cache generation works (diff)
downloadnewspipe-d54d24eaced0d6965351ad289ef4d4f00980c8b3.tar.gz
newspipe-d54d24eaced0d6965351ad289ef4d4f00980c8b3.tar.bz2
newspipe-d54d24eaced0d6965351ad289ef4d4f00980c8b3.zip
fixing overlapping title on small screens
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/layout.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index c2c0c07e..93d36096 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -27,10 +27,9 @@
</button>
<a class="navbar-brand" href="{{ url_for("home") }}">pyAggr3g470r</a>
{% if head_titles %}
- {% for head_title in head_titles %}
- <span class="navbar-brand"> - </span>
- <span class="navbar-brand">{{ head_title }}</span>
- {% endfor %}
+ <p class="navbar-text" style="max-height: 20px; overflow: hidden">
+ {{ " - ".join(head_titles) }}
+ </p>
{% endif %}
</div>
bgstack15