| 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | @include 'layout/head.html' |
| 5 | </head> |
| 6 | <body> |
| 7 | @include 'layout/header.html' |
| 8 | |
| 9 | <div class="content"> |
| 10 | @include 'layout/repo_menu.html' |
| 11 | |
| 12 | <h1>Branches</h1> |
| 13 | |
| 14 | .branches { |
| 15 | @for branch in branches |
| 16 | .branch { |
| 17 | .clog-block { |
| 18 | .clog { |
| 19 | .clog-msg { |
| 20 | <a href='/@repo.user_name/@repo.name/tree/@branch.name'>@branch.name</a> |
| 21 | } |
| 22 | |
| 23 | <span >@branch.author</span> |
| 24 | |
| 25 | span.clog-time { |
| 26 | updated @branch.relative() |
| 27 | } |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 | @end |
| 32 | } |
| 33 | </div> |
| 34 | |
| 35 | @include 'layout/footer.html' |
| 36 | </body> |
| 37 | </html> |
| 38 | |
| 39 | |