2024-02-21 23:25:07 -08:00

15 lines
424 B
HTML

{%- if page.author_full -%}
<div id="author" class="portlet">
<div class="portlet-body">
{%- assign author = page.author_full -%}
<ul>
<li><a href="{{ author.url }}">{{ author.name }}</a></li>
</ul>
{%- if author.logo -%}
<img src="{{ author.logo }}" style="max-width: 100%;margin: 3px" />
{%- endif -%}
</div>
<h3>{{ site.data.i18n[site.lang].label.author }}</h3>
</div>
{%- endif -%}