The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
10 lines
537 B
HTML
10 lines
537 B
HTML
{% ifequal obj.omnibus_type "news" %}
|
|
<p><i>A <a href="https://{{ site }}/news/">news item</a> from Software Freedom Conservancy.</i></p>
|
|
{% endifequal %}
|
|
{% ifequal obj.omnibus_type "event" %}
|
|
<p><i>An <a href="https://{{ site }}/events/">upcoming event</a> related to the Software Freedom Conservancy.</i></p>
|
|
{% endifequal %}
|
|
{% ifequal obj.omnibus_type "blog" %}
|
|
<p><i>A <a href="https://{{ site }}/blog/">blog post</a> from Software Freedom Conservancy.</i></p>
|
|
{% endifequal %}
|
|
{% include obj.omnibus_feed_description_template %}
|