{# Goblet - Web based git repository browser Copyright (C) 2012-2014 Dennis Kaarsemaker See the LICENSE file for licensing details #} {% extends "base.html" %} {% block title %}Git repositories on {{ request.host }}{% endblock %} {% block content %} {% if config['ABOUT'] %}
{{ config['ABOUT']|safe }}
{% endif %}

Git repositories on {{ request.host }}

{% for repo in repos %}

{{ repo.name }} by {{ repo.owner }}

{{ repo.description }}
{% if repo.head %} Last updated {{ repo[repo.head.target].commit_time|humantime }}, by {{ repo[repo.head.target].author.name }} {% else %} No commits yet {% endif %}
{% endfor %} {% endblock %}