2015-09-30 01:21:17 +00:00
|
|
|
extends base
|
|
|
|
|
|
|
|
block append head
|
|
|
|
title Dashboard
|
|
|
|
|
2015-10-02 23:47:54 +00:00
|
|
|
block header
|
|
|
|
ol
|
|
|
|
li Dashboard
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
block content
|
|
|
|
div.container
|
2015-10-02 23:47:54 +00:00
|
|
|
if len(Repos) == 0
|
|
|
|
div.alert.alert-info
|
|
|
|
| Your repository list is empty.
|
2015-09-30 01:21:17 +00:00
|
|
|
|
2015-10-02 23:47:54 +00:00
|
|
|
div.row.repo-row
|
|
|
|
each $repo in Repos
|
|
|
|
div.col-sm-4
|
|
|
|
a.card[href="/"+$repo.FullName]
|
|
|
|
div.card-header
|
|
|
|
img.avatar[src=$repo.Avatar]
|
|
|
|
div.card-block
|
|
|
|
h3.login #{$repo.Name}
|