diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-12 17:37:36 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-12 17:37:36 +0200 |
commit | e95113908f83652737e2bfcbb0c83e1cbcc5ca1d (patch) | |
tree | df760498173b7139bfda39af33e1b21f0c0f629e | |
parent | Fix: test if we display the button to fetch article. (diff) | |
download | newspipe-e95113908f83652737e2bfcbb0c83e1cbcc5ca1d.tar.gz newspipe-e95113908f83652737e2bfcbb0c83e1cbcc5ca1d.tar.bz2 newspipe-e95113908f83652737e2bfcbb0c83e1cbcc5ca1d.zip |
Added some spaces betweens icons and text.
-rw-r--r-- | pyaggr3g470r/templates/layout.html | 4 |
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> |