Abbaye

at 2f4eb91

<!doctype html>
<html prefix="og: https://ogp.me/ns#" lang="{{lang|default(value='en')}}">
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        {% if config.site.fediverse_creator %}<meta name="fediverse:creator" content="{{ config.site.fediverse_creator }}" />{% endif %}
        {% if config.site.opengraph %}
            <meta property="og:title" content="{{ project_name }} — {{ version }}" />
            <meta property="og:type" content="{{ config.site.opengraph.type|default(value='article') }}" />
            <meta property="og:image" content="{{config.site.base_url}}/{{ config.site.opengraph.image }}" />
            {% if config.site.opengraph.image_alt_text %}
                <meta property="og:image:alt" content="{{ config.site.opengraph.image_alt_text }}" />
            {% endif %}
            <meta property="og:url" content="{{ config.site.opengraph.url|default(value=config.site.base_url)|safe }}/{{ version }}" />
            <meta property="og:site_name" content="{{ project_name }}" />
            {% if config.site.opengraph.description %}
                <meta property="og:description" content="{{ config.site.opengraph.description }}" />
            {% endif %}
        {% endif %}
        <title>{{ project_name }} — {{ version }}</title>
        <link rel="stylesheet" href="../static/site.css" />
    </head>
    <body>
        <header>
            <a href="../">← All versions</a>
            <span class="title">{{ project_name }} — {{ version }}</span>
        </header>
        <div class="release-layout">
            <aside>
                {% if repo_url %}
                <h3>Repository</h3>
                <p><a href="{{ repo_url }}">{{ repo_url }}</a></p>
                {% endif %}
                {% if git_ui_enabled %}
                <h3>Source</h3>
                <ul>
                    <li><a href="../repository/refs.html#tag-{{ version_tag }}">Browse {{ version_tag }}</a></li>
                </ul>
                {% endif %} {% if has_docs %}
                <h3>Documentation</h3>
                <ul>
                    <li><a href="docs/">📖 API docs</a></li>
                    {% if has_docs_tarball %}
                    <li><a href="docs.tar.gz">⬇ docs.tar.gz</a></li>
                    {% endif %}
                </ul>
                {% endif %} {% if has_dist %}
                <h3>Downloads</h3>
                <ul>
                    {% for file in dist_files %}
                    <li>
                        <a href="dist/{{ file.name }}">⬇ {{ file.name }}</a>
                        <div class="dist-meta">
                            {{ file.size_human }}<br /><code title="SHA-256"
                                >sha256: {{ file.sha256 }}</code
                            >
                        </div>
                    </li>
                    {% endfor %}
                </ul>
                {% endif %}
            </aside>
            <main class="release-content">
                {{ readme_html | safe }} {% if changelog_html %}
                <hr class="changelog-divider" />
                <h2 class="changelog-heading">Changes in {{ version }}</h2>
                {{ changelog_html | safe }} {% endif %}
            </main>
        </div>
    </body>
</html>