{% extends "base.html" %} {% block title %}Explore Repositories - Guts{% endblock %} {% block content %}

Explore Repositories

Discover projects on the Guts network

{% for repo in repos %}
{{ repo.owner }} / {{ repo.name }}

{{ repo.description }}

{{ repo.branch_count }} branches
{% endfor %} {% if repos.is_empty() %}

No repositories yet

Create one using the CLI: guts repo create my-repo

{% endif %}
{% endblock %}