|
|
|
@ -1,22 +1,12 @@ |
|
|
|
|
<div class="ui container" id="navbar"> |
|
|
|
|
<div class="ui container" style="padding-top: 4px;" id="navbar"> |
|
|
|
|
{{$notificationUnreadCount := 0}} |
|
|
|
|
{{if .IsSigned}} |
|
|
|
|
{{if .NotificationUnreadCount}}{{$notificationUnreadCount = call .NotificationUnreadCount}}{{end}} |
|
|
|
|
{{end}} |
|
|
|
|
<div class="item brand" style="justify-content: space-between;"> |
|
|
|
|
<div class="left item brand" style="justify-content: space-between;padding-top: 1px;margin-right: 0px!important;"> |
|
|
|
|
<a href="{{AppSubUrl}}/" aria-label="{{if .IsSigned}}{{.locale.Tr "dashboard"}}{{else}}{{.locale.Tr "home"}}{{end}}"> |
|
|
|
|
<img width="30" height="30" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{.locale.Tr "logo"}}" aria-hidden="true"> |
|
|
|
|
<span style="font-size: 2em;color: #046380;">code</span>.tokarch.uk |
|
|
|
|
</a> |
|
|
|
|
{{if .IsSigned}} |
|
|
|
|
<a href="{{AppSubUrl}}/notifications" class="tooltip mobile-only" data-content='{{.locale.Tr "notifications"}}'> |
|
|
|
|
<span class="text black"> |
|
|
|
|
<span class="fitted">{{svg "octicon-bell"}}</span> |
|
|
|
|
<span class="ui red label mini{{if not $notificationUnreadCount}} hidden{{end}} notification_count"> |
|
|
|
|
{{$notificationUnreadCount}} |
|
|
|
|
</span> |
|
|
|
|
</span> |
|
|
|
|
</a> |
|
|
|
|
{{end}} |
|
|
|
|
<div class="ui basic icon button mobile-only" id="navbar-expand-toggle"> |
|
|
|
|
<i class="sidebar icon"></i> |
|
|
|
|
</div> |
|
|
|
@ -92,7 +82,7 @@ |
|
|
|
|
<a class="stopwatch-link df ac" href="{{.ActiveStopwatch.IssueLink}}"> |
|
|
|
|
{{svg "octicon-issue-opened" 16 "mr-3"}} |
|
|
|
|
<span class="stopwatch-issue">{{.ActiveStopwatch.RepoSlug}}#{{.ActiveStopwatch.IssueIndex}}</span> |
|
|
|
|
<span class="ui primary label stopwatch-time my-0 mx-4" data-seconds="{{.ActiveStopwatch.Seconds}}"> |
|
|
|
|
<span class="ui label blue stopwatch-time my-0 mx-4" data-seconds="{{.ActiveStopwatch.Seconds}}"> |
|
|
|
|
{{if .ActiveStopwatch}}{{Sec2Time .ActiveStopwatch.Seconds}}{{end}} |
|
|
|
|
</span> |
|
|
|
|
</a> |
|
|
|
@ -121,6 +111,9 @@ |
|
|
|
|
<a href="{{AppSubUrl}}/notifications" class="item tooltip not-mobile" data-content="{{.locale.Tr "notifications"}}" aria-label="{{.locale.Tr "notifications"}}"> |
|
|
|
|
<span class="text"> |
|
|
|
|
<span class="fitted">{{svg "octicon-bell"}}</span> |
|
|
|
|
<span class="sr-mobile-only">{{.i18n.Tr "notifications"}}</span> |
|
|
|
|
{{$notificationUnreadCount := 0}} |
|
|
|
|
{{if .NotificationUnreadCount}}{{$notificationUnreadCount = call .NotificationUnreadCount}}{{end}} |
|
|
|
|
<span class="ui red label {{if not $notificationUnreadCount}}hidden{{end}} notification_count"> |
|
|
|
|
{{$notificationUnreadCount}} |
|
|
|
|
</span> |
|
|
|
|