Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}repos{% endblock %} 4{% block og_title %}repos{% endblock %} 5{% block og_description %}git repository browser{% endblock %} 6 7{% block breadcrumbs %} 8 9 {{ site.site_name }} 10 11{% endblock %} 12 13{% block content %} 14{% if repos.is_empty() %} 15No repositories found. 16{% else %} 17 18 {% for repo in repos %} 19 20 {{ repo.name }} 21 {% if let Some(desc) = &repo.description %} 22 {{ desc }} 23 {% endif %} 24 {{ repo.commit_count }} {{ repo.commit_count|pluralize("commit", "commits") }}{% if let Some(date) = &repo.last_commit %}{{ date }}{% endif %} 25 26 {% endfor %} 27 28{% endif %} 29{% endblock %}