2018-08-01 11:01:02 +02:00
< nav aria-label = "Navigation" >
< a href = "{{ with .Site.BaseURL }}{{ . }}{{ else }}{{ .Site.BaseURL }}{{ end }}" class = "project" >
< div class = "banner" >
{{ with .Site.Params.logo }}
< div class = "logo" >
< img src = "{{ $.Site.BaseURL }}{{ . }}" >
< / div >
{{ end }}
< div class = "name" >
< strong > {{ .Site.Title }}™ {{ with .Site.Params.version }}< span class = "version" > {{ . }}< / span > {{ end }}< / strong >
{{ with .Scratch.Get "repo_id" }}
< br >
{{ . }}
{{ end }}
< / div >
< / div >
< / a >
< div class = "scrollable" >
< div class = "wrapper" >
{{ if (eq (trim .Site.Params.provider " " | lower) "github") | and (isset .Site.Params "repo_url") }}
< ul class = "repo" >
< li class = "repo-download" >
2023-01-10 07:59:27 +01:00
< a href = "https://hawkbit.eclipseprojects.io" target = "_blank" title = "hawkBit Sandbox" data-action = "sandbox" >
2018-08-23 13:29:08 +02:00
< i class = "fas fa-desktop" > < / i > Sandbox
2018-08-01 11:01:02 +02:00
< / a >
< / li >
< li class = "repo-stars" >
2018-08-23 13:29:08 +02:00
< a href = "{{ .Site.Params.repo_url }}/stargazers" target = "_blank" title = "Stargazers" data-action = "star" >
2018-08-01 11:01:02 +02:00
< i class = "icon icon-star" > < / i > Stars
< span class = "count" > – < / span >
< / a >
< / li >
< / ul >
< hr >
{{ end }}
< div class = "toc" >
{{ if gt (len .Site.Menus.main) 0 }}
< ul >
{{ partial "nav" . }}
< / ul >
{{ end }}
{{ if isset .Site.Params "author" }}
< hr >
< ul >
< li >
< a href = "https://gitter.im/eclipse/hawkbit?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge" title = "Chat on Gitter" target = "_blank" >
< img src = "https://badges.gitter.im/eclipse/hawkbit.svg" / >
< / a >
< / li >
< li >
< a href = "https://circleci.com/gh/eclipse/hawkbit" title = "Circle CI Status" target = "_blank" >
< img src = "https://circleci.com/gh/eclipse/hawkbit.svg?style=shield" / >
< / a >
< / li >
2018-10-16 11:14:52 +02:00
< li >
2022-10-26 11:21:44 +02:00
< a href = "https://sonarcloud.io/organizations/bosch-iot-rollouts/projects?sort=name" title = "Sonarcloud Status" target = "_blank" >
< img src = "https://sonarcloud.io/api/project_badges/measure?project=org.eclipse.hawkbit%3Ahawkbit-parent&metric=alert_status" / >
2018-08-01 11:01:02 +02:00
< / a >
2018-10-16 11:14:52 +02:00
< / li >
2018-08-01 11:01:02 +02:00
< li >
< a href = "https://maven-badges.herokuapp.com/maven-central/org.eclipse.hawkbit/hawkbit-parent" title = "Maven Central Status" target = "_blank" >
< img src = "https://maven-badges.herokuapp.com/maven-central/org.eclipse.hawkbit/hawkbit-parent/badge.svg" / >
< / a >
< / li >
< / ul >
{{ end }}
< / div >
< / div >
< / div >
< / nav >