Files
website/theme-overrides/blog_post.html
Jon Lockwood 08bdf09d30 feat(blog_post): remove meta.description from page
the meta.description is not required on the article.

MR !5
2022-01-29 14:16:31 +09:30

9 lines
164 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ page.title }}</h1>
{% include "partials/blog_metadata.html" %}
<hr>
{{ page.content }}
{% endblock %}