aboutsummaryrefslogtreecommitdiff
path: root/templates/gititemlog.qtpl
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2024-06-01 18:24:22 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2024-06-01 18:24:22 +0200
commitf1643ffcbd543cacfe9ab5e46eafdd0c39cd47fd (patch)
treea24d3cbb625f642c25cdc14124b8971fa9bfeb04 /templates/gititemlog.qtpl
parent4ea63e98cc999ab05d1ac98b64875d7413e86972 (diff)
downloadcerrado-f1643ffcbd543cacfe9ab5e46eafdd0c39cd47fd.tar.gz
cerrado-f1643ffcbd543cacfe9ab5e46eafdd0c39cd47fd.tar.bz2
cerrado-f1643ffcbd543cacfe9ab5e46eafdd0c39cd47fd.zip
feat: Add refs page
UI now it is a broken state. I'll all pages working first so I can better style it later.
Diffstat (limited to 'templates/gititemlog.qtpl')
-rw-r--r--templates/gititemlog.qtpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/gititemlog.qtpl b/templates/gititemlog.qtpl
index a39fb77..436c1d2 100644
--- a/templates/gititemlog.qtpl
+++ b/templates/gititemlog.qtpl
@@ -12,14 +12,14 @@ type GitItemLogPage struct {
<div class="logs">
{% for _, c := range g.Commits %}
<div class="row">
- <div class="col-sm-2">
+ <div class="col-xxl-2">
{%s TimeFormat(c.Committer.When) %}
</div>
- <div class="col-sm-7">
+ <div class="col-xxl-7">
<pre>{%s c.Message %}</pre>
</div>
- <div class="col-sm-3">
- {%s c.Committer.Name %}
+ <div class="col-xxl-3">
+ <small>{%s c.Committer.Name %}</small>
</div>
</div>
{% endfor %}