2013-10-14 21:50:07 +00:00
<!-- Quay -->
< div class = "navbar-header" >
2014-03-25 18:05:39 +00:00
< button type = "button" class = "navbar-toggle" data-toggle = "collapse" data-target = ".navbar-ex1-collapse" style = "padding: 0px; padding-left: 4px; padding-right: 4px;" >
2014-05-08 18:43:30 +00:00
≡
2013-10-14 21:50:07 +00:00
< / button >
2013-10-25 03:58:05 +00:00
< a class = "navbar-brand" href = "/" target = "{{ appLinkTarget() }}" >
2014-07-07 20:12:53 +00:00
< img src = "/static/img/quay-box-white.png" data-title = "Quay.io" data-placement = "bottom" bs-tooltip >
2013-10-14 21:50:07 +00:00
< / a >
< / div >
<!-- Collapsable stuff -->
< div class = "collapse navbar-collapse navbar-ex1-collapse" >
2014-04-18 21:33:50 +00:00
< ul class = "nav navbar-nav navbar-links" >
2014-05-21 18:45:54 +00:00
< li > < a ng-href = "/tour/" target = "{{ appLinkTarget() }}" > Tour< / a > < / li >
2013-10-25 03:56:08 +00:00
< li > < a ng-href = "/repository/" target = "{{ appLinkTarget() }}" > Repositories< / a > < / li >
2014-02-13 21:55:04 +00:00
< li > < a href = "http://docs.quay.io/" target = "_blank" > Docs< / a > < / li >
2014-02-06 02:00:04 +00:00
< li > < a ng-href = "/tutorial/" target = "{{ appLinkTarget() }}" > Tutorial< / a > < / li >
2014-04-29 04:45:42 +00:00
< li quay-require = "['BILLING']" > < a ng-href = "/plans/" target = "{{ appLinkTarget() }}" > Pricing< / a > < / li >
2014-05-21 18:45:54 +00:00
< li > < a ng-href = "{{ user.organizations.length ? '/organizations/' : '/tour/organizations/' }}" target = "{{ appLinkTarget() }}" > Organizations< / a > < / li >
2013-10-14 21:50:07 +00:00
< / ul >
< ul class = "nav navbar-nav navbar-right" ng-switch on = "user.anonymous" >
2013-11-19 00:19:57 +00:00
< li >
2013-11-18 23:42:27 +00:00
< form class = "navbar-form navbar-left" role = "search" >
< div class = "form-group" >
2013-11-19 00:19:57 +00:00
< span class = "repo-search" > < / span >
2013-11-18 23:42:27 +00:00
< / div >
< / form >
< span class = "navbar-left user-tools" ng-show = "!user.anonymous" >
2014-06-02 18:37:29 +00:00
< a href = "/new/" > < i class = "fa fa-upload user-tool" bs-tooltip = "tooltip.title" data-placement = "bottom" data-title = "Create new repository" data-container = "body" > < / i > < / a >
2013-11-18 23:42:27 +00:00
< / span >
< / li >
2013-10-14 21:50:07 +00:00
2013-10-24 21:41:55 +00:00
< li class = "dropdown" ng-switch-when = "false" >
2014-05-07 19:59:45 +00:00
< a href = "javascript:void(0)" class = "dropdown-toggle user-dropdown user-view" data-toggle = "dropdown" >
2013-10-14 21:50:07 +00:00
< img src = "//www.gravatar.com/avatar/{{ user.gravatar }}?s=32&d=identicon" / >
{{ user.username }}
2014-03-12 04:49:46 +00:00
< span class = "badge user-notification notification-animated"
ng-show="notificationService.notifications.length"
ng-class="notificationService.notificationClasses"
bs-tooltip=""
2014-04-11 22:21:13 +00:00
data-title="User Notifications"
2013-12-21 03:48:47 +00:00
data-placement="left"
data-container="body">
2014-03-12 04:49:46 +00:00
{{ notificationService.notifications.length }}
2013-12-19 04:03:19 +00:00
< / span >
2013-10-14 21:50:07 +00:00
< b class = "caret" > < / b >
< / a >
< ul class = "dropdown-menu" >
< li >
2013-10-25 03:56:08 +00:00
< a href = "/user/" target = "{{ appLinkTarget() }}" >
2013-10-14 21:50:07 +00:00
Account Settings
2014-03-12 04:49:46 +00:00
< / a >
< / li >
< li ng-if = "notificationService.notifications.length" >
< a href = "javascript:void(0)" data-template = "/static/directives/notification-bar.html"
data-animation="am-slide-right" bs-aside="aside" data-container="body">
Notifications
< span class = "badge user-notification"
ng-class="notificationService.notificationClasses"
ng-show="notificationService.notifications.length">
{{ notificationService.notifications.length }}
2013-12-19 04:03:19 +00:00
< / span >
2013-10-14 21:50:07 +00:00
< / a >
< / li >
2013-11-07 06:48:58 +00:00
< li > < a ng-href = "/organizations/" target = "{{ appLinkTarget() }}" > Organizations< / a > < / li >
2014-04-10 04:26:55 +00:00
< li ng-if = "user.super_user" > < a href = "/superuser/" > < strong > Super User Admin Panel< / strong > < / a > < / li >
2013-10-14 21:50:07 +00:00
< li > < a href = "javascript:void(0)" ng-click = "signout()" > Sign out< / a > < / li >
< / ul >
< / li >
< li ng-switch-default >
2014-05-07 19:59:45 +00:00
< a class = "user-view" href = "/signin/" target = "{{ appLinkTarget() }}" > Sign in< / a >
2013-10-14 21:50:07 +00:00
< / li >
< / ul >
2013-10-17 18:46:23 +00:00
< / div > <!-- /.navbar - collapse -->