{% extends "base.html" %} {% import "macros/content_nav.html" as content_nav %} {% import "macros/docs_sidebar.html" as docs_sidebar %} {% block title %}{{ page.title }} — MonaDB{% endblock title %} {% block description %}{{ page.description }}{% endblock description %} {% block content %} {% set is_guide = current_path is containing('/guide/') %} {% set show_page_title = is_guide or page.slug in ["installation", "tutorial", "reference", "design"] %}
{{ docs_sidebar::render_docs_sidebar() }}
{% if page.toc %}
{% endif %}
{% if show_page_title %}

{{ page.title }}

{% endif %} {{ page.content | safe }}
{% if page.toc %} {% endif %}
{% endblock content %}