From f5d628151644debc43e9647bbeee172519bf4164 Mon Sep 17 00:00:00 2001 From: Eloi Perdereau <eloi@perdereau.eu> Date: Sun, 29 Nov 2020 04:28:31 +0100 Subject: [PATCH] fix location marker icon --- _includes/author-profile.html | 2 +- _includes/footer/author-profile.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/author-profile.html b/_includes/author-profile.html index 0e30d8d..cf95c12 100644 --- a/_includes/author-profile.html +++ b/_includes/author-profile.html @@ -44,7 +44,7 @@ <ul class="author__urls social-icons"> {% if author.location %} <li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place"> - <i class="fa fa-map-marker-alt fa-fw" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span> + <i class="fa fa-map-marker fa-fw" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span> </li> {% endif %} diff --git a/_includes/footer/author-profile.html b/_includes/footer/author-profile.html index 5f5a199..38f3578 100644 --- a/_includes/footer/author-profile.html +++ b/_includes/footer/author-profile.html @@ -38,7 +38,7 @@ <ul class="social"> {% if author.location %} <li style="display: none" itemprop="homeLocation" itemscope itemtype="https://schema.org/Place"> - <i class="fa fa-map-marker-alt fa-fw" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span> + <i class="fa fa-map-marker fa-fw" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span> </li> {% endif %} -- GitLab