|
|
|
@ -1,28 +1,22 @@
|
|
|
|
|
{% assign author = page.author | default: page.authors[0] | default: site.author %}
|
|
|
|
|
{% assign author = site.data.authors[author] | default: author %}
|
|
|
|
|
|
|
|
|
|
<div itemscope itemtype="https://schema.org/Person">
|
|
|
|
|
<div itemscope itemtype="https://schema.org/Person" class="h-card">
|
|
|
|
|
|
|
|
|
|
{% if author.avatar %}
|
|
|
|
|
<div class="author__avatar">
|
|
|
|
|
{% if author.home %}
|
|
|
|
|
<a href="{{ author.home | relative_url }}">
|
|
|
|
|
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image">
|
|
|
|
|
<a href="{{ author.home | default: '/' | absolute_url }}">
|
|
|
|
|
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image" class="u-photo">
|
|
|
|
|
</a>
|
|
|
|
|
{% else %}
|
|
|
|
|
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image">
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<div class="author__content">
|
|
|
|
|
{% if author.home %}
|
|
|
|
|
<a href="{{ author.home | relative_url }}"><h3 class="author__name" itemprop="name">{{ author.name }}</h3></a>
|
|
|
|
|
{% else %}
|
|
|
|
|
<h3 class="author__name" itemprop="name">{{ author.name }}</h3>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<h3 class="author__name p-name" itemprop="name">
|
|
|
|
|
<a class="u-url" rel="me" href="{{ author.home | default: '/' | absolute_url }}" itemprop="url">{{ author.name }}</a>
|
|
|
|
|
</h3>
|
|
|
|
|
{% if author.bio %}
|
|
|
|
|
<div class="author__bio" itemprop="description">
|
|
|
|
|
<div class="author__bio p-note" itemprop="description">
|
|
|
|
|
{{ author.bio | markdownify }}
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
@ -33,21 +27,21 @@
|
|
|
|
|
<ul class="author__urls social-icons">
|
|
|
|
|
{% if author.location %}
|
|
|
|
|
<li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place">
|
|
|
|
|
<i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
|
|
|
|
|
<i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name" class="p-locality">{{ author.location }}</span>
|
|
|
|
|
</li>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% if author.links %}
|
|
|
|
|
{% for link in author.links %}
|
|
|
|
|
{% if link.label and link.url %}
|
|
|
|
|
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i><span class="label">{{ link.label }}</span></a></li>
|
|
|
|
|
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer me"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i><span class="label">{{ link.label }}</span></a></li>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% if author.uri %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ author.uri }}" itemprop="url">
|
|
|
|
|
<a href="{{ author.uri }}" itemprop="url" rel="me">
|
|
|
|
|
<i class="fas fa-fw fa-link" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].website_label | default: "Website" }}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -55,7 +49,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.email %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="mailto:{{ author.email }}">
|
|
|
|
|
<a href="mailto:{{ author.email }}" rel="me" class="u-email">
|
|
|
|
|
<meta itemprop="email" content="{{ author.email }}" />
|
|
|
|
|
<i class="fas fa-fw fa-envelope-square" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</span>
|
|
|
|
|
</a>
|
|
|
|
@ -64,7 +58,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.keybase %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fas fa-fw fa-key" aria-hidden="true"></i><span class="label">Keybase</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -72,7 +66,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.twitter %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-twitter-square" aria-hidden="true"></i><span class="label">Twitter</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -80,7 +74,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.facebook %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-facebook-square" aria-hidden="true"></i><span class="label">Facebook</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -88,7 +82,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.linkedin %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span class="label">LinkedIn</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -96,7 +90,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.xing %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-xing-square" aria-hidden="true"></i><span class="label">XING</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -104,7 +98,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.instagram %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-instagram" aria-hidden="true"></i><span class="label">Instagram</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -112,7 +106,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.tumblr %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-tumblr-square" aria-hidden="true"></i><span class="label">Tumblr</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -120,7 +114,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.bitbucket %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-bitbucket" aria-hidden="true"></i><span class="label">Bitbucket</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -128,7 +122,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.github %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://github.com/{{ author.github }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://github.com/{{ author.github }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-github" aria-hidden="true"></i><span class="label">GitHub</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -136,7 +130,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.gitlab %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-gitlab" aria-hidden="true"></i><span class="label">GitLab</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -144,7 +138,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.stackoverflow %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-stack-overflow" aria-hidden="true"></i><span class="label">Stack Overflow</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -152,7 +146,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.lastfm %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-lastfm-square" aria-hidden="true"></i><span class="label">Last.fm</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -160,7 +154,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.dribbble %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-dribbble" aria-hidden="true"></i><span class="label">Dribbble</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -168,7 +162,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.pinterest %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-pinterest" aria-hidden="true"></i><span class="label">Pinterest</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -176,7 +170,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.foursquare %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-foursquare" aria-hidden="true"></i><span class="label">Foursquare</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -184,7 +178,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.steam %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-steam" aria-hidden="true"></i><span class="label">Steam</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -193,13 +187,13 @@
|
|
|
|
|
{% if author.youtube %}
|
|
|
|
|
{% if author.youtube contains "://" %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% elsif author.youtube %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -208,7 +202,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.soundcloud %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-soundcloud" aria-hidden="true"></i><span class="label">SoundCloud</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -216,7 +210,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.weibo %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-weibo" aria-hidden="true"></i><span class="label">Weibo</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -224,7 +218,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.flickr %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-flickr" aria-hidden="true"></i><span class="label">Flickr</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -232,7 +226,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.codepen %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-codepen" aria-hidden="true"></i><span class="label">CodePen</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
@ -240,7 +234,7 @@
|
|
|
|
|
|
|
|
|
|
{% if author.vine %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
|
|
|
|
<a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs" rel="nofollow noopener noreferrer me">
|
|
|
|
|
<i class="fab fa-fw fa-vine" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|