Skip to content

Commit

Permalink
Remove unused macro_link extra_classes argument
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Oct 20, 2023
1 parent 734affa commit ec9c026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
* `target` An optional target
* `extra_classes` Optional extra css classes
#}
{% macro menu_link(href, text, target="", extra_classes="") %}
{% macro menu_link(href, text, target="") %}
<li class="pure-menu-item">
<a class="pure-menu-link {{ extra_classes }}" href="{{ href }}" {% if target != "" -%} target="{{ target }}" {%- endif %}>
<a class="pure-menu-link" href="{{ href }}" {% if target != "" -%} target="{{ target }}" {%- endif %}>
{{ text }}
</a>
</li>
Expand Down

0 comments on commit ec9c026

Please sign in to comment.