templates/course/parts/place.html.twig line 1

Open in your IDE?
  1. {% if(course.place and course.place.address) %}
  2.     <div class="{{ gridClass }}">
  3.         <i class="fas fa-map-marker-alt"></i>&nbsp; {{ course.place.address.line1 }} {%- if(course.place.address.city) %}, {{ course.place.address.city }} {% endif %}
  4.     </div>
  5. {% endif %}