Correct the Mastodon verification links for team members.
This commit is contained in:
parent
f32d6a967c
commit
c9b5483298
1 changed files with 4 additions and 2 deletions
|
|
@ -198,8 +198,10 @@
|
|||
<a href="{{ '/sitemap'|url(alt=this.alt) }}"><i class="fa fa-sitemap fa-lg" aria-hidden="true"></i> {{ t_sitemap }}</a>
|
||||
</p>
|
||||
{% set team = site.query('/community/team', alt=this.alt).all() %}
|
||||
{% for child in team %}
|
||||
<a rel="me" href={{ child.mastodon_handle }} style="display:none" ></a>
|
||||
{% for member in team %}
|
||||
{% if member.mastodon_handle %}
|
||||
<a rel="me" href="https://{{ member.mastodon_handle.split('@')[2] }}/@{{ member.mastodon_handle.split('@')[1] }}" style="display:none" ></a>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</footer>
|
||||
|
|
|
|||
Loading…
Reference in a new issue