{% extends "base.html" %}
{% block announce %}
Upgrade to LeakCanary {{config.extra.leak_canary.release}} 🐤 Want to help? Here's how you can contribute 🙏
{% endblock %}
{% block content %}
{% if page.edit_url %}
{% if "/api/" in page.edit_url %}
🤔 Documentation issue? Report it
{% else %}
🤔 Documentation issue? Report or edit
{% endif %}
{% endif %}
{% block source %}
{% if page and page.meta and page.meta.source %}
{% include "partials/source-link.html" %}
{% endif %}
{% endblock %}
{% if not "\x3ch1" in page.content %}
{{ page.title | default(config.site_name, true)}}
{% endif %}
{{ page.content }}
{% if page and page.meta %}
{% if page.meta.git_revision_date_localized or
page.meta.revision_date
%}
{% include "partials/source-date.html" %}
{% endif %}
{% endif %}
{% endblock %}