25 lines
888 B
HTML
25 lines
888 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block meta_content %}
|
|
{% if page.title %}
|
|
<meta property="og:title" content="soaos" />
|
|
<meta name="description" content="{{ page.title | safe }}" />
|
|
<meta property="og:description" content="{{ page.title | safe }}" />
|
|
{% else %}
|
|
<meta property="og:title" content="soaos" />
|
|
{% endif %}
|
|
{% if page.extra.coverimage %}
|
|
<meta property="og:image" content="{{ current_url | safe }}/{{ page.extra.coverimage | safe }}"/>
|
|
<meta name="twitter:card" content="summary_large_image"/>
|
|
{% endif %}
|
|
{% endblock meta_content %}
|
|
|
|
{% block content %}
|
|
<a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a>
|
|
<h1 class="title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<p class="subtitle"><strong>{{ page.date }} - reading time: {{ page.reading_time }} minutes</strong></p>
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|