| 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 | <h1>Security log</h1> |
| 11 | |
| 12 | .commit-day { |
| 13 | } |
| 14 | |
| 15 | @for log in logs |
| 16 | <div> |
| 17 | @log |
| 18 | |
| 19 | </div> |
| 20 | @end |
| 21 | </div> |
| 22 | |
| 23 | @include 'layout/footer.html' |
| 24 | </body> |
| 25 | </html> |
| 26 |