52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
<div class="author">
|
|
{% if author %}
|
|
{% if author.profilePic %}
|
|
{% if author.url %}
|
|
<a href="{{ author.url }}">
|
|
{% endif %}
|
|
<img class="profilePic" src="{{ author.profilePic }}">
|
|
{% if author.url %}
|
|
</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
<p>
|
|
{% if author.url %}
|
|
<a href="{{ author.url }}">
|
|
{% endif %}
|
|
{% if author.name %}
|
|
<span class="authorName">{{ author.name }}</span>
|
|
{% endif %}
|
|
{% if author.url %}
|
|
</a>
|
|
{% endif %}
|
|
{% if author.bio %}
|
|
<span class="authorBio">{{ author.bio | markdownify | safe }}</span>
|
|
{% endif %}
|
|
</p>
|
|
{% else %}
|
|
{% if metadata.author.profilePic %}
|
|
{% if metadata.author.url %}
|
|
<a href="{{ metadata.author.url }}">
|
|
{% endif %}
|
|
<img class="profilePic" src="{{ metadata.author.profilePic }}">
|
|
{% if metadata.author.url %}
|
|
</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
<p>
|
|
{% if metadata.author.url %}
|
|
<a href="{{ metadata.author.url }}">
|
|
{% endif %}
|
|
{% if metadata.author.name %}
|
|
<span class="authorName">{{ metadata.author.name }}</span>
|
|
{% endif %}
|
|
{% if metadata.author.url %}
|
|
</a>
|
|
{% endif %}
|
|
{% if metadata.author.bio %}
|
|
<span class="authorBio">{{ metadata.author.bio | markdownify | safe }}</span>
|
|
{% endif %}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|