ggdgsdbsdbbb / templates / user / stars.html
34 lines · 30 sloc · 653 bytes · a449238961bbd5f9081831ef9db1ac936909a3e8
Raw
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 <div class='avatar'>
11 <img src="@{app.prepare_user_avatar_url(user.avatar)}">
12 </div>
13
14 <h1>@{user.username}'s stars</h1>
15
16 @if repos.len > 0
17 @for repo in repos
18 <div class="list-item">
19 <a href="/@repo.user_name/@repo.name">
20 <h3>@repo.user_name/@repo.name</h3>
21 </a>
22 @if repo.description.len > 0
23 <p><i>@repo.description</i></p>
24 @end
25 </div>
26 @end
27 @else
28 <h2>No stars</h2>
29 @end
30 </div>
31
32 @include '../layout/footer.html'
33 </body>
34</html>
35