mirror of https://github.com/lukechilds/docs.git
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
514 B
12 lines
514 B
<div class="js-comments">
|
|
{% assign comments = site.data.comments[page.slug] | sort %}
|
|
{% for comment in comments %}
|
|
{% assign avatar = comment[1].avatar %}
|
|
{% assign email = comment[1].email %}
|
|
{% assign name = comment[1].name %}
|
|
{% assign url = comment[1].url %}
|
|
{% assign date = comment[1].date %}
|
|
{% assign message = comment[1].message %}
|
|
{% include comment.html index=forloop.index avatar=avatar email=email name=name url=url date=date message=message %}
|
|
{% endfor %}
|
|
</div>
|
|
|