Sorry, but It does nothing…
In ‘changing stuff’ I write anything in special?
Another way, this is my article.tmpl in arlima/templates (this is the default file by arlima). I see that only appaers a function to write comments in related posts, not posts in general:
<div id="${container.id}" class="${container.class} tmpl-article">
<article>
{{if streamer}}
<div style="${streamer.style}" class="streamer ${streamer.type}">
<span>{{html streamer.content}}</span>
</div>
{{/if}}
{{html article_begin}}
{{include parts/top-image.tmpl}}
{{html article.html_title}}
{{html article.html_text}}
{{if related}}
<div class="teaser-related-posts">
<aside>
{{if related.single}}
{{else}}
{{/if}}
<ul>
{{each related.posts}}
<li>
<a href="${this.url}" class="related">${this.post_title}</a>
{{if this.html_comment_stats}}
<span title="Number of comments" class="num-comments">
{{html this.html_comment_stats}}
</span>
{{/if}}
</li>
{{/each}}
</ul>
</aside>
</div>
{{/if}}
</article>
{{if sub_articles}}
<div class="teaser-children">
{{html sub_articles}}
</div>
{{/if}}
</div>
{{html article_end}}