src/NCBS/WebsiteBundle/Resources/views/Bible/show_hide_links.html.twig line 1

Open in your IDE?
  1. {% if hide_highlights is not defined or not hide_highlights %}
  2.     {% set bShowBibleLinks = true %}    
  3.     {% if app.session.get('show_bible_links') == 2 %}
  4.         {% set bShowBibleLinks = false %}        
  5.     {% endif %}    
  6.     {% set sTitle = app.session.get('ui_str')["bible.highlighting.hide"]|raw %}
  7.     <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>
  8.     {% set sTitle = app.session.get('ui_str')["bible.highlighting.show"]|raw %}
  9.     <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>        
  10. {% endif %}