diff --git a/src/components/section-navigation/_macro.njk b/src/components/section-navigation/_macro.njk
index 2c79b08f14..0c6c18b9b3 100644
--- a/src/components/section-navigation/_macro.njk
+++ b/src/components/section-navigation/_macro.njk
@@ -31,9 +31,12 @@
class="ons-section-nav__item{{ ' ' + item.classes if item.classes else '' }}{{ ' ons-section-nav__item--active' if isCurrent == true }}"
>
{% if isCurrent == true %}
- {{ openingHeadingTag | replace(headingLevel, sectionItemHeadingLevel | string) | safe }}
- class="ons-section-nav__link ons-section-nav__item-header" href="{{ item.url }}"
- aria-current="location">{{ item.text }}{{ closingHeadingTag | replace(headingLevel, sectionItemHeadingLevel | string) | safe }}
+
{% else %}
{{ item.text }}
{% endif %}
@@ -71,9 +74,9 @@
class="ons-section-nav__item{{ ' ' + item.classes if item.classes else '' }}{% if isCurrent == true %}{{ ' ' }}ons-section-nav__item--active{% endif %}"
>
{% if isCurrent == true %}
- {{ openingHeadingTag | replace(headingLevel, sectionItemHeadingLevel | string) | safe }}
- class="ons-section-nav__link ons-section-nav__item-header" href="{{ item.url }}"
- aria-current="location">{{ item.text }}{{ closingHeadingTag | replace(headingLevel, sectionItemHeadingLevel | string) | safe }}
+
{% else %}
{{ item.text }}
{% endif %}