30 lines
No EOL
1 KiB
Text
30 lines
No EOL
1 KiB
Text
---
|
|
layout: base.njk
|
|
title: Adrian Victor:Blog
|
|
---
|
|
{% set altLanguages = collections.post | alternateLanguages(postId, langKey) %}
|
|
{% from "macros.njk" import videoCard with context %}
|
|
|
|
<main>
|
|
<article>
|
|
<div id="postHeader">
|
|
<h1>{{ postTitle }}</h1>
|
|
<p>{{ authors or "Adrian Victor" }} - {{ date | postDate }}</p>
|
|
{% if altLanguages.length > 0 %}
|
|
{{ i18n[langKey].availableInOtherLanguages }}:
|
|
{% for alt in altLanguages %}
|
|
<li class="inlineList">
|
|
<a href="{{ alt.url }}" hreflang="{{ alt.lang }}">
|
|
{{ i18n[alt.lang].language }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
{% if postVideoLink and postVideoImage and postVideoTitle and postVideoWebsite %}
|
|
{{ videoCard(postVideoLink, postVideoTitle, postVideoImage, postVideoWebsite, postVideoDuration) }}
|
|
{% endif %}
|
|
|
|
{{ content | safe }}
|
|
</article>
|
|
</main> |