website/conservancy/templates/feeds/omnibus_description.html
Ben Sturmfels 0b9ab6970c
Remove deprecated ifequal and ifnotequal tags
These have been replaced by `{% if x == y %}` type tags.
2024-03-19 22:01:53 +11:00

10 lines
516 B
HTML

{% if obj.omnibus_type == "news" %}
<p><i>A <a href="https://{{ site }}/news/">news item</a> from Software Freedom Conservancy.</i></p>
{% endif %}
{% if obj.omnibus_type == "event" %}
<p><i>An <a href="https://{{ site }}/events/">upcoming event</a> related to the Software Freedom Conservancy.</i></p>
{% endif %}
{% if obj.omnibus_type == "blog" %}
<p><i>A <a href="https://{{ site }}/blog/">blog post</a> from Software Freedom Conservancy.</i></p>
{% endif %}
{% include obj.omnibus_feed_description_template %}