aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-12 17:37:36 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-12 17:37:36 +0200
commite95113908f83652737e2bfcbb0c83e1cbcc5ca1d (patch)
treedf760498173b7139bfda39af33e1b21f0c0f629e /pyaggr3g470r/templates
parentFix: test if we display the button to fetch article. (diff)
downloadnewspipe-e95113908f83652737e2bfcbb0c83e1cbcc5ca1d.tar.gz
newspipe-e95113908f83652737e2bfcbb0c83e1cbcc5ca1d.tar.bz2
newspipe-e95113908f83652737e2bfcbb0c83e1cbcc5ca1d.zip
Added some spaces betweens icons and text.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/layout.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 2680eb81..8dc31829 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -66,7 +66,7 @@
<li><a accesskey="f" href="{{ url_for("favorites") }}"><span class="glyphicon glyphicon-star"></span> {{ _('Favorites') }}</a></li>
{% endif %}
{% if not conf.ON_HEROKU or g.user.is_admin() %}
- <li><a accesskey="r" href="/fetch"><span class="glyphicon glyphicon-import"></span>{{ _('Fetch') }}</a></li>
+ <li><a accesskey="r" href="/fetch"><span class="glyphicon glyphicon-import"></span> {{ _('Fetch') }}</a></li>
{% endif %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Feed') }} <b class="caret"></b></a>
@@ -85,7 +85,7 @@ i <li><a accesskey="m" href="{{ url_for("management") }}">
{% if g.user.is_admin() %}
<li><a href="{{ url_for("dashboard") }}"><span class="glyphicon glyphicon-dashboard"></span> {{ _('Dashboard') }}</a></li>
{% endif %}
- <li><a href="{{ url_for("about") }}"><span class="glyphicon glyphicon-question-sign"></span>{{ _('About') }}</a></li>
+ <li><a href="{{ url_for("about") }}"><span class="glyphicon glyphicon-question-sign"></span> {{ _('About') }}</a></li>
</ul>
</li>
<li><a href="{{ url_for("logout") }}"><span class="glyphicon glyphicon-log-out"></span> {{ _('Logout') }}</a></li>
bgstack15