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

Open in your IDE?
  1. {% if language is not defined or language is null %}
  2.   {% set language = verse.findMainVerse().chapter.book.translation.language %}
  3. {% endif %}
  4. {% set bForSearch = false %}
  5. {% if for_search is defined %}
  6.     {% set bForSearch = for_search %}
  7. {% endif %}
  8. {% set bReadingPlanStep = false %}
  9. {% if plan_step is defined %}
  10.     {% set bReadingPlanStep = true %}    
  11. {% endif %}
  12. {% autoescape false %}
  13. <span class="verse" {{ text_style|trim|raw }} id="c{{ verse.findMainVerse().chapter.ordering }}-v{{ verse.getFullIndexDisplay() }}">
  14.   <sup class="verse-link">
  15.   {% if bReadingPlanStep %}
  16.       {{ verse.getFullIndexDisplay() }}
  17.   {% else %}
  18.       <a
  19.         {% if in_frame is defined and in_frame %}
  20.           href="javascript:top.loadframe('{{ path('bible_frame_explanation_verse', {'translationUrl': translation_url, 'bookUrl': book_url, 'chapterIndex': chapter_index, 'verseIndex': verse.getFullIndexDisplay()}) }}', 'col2');"
  21.          {% elseif multicolumn is defined and multicolumn %}
  22.           href="{{ path(multicolumn_path, multicolumn_route_params|merge({('column'~column_num~'Details'): column_replace_uri(verse)}) ) }}"
  23.          {% elseif translation3 is defined and translation3 is not null %}
  24.           {% set display_target = verse.canonicalization|first %}
  25.           href="{{ path('bible_compare_verse_3col', {
  26.             'translationUrl1': translation1.url,
  27.             'translationUrl2': translation2.url,
  28.             'translationUrl3': translation3.url,
  29.             'bookUrl': display_target.chapter.book.url,
  30.             'chapterStartIndex': display_target.chapter.ordering,
  31.             'verseStartIndex': display_target.ordering
  32.           }) }}"  
  33.         {% elseif translation2 is defined %}
  34.           {% set display_target = verse.canonicalization|first %}
  35.           href="{{ path('bible_compare_verse', {
  36.             'translationUrl1': translation1.url,
  37.             'translationUrl2': translation2.url,
  38.             'bookUrl': display_target.chapter.book.url,
  39.             'chapterStartIndex': display_target.chapter.ordering,
  40.             'verseStartIndex': display_target.ordering
  41.           }) }}"
  42.         {% else %}    
  43.           href="{{ uri(verse)|split('/-')|first }}"
  44.         {% endif %}
  45.       >{{ verse.getFullIndexDisplay() }}</a>
  46.   {% endif %}
  47.   </sup>
  48.   {% if verses_concept is defined and verses_concept is not null %} 
  49.           {% if verses_concept[verse.id] is defined %}
  50.               {{ verses_concept[verse.id] }}
  51.           {% else %}
  52.               {% if bForSearch %}
  53.                   {{ verse.getContent() }}
  54.               {% else %}
  55.                   {{ verse.getContentForSearch() }}
  56.               {% endif %}        
  57.           {% endif %}
  58.   {% else %}
  59.           {% if bForSearch %}
  60.             {{ verse.getContent() }}
  61.         {% else %}
  62.             {{ verse.getContentForSearch() }}
  63.         {% endif %}    
  64.   {% endif %}
  65. </span>
  66. {% if verse_breaks is not defined or verse_breaks %}<br />{% endif %}
  67. {% endautoescape %}