Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}{{ tag }} — {{ repo }}{% endblock %} 4 5{% block breadcrumbs %} 6 7 {{ crate::hostname() }} 8 {{ repo }} 9 tags 10 {{ tag }} 11 12{% endblock %} 13 14{% block content %} 15{{ tag }} 16 17 18 Archive 19 20 {{ repo }}-{{ tag }}.tar.gztar.gz 21 {{ repo }}-{{ tag }}.tar.xztar.xz 22 {{ repo }}-{{ tag }}.zipzip 23 24 25 26 27 28 29 Tree 30 [{{ commit_sha[..8] }}] 31 [>] 32 33 34 35{% if tagger.is_some() || tag_date.is_some() %} 36 37 {% if let Some(tagger) = tagger %} 38 tagger{{ tagger }} 39 {% endif %} 40 {% if let Some(date) = tag_date %} 41 tagged{{ date }} 42 {% endif %} 43 44{% endif %} 45 46 47 commit{{ commit_sha }} 48 author{{ commit_author }} 49 date{{ commit_date }} 50 51 52{% if let Some(message) = message %} 53{{ message }} 54{% endif %} 55{% endblock %}