You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
614 B
11 lines
614 B
{% if page.author %}
|
|
{% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.owner %}
|
|
{% endif %}
|
|
|
|
<div class="author-image">
|
|
<img src="{{ site.url }}/images/{{ author.avatar }}" alt="{{ author.name }}">
|
|
</div><!-- ./author-image -->
|
|
<div class="author-content">
|
|
<h3 class="author-name" >{{ site.data.messages.locales[site.locale].written_by }} {% if author.web %}<a href="{{ author.web }}" itemprop="author">{{ author.name }}</a>{% else %}<span itemprop="author">{{ author.name }}</span>{% endif %}</h3>
|
|
<p class="author-bio">{{ author.bio }}</p>
|
|
</div><!-- ./author-content -->
|