forked from varia/varia.website
many many many Varia's websites, work in progress: https://many.vvvvvvaria.org
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.
34 lines
762 B
34 lines
762 B
7 years ago
|
# 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 %}
|
||
|
...
|
||
|
<article id="my_own_comment_id_{{comment.slug}}">{{ comment.content }}</article>
|
||
|
...
|
||
|
{% endfor %}
|
||
|
```
|
||
|
## Theme
|
||
|
#### Link
|
||
|
To display a link to the article feed simply add the following to your theme:
|
||
|
|
||
|
```html
|
||
|
{% if article %}
|
||
|
<a href="{{ FEED_DOMAIN }}/{{ PELICAN_COMMENT_SYSTEM_FEED|format(article.slug) }}">Comment Atom Feed</a>
|
||
|
{% endif %}
|
||
|
```
|
||
|
|
||
|
Link to the all comment feed:
|
||
|
|
||
|
```html
|
||
|
<a href="{{ FEED_DOMAIN }}/{{ PELICAN_COMMENT_SYSTEM_FEED_ALL }}">Comment All Atom Feed</a>
|
||
|
```
|
||
|
|