Skip to content

Instantly share code, notes, and snippets.

@siakaramalegos
Created November 22, 2019 21:06
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siakaramalegos/b1f7ded21f9ecddaee91e3f6d88e2e48 to your computer and use it in GitHub Desktop.
Save siakaramalegos/b1f7ded21f9ecddaee91e3f6d88e2e48 to your computer and use it in GitHub Desktop.
Version of my webmentions nunjucks file used when writing my post about Webmentions and Eleventy
<div class="webmentions content-grid-sibling" id="webmentions">
{% set mentions = webmentions | getWebmentionsForUrl(metadata.url + webmentionUrl) %}
{% set reposts = mentions | webmentionsByType('repost-of') %}
{% set repostsSize = reposts | size %}
{% set likes = mentions | webmentionsByType('like-of') %}
{% set likesSize = likes | size %}
{% set replies = mentions | webmentionsByType('in-reply-to') %}
{% set repliesSize = replies | size %}
{% if likesSize > 0 %}
<div class="webmentions__facepile">
<h3{% if repostsSize > 11 or likesSize > 11 %} class="webmentions__facepile__squish" {% endif %}>{{ likesSize }}
Like{% if likesSize != 1 %}s{% endif %}</h3>
{% for webmention in likes %}
{% if webmention.url != "" %}
<a class="h-card u-url link-u-exempt" href="{{ webmention.url }}" target="_blank" rel="noopener noreferrer">
{% endif %}
{% if webmention.author.photo %}
<img src="{{ webmention.author.photo }}" alt="{{ webmention.author.name }}" width="48" height="48" loading="lazy">
{% else %}
<img class="webmention__author__photo" src="{{ '/img/avatar.svg' | url }}" alt="" width="48" height="48">
{% endif %}
{% if webmention.url != "" %}
</a>
{% endif %}
{% endfor %}
</div>
{% endif %}
{% if repostsSize > 0 %}
<div class="webmentions__facepile">
<h3{% if repostsSize > 11 or likesSize > 11 %} class="webmentions__facepile__squish" {% endif %}>{{ repostsSize }} Retweet{% if repostsSize != 1 %}s{% endif %}</h3>
{% for webmention in reposts %}
{% if webmention.url != "" %}
<a class="h-card u-url link-u-exempt" href="{{ webmention.url }}" target="_blank" rel="noopener noreferrer">
{% endif %}
{% if webmention.author.photo %}
<img src="{{ webmention.author.photo }}" alt="{{ webmention.author.name }}" width="48" height="48" loading="lazy">
{% else %}
<img class="webmention__author__photo" src="{{ '/img/avatar.svg' | url }}" alt="" width="48" height="48">
{% endif %}
{% if webmention.url != "" %}
</a>
{% endif %}
{% endfor %}
</div>
{% endif %}
{% if repliesSize > 0 %}
<div class="webmention-replies">
<h3>{{ repliesSize }} {% if repliesSize == "1" %}Reply{% else %}Replies{% endif %}</h3>
{% for webmention in replies %}
{% include 'webmention.njk' %}
{% endfor %}
</div>
{% endif %}
<p>These are <a href="https://indieweb.org/Webmention">webmentions</a> via the <a href="https://indieweb.org/">IndieWeb</a> and <a href="https://webmention.io/">webmention.io</a>. Mention this post from your site:</p>
<form action="https://webmention.io/sia.codes/webmention" method="post" class="form-webmention">
<label for="form-webmention-source">URL</label><br>
<input id="form-webmention-source" type="url" name="source" placeholder="https://example.com" required>
<input type="hidden" name="target" value="https://sia.codes/{{ page.url }}">
<input type="submit" class="button button-small" value="Send Webmention">
</form>
</div>
@inetbiz
Copy link

inetbiz commented Apr 25, 2022

@siakaramalegos can you add your facepile squish to this gist?

@siakaramalegos
Copy link
Author

@siakaramalegos can you add your facepile squish to this gist?

Hi @inetbiz, it's been a while since I worked on that so it would take some time - it's probably easier just to look at the working version in my actual blog code here https://github.com/siakaramalegos/sia.codes-eleventy/blob/main/src/_includes/webmention.njk

@inetbiz
Copy link

inetbiz commented Apr 26, 2022

/src/_includes/webmentions.njk line: 13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment