Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
597 B

{% if TAG_FEED_ATOM %}
{% for tag in tags %}
{% set tag_name = tag[0].slug %}
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM|format(tag_name) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME|striptags|e }} - {{tag[0]}} Tag Atom Feed" />
{% endfor %}
{% endif %}
{% if TAG_FEED_RSS %}
{% for tag in tags %}
{% set tag_name = tag[0].slug %}
<link href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS|format(tag_name) }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME|striptags|e }} - {{tag[0]}} Tag RSS Feed" />
{% endfor %}
{% endif %}