17 lines
No EOL
330 B
HTML
17 lines
No EOL
330 B
HTML
|
|
|
|
{% extends "pathed_content.html" %}
|
|
|
|
{% block opengraph_tags %}
|
|
{{ parent() }}
|
|
|
|
<meta property="og:type" content="article" />
|
|
{%endblock %}
|
|
|
|
{%block content_article%}
|
|
{% if page.title and (page.title != page.basename) %}
|
|
<h1 class="content-title"> {{ page.title }} </h1>
|
|
{% endif %}
|
|
|
|
{{ page.html|raw }}
|
|
{% endblock %} |