mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-06-21 19:10:45 -04:00
14 lines
470 B
HTML
14 lines
470 B
HTML
{% extends "!layout.html" %}
|
|
|
|
{% block body %}
|
|
{% if READTHEDOCS and current_version != "stable" %}
|
|
<div class="admonition warning">
|
|
<p class="admonition-title">Development Docs</p>
|
|
<p>You are reading docs for <strong>ArchiveBox {{ version }}</strong> (pre-release).
|
|
These docs may include unreleased features and breaking changes.
|
|
For the latest stable release, see the <a href="/en/stable/">stable docs</a>.</p>
|
|
</div>
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}
|