2018-08-01 11:01:02 +02:00
< nav aria-label = "Navigation" >
2024-11-07 16:16:24 +02:00
< 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 }}{{ . }}" >
2018-08-01 11:01:02 +02:00
< / div >
2024-11-07 16:16:24 +02:00
{{ 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 >
2018-08-01 11:01:02 +02:00
2024-11-07 16:16:24 +02:00
< div class = "scrollable" >
< div class = "wrapper" >
{{ if (eq (trim .Site.Params.provider " " | lower) "github") | and (isset .Site.Params "repo_url") }}
2024-11-21 13:36:14 +02:00
< ul class = "repo" style = "text-align: left; ; padding-left: 2em;" >
2024-11-07 16:16:24 +02:00
< li class = "repo-stars" >
< a href = "{{ .Site.Params.repo_url }}/stargazers" target = "_blank" title = "Stargazers" data-action = "star" >
< i class = "icon icon-star" > < / i > Stars
< span class = "count" > – < / span >
< / a >
< / li >
< / ul >
< hr >
{{ end }}
2018-08-01 11:01:02 +02:00
2024-11-07 16:16:24 +02:00
< div class = "toc" >
{{ if gt (len .Site.Menus.main) 0 }}
< ul >
{{ partial "nav" . }}
< / ul >
{{ end }}
2018-08-01 11:01:02 +02:00
2024-11-07 16:16:24 +02:00
{{ if isset .Site.Params "author" }}
< hr >
2018-08-01 11:01:02 +02:00
2024-11-07 16:16:24 +02:00
< ul >
< li >
< a href = "https://opensource.org/licenses/EPL-2.0" title = "License" target = "_blank" >
< img src = "https://img.shields.io/badge/License-EPL%202.0-green.svg" / >
< / a >
< / li >
2024-10-04 14:48:36 +03:00
2024-11-07 16:16:24 +02:00
< li >
< a href = "https://github.com/eclipse-hawkbit/hawkbit/actions/workflows/verify.yml" title = "License" target = "_blank" >
< img src = "https://github.com/eclipse-hawkbit/hawkbit/actions/workflows/verify.yml/badge.svg?branch=master" / >
< / a >
< / li >
< li >
< a href = "https://sonarcloud.io/summary/new_code?id=eclipse-hawkbit_hawkbit" title = "Sonarcloud Status" target = "_blank" >
< img src = "https://sonarcloud.io/api/project_badges/measure?project=eclipse-hawkbit_hawkbit&metric=alert_status" / >
< / a >
< / li >
2024-10-04 14:48:36 +03:00
2024-11-07 16:16:24 +02:00
< li >
< a href = "https://search.maven.org/search?q=g:org.eclipse.hawkbit" title = "Maven Central Status" target = "_blank" >
< img src = "https://img.shields.io/maven-central/v/org.eclipse.hawkbit/hawkbit-parent?label=maven-central&color=blue" / >
< / a >
< / li >
2024-10-04 14:48:36 +03:00
2024-11-07 16:16:24 +02:00
< 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 >
< / ul >
{{ end }}
< / div >
2018-08-01 11:01:02 +02:00
< / div >
2024-11-07 16:16:24 +02:00
< / div >
2018-08-01 11:01:02 +02:00
< / nav >