Skip to content

Commit

Permalink
FIX: class style was break within space-name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-nginx committed Aug 20, 2017
1 parent f36f00c commit 9f245fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layout/_partials/header.swig
Expand Up @@ -39,7 +39,7 @@
<ul id="menu" class="menu">
{% for name, path in theme.menu %}
{% set itemName = name.toLowerCase() %}
<li class="menu-item menu-item-{{ itemName }}">
<li class="menu-item menu-item-{{ itemName | replace(' ', '-') }}">
<a href="{{ url_for(path) }}" rel="section">
{% if theme.menu_icons.enable %}
<i class="menu-item-icon fa fa-fw fa-{{theme.menu_icons[itemName] | default('question-circle') | lower }}"></i> <br />
Expand Down

0 comments on commit 9f245fa

Please sign in to comment.