Files
viessm_h 5272dd658a
Build and deploy documentation / build-and-deploy-docs (push) Successful in 26s
add meta data support for LLMs
2026-05-11 12:33:28 +02:00

15 lines
580 B
HTML

{% extends "base.html" %}
{% block extrahead %}
{% set title = config.site_name %}
{% if page and page.meta and page.meta.title %}
{% set title = title ~ " - " ~ page.meta.title %}
{% elif page and page.title and not page.is_homepage %}
{% set title = title ~ " - " ~ page.title | striptags %}
{% endif %}
<meta property="og:type" content="website" />
<meta property="og:title" content="{{ title }}" />
<meta property="og:description" content="{{ config.site_description }}" />
<meta property="og:url" content="{{ page.canonical_url }}" />
{% endblock %}