diff --git a/templates/feeds/blogmark.html b/templates/feeds/blogmark.html index 54c9664..37554a3 100644 --- a/templates/feeds/blogmark.html +++ b/templates/feeds/blogmark.html @@ -4,3 +4,6 @@ {% if obj.via_title %}
{% endif %} +{% if obj.tags.count %} +Tags: {% for tag in obj.tags.all %}{{ tag.tag }}{% if not forloop.last %}, {% endif %}{% endfor %}
+{% endif %} diff --git a/templates/feeds/everything.html b/templates/feeds/everything.html index 82a49c4..884f361 100644 --- a/templates/feeds/everything.html +++ b/templates/feeds/everything.html @@ -1,5 +1,8 @@ {% if obj.is_entry %} {{ obj.body|safe }} + {% if obj.tags.count %} +Tags: {% for tag in obj.tags.all %}{{ tag.tag }}{% if not forloop.last %}, {% endif %}{% endfor %}
+ {% endif %} {% elif obj.is_blogmark %} {% include "feeds/blogmark.html" %} {% elif obj.is_quotation %} diff --git a/templates/feeds/quotation.html b/templates/feeds/quotation.html index b37df75..e6ac44b 100644 --- a/templates/feeds/quotation.html +++ b/templates/feeds/quotation.html @@ -1 +1,4 @@ -{{ obj.body }}
— {% if obj.source_url %}{{ obj.source }}{% else %}{{ obj.source }}{% endif %} \ No newline at end of file +
{{ obj.body }}
— {% if obj.source_url %}{{ obj.source }}{% else %}{{ obj.source }}{% endif %}
+{% if obj.tags.count %} +Tags: {% for tag in obj.tags.all %}{{ tag.tag }}{% if not forloop.last %}, {% endif %}{% endfor %}
+{% endif %}