* Add new hugo-based website for hawkBit Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Fix broken links + wordings - , i.e. -> i.e, - , e.g. -> e.g., - hawkbit -> hawkBit - don't -> do not - isn't -> is not Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Remove old documentation and add maven integration Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Add Intellij files to ignore Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Update README Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Update Copyright header * exclude website artifacts Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Harmonize usage of i.e. and e.g. Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Add remark for windows user Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Fix indention Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Introduce review findings Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com> * Change image in 'run hawkbit' guide Signed-off-by: Jeroen Laverman <jeroen.laverman@bosch-si.com>
75 lines
1.8 KiB
HTML
Executable File
75 lines
1.8 KiB
HTML
Executable File
{{ if .IsPage }}
|
|
{{ if .Prev | or .Next }}
|
|
<nav class="pagination" aria-label="Footer">
|
|
<div class="previous">
|
|
{{ if .Prev }}
|
|
<a href="{{ .Prev.Permalink }}" title="{{ .Prev.Title }}">
|
|
<span class="direction">
|
|
Previous
|
|
</span>
|
|
<div class="page">
|
|
<div class="button button-previous" role="button" aria-label="Previous">
|
|
<i class="icon icon-back"></i>
|
|
</div>
|
|
<div class="stretch">
|
|
<div class="title">
|
|
{{ .Prev.Title }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="next">
|
|
{{ if .Next }}
|
|
<a href="{{ .Next.Permalink }}" title="{{ .Next.Title }}">
|
|
<span class="direction">
|
|
Next
|
|
</span>
|
|
<div class="page">
|
|
<div class="stretch">
|
|
<div class="title">
|
|
{{ .Next.Title }}
|
|
</div>
|
|
</div>
|
|
<div class="button button-next" role="button" aria-label="Next">
|
|
<i class="icon icon-forward"></i>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</nav>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if .IsHome }}
|
|
{{ if gt (len .Site.Pages) 2 }}
|
|
<nav class="pagination" aria-label="Footer">
|
|
<div class="previous">
|
|
</div>
|
|
|
|
{{ $title := (index (.Site.Pages.ByDate) 1).Title }}
|
|
{{ $permalink := (index (.Site.Pages.ByDate) 1).Permalink }}
|
|
<div class="next">
|
|
<a href="{{ $permalink }}" title="{{ $title }}">
|
|
<span class="direction">
|
|
Next
|
|
</span>
|
|
<div class="page">
|
|
<div class="stretch">
|
|
<div class="title">
|
|
{{ $title }}
|
|
</div>
|
|
</div>
|
|
<div class="button button-next" role="button" aria-label="Next">
|
|
<i class="icon icon-forward"></i>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
{{ end }}
|
|
{{ end }}
|