Constant TEMPLATE_VERSION_INDEX_HTML
Source pub const TEMPLATE_VERSION_INDEX_HTML: &str = "{% extends \"base.html\" %}\n{% block head %}\n {% if config.site.fediverse_creator %}<meta name=\"fediverse:creator\" content=\"{{ config.site.fediverse_creator }}\" />{% endif %}\n {% if config.site.opengraph %}\n <meta property=\"og:title\" content=\"{{ project_name }} \u{2014} {{ version }}\" />\n <meta property=\"og:type\" content=\"{{ config.site.opengraph.type|default(value=\'article\') }}\" />\n <meta property=\"og:image\" content=\"{{config.site.base_url}}/{{ config.site.opengraph.image }}\" />\n {% if config.site.opengraph.image_alt_text %}\n <meta property=\"og:image:alt\" content=\"{{ config.site.opengraph.image_alt_text }}\" />\n {% endif %}\n <meta property=\"og:url\" content=\"{{ config.site.opengraph.url|default(value=config.site.base_url)|safe }}/{{ version }}\" />\n <meta property=\"og:site_name\" content=\"{{ project_name }}\" />\n {% if config.site.opengraph.description %}\n <meta property=\"og:description\" content=\"{{ config.site.opengraph.description }}\" />\n {% endif %}\n {% endif %}\n <title>{{ project_name }} \u{2014} {{ version }}</title>\n{% endblock %}\n{% block header %}\n <a href=\"{{ root_path | default(value=\'\') }}\">\u{2190} All versions</a>\n <span class=\"title\">{{ project_name }} \u{2014} {{ version }}</span>\n{% endblock %}\n{% block body %}\n <div class=\"release-layout\">\n <aside>\n {% if repo_url %}\n <h3>Repository</h3>\n <p><a href=\"{{ repo_url }}\">{{ repo_url }}</a></p>\n {% endif %}\n {% if git_ui_enabled %}\n <h3>Source</h3>\n <ul>\n <li><a href=\"{{ root_path | default(value=\'\') }}repository/refs.html#tag-{{ version_tag }}\">Browse {{ version_tag }}</a></li>\n </ul>\n {% endif %} {% if has_docs %}\n <h3>Documentation</h3>\n <ul>\n <li><a href=\"docs/\">\u{1f4d6} API docs</a></li>\n {% if has_docs_tarball %}\n <li><a href=\"docs.tar.gz\">\u{2b07} docs.tar.gz</a></li>\n {% endif %}\n </ul>\n {% endif %}\n {% if has_dist %}\n <h3>Downloads</h3>\n {% for cat in dist_categories %}\n {% if cat.category %}\n <h4>{{ cat.category }}</h4>\n {% endif %}\n {% for group in cat.groups %}\n {% if group.name %}\n <h5>{{ group.name }}</h5>\n {% endif %}\n {% if group.comment %}\n <p class=\"dist-comment\">{{ group.comment }}</p>\n {% endif %}\n <ul>\n {% for file in group.files %}\n <li>\n <a href=\"dist/{{ file.name }}\">\u{2b07} {{ file.name }}</a>\n <div class=\"dist-meta\">\n {{ file.size_human }}<br /><code title=\"SHA-256\"\n >sha256: {{ file.sha256 }}</code\n >\n </div>\n </li>\n {% endfor %}\n </ul>\n {% endfor %}\n {% endfor %}\n {% endif %}\n </aside>\n <main class=\"release-content\">\n {{ readme_html | safe }} {% if changelog_html %}\n <hr class=\"changelog-divider\" />\n <h2 class=\"changelog-heading\">Changes in {{ version }}</h2>\n {{ changelog_html | safe }} {% endif %}\n </main>\n </div>\n{% endblock %}\n";