Fix unbound variable
gitile/pages.scm
94 | 94 | "/commit/" ,(oid->string | |
95 | 95 | (commit-id commit)))) | |
96 | 96 | ,(commit-message commit))) | |
97 | - | (td ,(commit->date-string commit)))))) | |
97 | + | (td ,(time->date-string (commit-time commit))))))) | |
98 | 98 | files)))))))) | |
99 | 99 | ||
100 | 100 | (define get-config-string | |
… | |||
200 | 200 | (($ <mytag> name message target time) | |
201 | 201 | `(div (@ (class "tag-box")) | |
202 | 202 | (div (@ (class "tag")) | |
203 | - | (p (a (@ (href ,repository-name "/tree/" ,target)) ,name)) | |
204 | - | (p (span (@ (class "date")) | |
203 | + | (p (@ (class "tag-name")) | |
204 | + | (a (@ (href ,repository-name "/tree/" ,target)) ,name)) | |
205 | + | (p (span (@ (class "author"))) | |
206 | + | (span (@ (class "date")) | |
205 | 207 | ,(time->date-string time)))) | |
206 | 208 | (p ,message))))) | |
207 | 209 |