I need to write an if statement for adding an image next to an h1 tag in an unordered list, if the image exists – CSS
Attached is the wagtail template I have written so far. {% load wagtailimages_tags %} <section class="container"> <h2 class="text-center">{{ self.title }}</h2> <div class="general-alumnae-deck"> {% for member in self.general_member_cards %} {% if member.photo %} {% endif %} {% endfor %} </div> </section>…