mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
15 lines
506 B
HTML
15 lines
506 B
HTML
{% if page.author %}
|
|
<div class="generated-sidebar portlet" id="p-author" role="author">
|
|
<h3>{{ site.data.i18n[site.lang].label.author }}</h3>
|
|
<div class="portlet-body">
|
|
{% assign author = site.data.users[page.author] %}
|
|
<ul>
|
|
<li><a href="/{{ site.data.i18n[site.lang].prefix.user }}{{ page.author }}.html">{{ author.name }}</a></li>
|
|
</ul>
|
|
{% if author.logo %}
|
|
<img src="/{{ author.logo }}" style="max-width: 100%;margin: 3px" />
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|