woodpecker/server/app/views/header.html

12 lines
290 B
HTML
Raw Normal View History

<table border="1">
<tr ng-if="user != null">
<td><a href="/">Home</a></td>
<td><a href="/account/profile">{{ user.login }}</a></td>
<td><img ng-src="{{ user.gravatar | gravatar }}" /></td>
</tr>
<tr ng-if="user == null">
<td>
<a href="/login">Login</a>
</td>
</tr>
</table>