dash-website/_includes/author.html
Perry Woodin 01c297d5e7 Blog section
The blog is driven by the _posts directory nested in each language.
2016-07-14 14:05:47 -04:00

12 lines
No EOL
328 B
HTML

{% if page.author %}
<div class="author">
{% assign author = site.data.people[page.author] %}
<img src="{{ author.image }}" class="author-icon img-circle"><br />
<a rel="author"
href="https://twitter.com/{{ author.twitter }}"
title="{{ author.name }}"
target="_blank">
{{ author.name }}
</a>
</div>
{% endif %}