{% comment %} Example usage of webmention template tags. This file shows how to integrate webmentions into your templates. {% endcomment %} {% load static %} {% load webmention_tags %} Post with Webmentions {% webmention_endpoint_link %}

My Blog Post

This is the content of my blog post...

Responses {% webmention_count post_url as total_count %} {% if total_count %}({{ total_count }}){% endif %}

{% show_webmentions post_url %} {% comment %} {% webmention_count post_url "like" as like_count %} {% if like_count %}

{{ like_count }} Like{{ like_count|pluralize }}

{% show_webmentions post_url "like" %} {% endif %} {% webmention_count post_url "reply" as reply_count %} {% if reply_count %}

{{ reply_count }} Repl{{ reply_count|pluralize:"y,ies" }}

{% show_webmentions post_url "reply" %} {% endif %} {% webmention_count post_url "repost" as repost_count %} {% if repost_count %}

{{ repost_count }} Repost{{ repost_count|pluralize }}

{% show_webmentions post_url "repost" %} {% endif %} {% endcomment %}