Always show the sponsor URL and description if either are present.
authorDave Page <dpage@pgadmin.org>
Tue, 4 Jul 2023 14:14:21 +0000 (15:14 +0100)
committerDave Page <dpage@pgadmin.org>
Tue, 4 Jul 2023 14:14:21 +0000 (15:14 +0100)
templates/pages/sponsors.html

index 9f41e34d461ceea31595a8734b4e7951c7f6cec2..c1c6c9626302c3ca6638e42693b6028e87b54c64 100644 (file)
 <div id="{{ c.name | slugify }}">
   <a href="{{ c.url }}"><img src="{{ media("img/logos/" + c.img) }}" alt="{{ c.name }}"></a>
   {% if s.hasdescription %}
-  <p>
-    {% if c.description %}{{ c.description }}
-    {% else %}<a href="{{ c.url }}">{{ c.url }}</a>
+    {% if c.description %}<p>{{ c.description }}</p>{% endif %}
+    {% if c.url %}<p><a href="{{ c.url }}">{{ c.url }}</a></p>{% endif %}
     {% endif %}
-  </p>
   {% endif %}
   {% if c.hasinterview %}
     <p class="interview-link"><a href="{{ link("sponsor-interviews/" + c.name|slugify + "/") }}" data-company-name="{{ c.name }}"><i class="fa-solid fa-handshake-angle"></i>Interview</a></p>