templates/news/fieldcollections/Citation.html.twig line 1

Open in your IDE?
  1. {% set snippet = block.snippet  %}
  2. {% if (snippet and snippet.getEditable('author')) or (snippet and snippet.getEditable('position')) or (snippet and snippet.getEditable('quote')) or block.author or block.position or block.quote %}
  3.     <section class="{{ classNames|default('content-block container-narrow') }}">
  4.         {{ include('includes/content/citation.html.twig', {
  5.             'author': snippet ? snippet.getEditable('author') : block.author,
  6.             'position': snippet ? snippet.getEditable('position') : block.position,
  7.             'quote': snippet ? snippet.getEditable('quote') : block.quote,
  8.         }) }}
  9.     </section>
  10. {% endif %}