templates/apiary/snippetHoney.html.twig line 1

Open in your IDE?
  1. {% set edition = '' %}
  2. {% set text = '' %}
  3. <div class="apiary">
  4.   {% for c in corrections %}
  5.     {% if c.edition.title != edition %}
  6.       <h4 id="{{ c.edition.title|replace({' ': '_', '.': ''}) }}" class="edition">
  7.         {{ c.edition.title }} <span><a href="#top" title="zurück zum Anfang" class="backtotop">⇧</a></span>
  8.         {% set edition = c.edition.title %}
  9.         {% set text = '' %}
  10.       </h4>
  11.       {% for d in c.edition.docketEntries %}
  12.       <div class="docket">
  13.         {% if d.position or d.text %}
  14.           <div class="text">{{ d.text }}</div>
  15.           <div class="position">{{ c.position }}</div>
  16.           <div class="info">{{ d.info }}</div>
  17.         {% else %}
  18.           <p class="info">{{ d.info }}</p>
  19.         {% endif %}
  20.       </div>
  21.       {% endfor %}
  22.     {% endif %}
  23.     <div class="correction">
  24.         <div class="text">
  25.           {% if c.text != text %}
  26.             {% if c.registerEntries|length and c.registerEntries|first and c.registerEntries|first.hgv %}
  27.               <a href="{{ path('PapyrillioBeehive_ApiaryHoney', {'type': 'hgv', 'id': c.registerEntries|first.hgv }) }}" title="Alle Einträge für {{ c.registerEntries|first }}">{{ c.text }}</a>
  28.             {% else %}
  29.               {{ c.text }}
  30.             {% endif %}
  31.             {% set text = c.text %}
  32.           {% endif %}
  33.         </div>
  34.         <div class="position">{{ c.position }}</div>
  35.         <div class="description">{{ c.description }}</div>
  36.         <div class="bl">
  37.           {% if c.compilation.collection == 'BOEP' %}
  38.             <a href="{{ path('PapyrillioBeehive_ApiaryCorrectionInfo', {'id': c.id}) }}" title="{{ c.compilation.short }}{% if c.compilationIndex %}&nbsp;{{ c.compilationIndex }}{% endif %}">{{ c.compilation.short|replace({' ' : '&nbsp;'})|raw }}{% if c.compilationIndex %}&nbsp;{{ c.compilationIndex }}{% endif %}</a>
  39.           {% else %}
  40.             <a href="{{ path('PapyrillioBeehive_ApiaryCorrectionInfo', {'id': c.id}) }}" title="BL&nbsp;{{ c.compilation.title }}{% if c.compilationPage %}&nbsp;S.&nbsp;{{ c.compilationPage }}{% endif %}{% if c.compilationIndex %}&nbsp;#&nbsp;{{ c.compilationIndex }}{% endif %}">BL&nbsp;{{ c.compilation.title }}{% if c.compilationPage %}&nbsp;S.&nbsp;{{ c.compilationPage }}{% endif %}{% if c.compilationIndex %}&nbsp;#&nbsp;{{ c.compilationIndex }}{% endif %}</a>
  41.           {% endif %}
  42.           {% if c.source %}
  43.             <br />
  44.             <a href="http://papyri.info/biblio/{{ c.source }}">Biblio</a>
  45.           {% endif %}
  46.         </div>
  47.     </div>
  48.   {% endfor %}
  49. </div>