Skip to content

Commit ec9c026

Browse files
Remove unused macro_link extra_classes argument
1 parent 734affa commit ec9c026

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/macros.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
* `target` An optional target
2121
* `extra_classes` Optional extra css classes
2222
#}
23-
{% macro menu_link(href, text, target="", extra_classes="") %}
23+
{% macro menu_link(href, text, target="") %}
2424
<li class="pure-menu-item">
25-
<a class="pure-menu-link {{ extra_classes }}" href="{{ href }}" {% if target != "" -%} target="{{ target }}" {%- endif %}>
25+
<a class="pure-menu-link" href="{{ href }}" {% if target != "" -%} target="{{ target }}" {%- endif %}>
2626
{{ text }}
2727
</a>
2828
</li>

0 commit comments

Comments
 (0)