craft-letter/themes/blue-penguin/templates/article.html
Pascal Le Merrer 928e3afebd Track theme
2026-02-22 15:46:50 +01:00

21 lines
523 B
HTML

{% extends "base.html" %}
{% block head %}
{{ super() }}
{% if article.tags %}
<meta name="keywords" content="{{ article.tags|join(",") }}" />
{% endif %}
{% if article.description %}
<meta name="description" content="{{ article.description }}" />
{% endif %}
<script type="application/ld+json">
{{ article.jsonld }}
</script>
{% endblock %}
{% block title %}{{ SITENAME }} | {{ article.title }}{% endblock %}
{% block content %}
{% include "article_stub.html" %}
{% endblock %}