{# ───────────────────────────────────────────── SPB Git — Personal Git Platform ───────────────────────────────────────────── Author : Simon-Pierre Boucher Contact : contact@spboucher.ai File : src/web/views/partials/file-table.njk Purpose : Tree file table — icon, name, last commit, relative date License : MIT © Simon-Pierre Boucher ───────────────────────────────────────────── #}
| Name | Last commit | Updated |
|---|---|---|
| … | ||
| {% if entry.type == 'tree' %} {{ entry.name }} {% else %} {{ entry.name }} {% endif %} | {% set lc = lastCommits[entry.name] %} {% if lc %}{{ lc.subject | truncate(70) }}{% endif %} | {% if lc %}{{ lc.date | reltime }}{% endif %} |