@include '../layout/head.html' @include '../layout/header.html'

@{user.username}'s repositories

@if repos.len > 0
@for repo in repos
@repo.name @if repo.is_public Public @else Private @end
@if repo.latest_commit_at > 0 || repo.created_at > 0
@if repo.created_at > 0 Created @{repo.created_str()} @end Last activity @{repo.last_activity_str()}
@end
@if repo.description.len > 0

@repo.description

@end
@end
@else

No repositories yet.

@end
@include '../layout/footer.html'