20 lines
1.2 KiB
Twig
20 lines
1.2 KiB
Twig
{% extends 'partials/base.html.twig' %}
|
|
{% set hero_image = page.media.images|first %}
|
|
|
|
{% block content %}
|
|
<article class="post">
|
|
<h2>{{ page.title }}</h2>
|
|
<div class="meta">
|
|
<p>{{ page.date|date("d.m.Y H:i") }}{% if config.plugins.readingtime.enabled %} | {{ page.content|readingtime }}{% endif %}{% if config.plugins.wordcount.enabled and grav.user.title == theme_config.owner_title %} | {{ getWordCount(content) }} {{ theme_config.wordcount_title }}{% endif %}</p>
|
|
<p>{{ theme_config.blog.tags_title|raw }}: {% for tag in page.taxonomy.tag %}<a href="{{ theme_config.blog.slug }}/tag:{{tag}}">{{ tag }}</a> {% endfor %}</p>
|
|
{% if page.taxonomy.series %}
|
|
<p>{{ theme_config.blog.series_title|raw }}: {% for series in page.taxonomy.series %}<a href="{{ theme_config.blog.slug }}/series:{{series}}">{{ series }}</a> {% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
{{ page.content | raw }}
|
|
</article>
|
|
{% if not page.header.disableSharing %}
|
|
{% include 'partials/share.html.twig' %}
|
|
{% endif %}
|
|
{% include 'partials/comments.html.twig' %}
|
|
{% endblock %} |