Constant TEMPLATE_VERSION_INDEX
Source pub const TEMPLATE_VERSION_INDEX: &str = "<!doctype html>\n<html prefix=\"og: https://ogp.me/ns#\" lang=\"{{lang|default(value=\'en\')}}\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\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 <link rel=\"stylesheet\" href=\"../static/site.css\" />\n </head>\n <body>\n <header>\n <a href=\"../\">\u{2190} All versions</a>\n <span class=\"title\">{{ project_name }} \u{2014} {{ version }}</span>\n </header>\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=\"../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 %} {% if has_dist %}\n <h3>Downloads</h3>\n <ul>\n {% for file in dist_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 {% 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 </body>\n</html>\n";