First version

This commit is contained in:
Alexis Hassler
2019-04-12 23:08:34 +02:00
commit 61baeb1807
41 changed files with 1383 additions and 0 deletions

14
_includes/user.html Normal file
View File

@@ -0,0 +1,14 @@
{% 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 %}