aboutsummaryrefslogtreecommitdiff
path: root/source/_includes/post/author.html
blob: 83dd6a89a718a696b003970b945b5e046f1febcf (plain)
1
2
3
4
5
6
7
8
{% if post.author %}
  {% assign author = post.author %}
{% elsif page.author %}
  {% assign author = page.author %}
{% else %}
  {% assign author = site.author %}
{% endif %}
{% if author %}<span class="byline author vcard">Posted by <span class="fn">{{ author }}</span></span>{% endif %}