summary refs log tree commit diff
path: root/layouts/single.log.jinja
blob: d9026c649495ec26a91462f04886ef43c7a9a6ca5f7ae72694ffc9d00196534e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'base.jinja' %}

{% block content %}
  <article lang="{{ page.language }}">
    <h1>{{ page.title }}</h1>
    {{ page.content | safe }}
  </article>
  <p>Published on <time datetime={{page.date}}>{{ page.date}}</time>

  {% if page.prev %}
    <p>Previous post: <a href="{{page.prev.rel_permalink}}">{{ page.prev.title }}</a>
  {% endif %}
  {% if page.next %}
    <p>Next post: <a href="{{page.next.rel_permalink}}">{{ page.next.title }}</a>
  {% endif %}
{% endblock content %}