mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-28 04:56:50 +00:00
18 lines
649 B
HTML
18 lines
649 B
HTML
{% if post.author %}
|
|
{% assign author = post.author %}
|
|
{% elsif page.author %}
|
|
{% assign author = page.author %}
|
|
{% else %}
|
|
{% assign author = site.author %}
|
|
{% endif %}
|
|
{% if author %}
|
|
{% assign person = site.data.people[author] %}
|
|
{% if person %}
|
|
<span class="byline author vcard">
|
|
<a href="https://github.com/{{ person.github }}" target="_blank"><img class="author-avatar" src="https://avatars.githubusercontent.com/{{ person.github }}?size=64" alt="{{ person.name }}"/> {{ person.name }}</a>
|
|
</span>
|
|
{% else %}
|
|
<span class="byline author vcard">{% icon "mdi:person" %} {{ author }}</span>
|
|
{% endif %}
|
|
{% endif %}
|