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{% if tagger.is_some() || tag_date.is_some() %} 18 19 {% if let Some(tagger) = tagger %} 20 tagger{{ tagger }} 21 {% endif %} 22 {% if let Some(date) = tag_date %} 23 tagged{{ date }} 24 {% endif %} 25 26{% endif %} 27 28 29 commit{{ commit_sha }} 30 author{{ commit_author }} 31 date{{ commit_date }} 32 33 34 35 [tar.gz] 36 [tar.xz] 37 [zip] 38 39 40{% if let Some(message) = message %} 41{{ message }} 42{% endif %} 43{% endblock %}