{# Macros #} {% macro og(name, content) %}{% endmacro %} {% macro tw(name, content) %}{% endmacro %} {% macro fav(filename) %}{{ ("fav/" + filename)|static }}{% endmacro %} {# Variable Declarations #} {% if page.title|lower == 'home' %} {% set title="New Horizons Documentation" %} {% else %} {% set title=page.title|title + " - New Horizons Documentation" %} {% endif %} {% set desc="Documentation for creating planets with the New Horizons mod for Outer Wilds" %} {% if page.description %} {% set desc=page.description %} {% endif %} {% set img="images/home/home_logo.webp"|static|full_url %} {% set canonical=page.title|route|full_url %} {% set theme_color="#222222" %} {# Meta Info #} {{ title }} {# OpenGraph Info #} {{ og("type", "website") }} {{ og("title", title) }} {{ og("description", desc) }} {{ og("url", canonical) }} {{ og("image", img) }} {{ og("image:alt", "The New Horizons Logo") }} {# Twitter Info #} {{ tw("title", title) }} {{ tw("description", desc) }} {{ tw("card", "summary_large_image") }} {{ tw("image", img) }} {# Favicons #}