Redirect email to my website for my profile in /about/ to reduce spam (#1608)

This commit is contained in:
Dawid Potocki
2019-12-21 04:56:51 +00:00
committed by GitHub
parent 5c91bc420e
commit d5b629c529
2 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@
<p class="card-text" {% if include.bio %}itemprop="description"{% endif %}>{{ include.bio | default: "<i>Hmm, this user hasn't written a bio quite yet :(</i>" }}</p>
<div class="mx-n2">
{% if include.email %}
<a href="mailto:{{ include.email }}" aria-label="Email" class="mx-2 text-decoration-none" itemprop="email">
<a href="{{ include.email }}" aria-label="Email" class="mx-2 text-decoration-none" itemprop="email">
<i class="fas fa-envelope" aria-hidden="true" title="{{ include.email }}"></i>
</a>
{% endif %}