{% if hide_highlights is not defined or not hide_highlights %}
{% set bShowBibleLinks = true %}
{% if app.session.get('show_bible_links') == 2 %}
{% set bShowBibleLinks = false %}
{% endif %}
{% set sTitle = app.session.get('ui_str')["bible.highlighting.hide"]|raw %}
<li class="nav-item"><a href="javascript:hideBibleLinks();" {% if not bShowBibleLinks %} style="display:none;" {% endif %} alt="{{ sTitle }}" title="{{ sTitle }}" class="nav-link hideLinksButton"><i class="fas fa-eye-slash"></i><span class="mobile-only"> {{ sTitle }}</span></a></li>
{% set sTitle = app.session.get('ui_str')["bible.highlighting.show"]|raw %}
<a href="javascript:showBibleLinks();" {% if bShowBibleLinks %} style="display:none;" {% endif %} alt="{{ sTitle }}" title="{{ sTitle }}" class="nav-link showLinksButton"><i class="fas fa-eye"></i><span class="mobile-only"> {{ sTitle }}</span></a></li>
{% endif %}