Remove stray div in commit page
gitile/pages.scm
196 | 196 | (define (project-commit repository-name repo ref) | |
197 | 197 | (let* ((commit (get-commit repo ref)) | |
198 | 198 | (parent (commit-parent commit))) | |
199 | - | `(div | |
200 | - | ,(commit-infobox repository-name commit #:open? #t) | |
199 | + | `(,(commit-infobox repository-name commit #:open? #t) | |
201 | 200 | (p (@ (class "commit-summary")) ,(commit-summary commit)) | |
202 | 201 | (pre (@ (class "diff")) | |
203 | 202 | ,(diff->string (diff-tree-to-tree repo (commit-tree parent) |