dash-website/_includes/author.html
2016-06-14 15:07:17 -04:00

15 lines
No EOL
410 B
HTML

{% if page.author %}
<div class="author">
<div class="divider">
<img src="/assets/images/divider-logo-mark.png">
</div>
{% 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 %}