diff options
Diffstat (limited to 'templates/gitlist.qtpl')
-rw-r--r-- | templates/gitlist.qtpl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/templates/gitlist.qtpl b/templates/gitlist.qtpl index fa47008..fc047eb 100644 --- a/templates/gitlist.qtpl +++ b/templates/gitlist.qtpl @@ -18,9 +18,14 @@ type GitListPage struct { <div class="event-list"> {% for _, r := range p.Respositories %} <div class="event"> - <h4> - <a href="/{%s r.Name %}/">{%s r.Name %}</a> - </h4> + <div class="row"> + <div class="col-md"> + <a href="/{%s r.Name %}/">{%s r.Name %}</a> + </div> + <div class="col-md text-md-end"> + <small>{% if !r.Public %}private{% endif %}</small> + </div> + </div> </hr> <p>{%s r.Description %}</p> <p> |