diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-01 18:24:22 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-01 18:24:22 +0200 |
commit | f1643ffcbd543cacfe9ab5e46eafdd0c39cd47fd (patch) | |
tree | a24d3cbb625f642c25cdc14124b8971fa9bfeb04 /templates/gititemlog.qtpl.go | |
parent | 4ea63e98cc999ab05d1ac98b64875d7413e86972 (diff) | |
download | cerrado-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.go')
-rw-r--r-- | templates/gititemlog.qtpl.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/gititemlog.qtpl.go b/templates/gititemlog.qtpl.go index cc5652d..e63c871 100644 --- a/templates/gititemlog.qtpl.go +++ b/templates/gititemlog.qtpl.go @@ -69,26 +69,26 @@ func (g *GitItemLogPage) StreamGitContent(qw422016 *qt422016.Writer) { //line gititemlog.qtpl:13 qw422016.N().S(` <div class="row"> - <div class="col-sm-2"> + <div class="col-xxl-2"> `) //line gititemlog.qtpl:16 qw422016.E().S(TimeFormat(c.Committer.When)) //line gititemlog.qtpl:16 qw422016.N().S(` </div> - <div class="col-sm-7"> + <div class="col-xxl-7"> <pre>`) //line gititemlog.qtpl:19 qw422016.E().S(c.Message) //line gititemlog.qtpl:19 qw422016.N().S(`</pre> </div> - <div class="col-sm-3"> - `) + <div class="col-xxl-3"> + <small>`) //line gititemlog.qtpl:22 qw422016.E().S(c.Committer.Name) //line gititemlog.qtpl:22 - qw422016.N().S(` + qw422016.N().S(`</small> </div> </div> `) |