# Comment Atom Feed ## Custom comment url Be sure that the id of the html tag containing the comment matches `COMMENT_URL`. ##### pelicanconf.py ```python COMMENT_URL = "#my_own_comment_id_{slug}" ``` ##### Theme ```html {% for comment in article.comments recursive %} ...
{{ comment.content }}
... {% endfor %} ``` ## Theme #### Link To display a link to the article feed simply add the following to your theme: ```html {% if article %} Comment Atom Feed {% endif %} ``` Link to the all comment feed: ```html Comment All Atom Feed ```