{# ───────────────────────────────────────────── SPB Git — Personal Git Platform ───────────────────────────────────────────── Author : Simon-Pierre Boucher Contact : contact@spboucher.ai File : src/web/views/home.njk Purpose : Home — hero, pinned repos, repo index, activity, heatmap License : MIT © Simon-Pierre Boucher ───────────────────────────────────────────── #}{% extends "layout.njk" %} {% block content %}

{{ owner.name }}

{{ owner.tagline }} · {{ owner.email }}

{{ stats.repos | num }} repos {{ stats.commits | num }} commits {{ stats.languages | num }} languages
{% if pinned.length %}

Pinned

{% for repo in pinned %}{% include "partials/repo-card.njk" %}{% endfor %}
{% endif %}

Repositories

{% for repo in overviews %}{% include "partials/repo-card.njk" %}{% endfor %} {% if not overviews.length %}

No repositories yet. Create the first one:

spbgit create hello-world --push
{% endif %}

{{ heatmap.total | num }} commits in the last year

{{ heatmap.svg | safe }}
{% endblock %}