{% extends "base.html" %}
{% block extrahead %}
{% if page and page.meta and page.meta.description %}
{% set page_description = page.meta.description %}
{% else %}
{% set page_description = config.site_description %}
{% endif %}
{% if page and page.meta and page.meta.keywords %}
{% endif %}
{% if page and page.meta and page.meta.robots %}
{% else %}
{% endif %}
{% if page and page.file %}
{% set src = page.file.src_path %}
{% set base = "https://kasperjunge.github.io/agent-resources/" %}
{% if src == "index.md" %}
{% elif src in ("tutorial.md", "concepts.md") %}
{% elif src in ("tools.md", "skills.md", "teams.md", "configuration.md", "agrx.md") %}
{% elif src in ("creating.md", "sdk.md") %}
{% elif src in ("reference.md", "troubleshooting.md", "changelog.md") %}
{% endif %}
{% endif %}
{% if page and page.file and page.file.src_path == "troubleshooting.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "creating.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "tutorial.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "teams.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "agrx.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "configuration.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "tools.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "sdk.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "reference.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "concepts.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "changelog.md" %}
{% endif %}
{% if page and page.file and page.file.src_path == "skills.md" %}
{% endif %}
{% endblock %}