21 lines
548 B
HTML
21 lines
548 B
HTML
|
{% extends "layout/default.html" %}
|
||
|
|
||
|
{% block title%}{{ post.metadata.title }}{% endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
<article itemprop="blogPost" itemscope="" itemtype="https://schema.org/BlogPosting">
|
||
|
<meta itemprop="mainEntityOfPage" content="https://{{ Self::domain() }}{{ self.permalink() }}">
|
||
|
<h1 class="article-title" itemprop="name headline">
|
||
|
{{ post.metadata.title }}
|
||
|
</h1>
|
||
|
{% include "includes/article-meta.html" %}
|
||
|
<div class="article-content" itemprop="articleBody">
|
||
|
{{ post.content|safe }}
|
||
|
</div>
|
||
|
</article>
|
||
|
|
||
|
{%- endblock %}
|
||
|
|
||
|
|