Fix tags
gitile/pages.scm
| 192 | 192 | (pk 'tags tags) | |
| 193 | 193 | (if (null? tags) | |
| 194 | 194 | `((p "This project has no tags yet.")) | |
| 195 | - | (map (lambda (tag) (tag-box repository-name tag)) tags)))) | |
| 195 | + | (map (lambda (tag) (tag-box repository-name repo tag)) tags)))) | |
| 196 | 196 | ||
| 197 | - | (define (tag-box repository-name tag) | |
| 197 | + | (define (tag-box repository-name repo tag) | |
| 198 | 198 | (match tag | |
| 199 | 199 | (($ <mytag> name message target time) | |
| 200 | 200 | (let ((commit (get-commit repo target))) | |
… | |||
| 202 | 202 | (p (img (@ (src ,(author-image (commit-author commit)))))) | |
| 203 | 203 | (div (@ (class "tag")) | |
| 204 | 204 | (p (@ (class "tag-name")) | |
| 205 | - | (a (@ (href ,repository-name "/tree/" ,target)) ,name)p ,message) | |
| 205 | + | (a (@ (href ,repository-name "/tree/" ,target)) ,name)) | |
| 206 | 206 | (p ,message) | |
| 207 | 207 | (p (span (@ (class "author")) | |
| 208 | - | (commit-author commit)) | |
| 208 | + | ,(signature-name (commit-author commit))) | |
| 209 | 209 | (span (@ (class "date")) | |
| 210 | 210 | ,(time->date-string time))))))))) | |
| 211 | 211 | ||