haiku.rag/overrides/main.html
2026-05-20 16:01:14 +03:00

11 lines
625 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block extrahead %}
<meta property="og:type" content="website">
<meta property="og:title" content="{% if page.title and page.title != config.site_name %}{{ page.title }} {{ config.site_name }}{% else %}{{ config.site_name }}{% endif %}">
<meta property="og:description" content="{{ config.site_description }}">
<meta property="og:url" content="{{ page.canonical_url }}">
<meta property="og:image" content="{{ config.site_url }}img/chat-qa.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="{{ config.site_url }}img/chat-qa.png">
{% endblock %}