2024-02-09 16:48:50 +02:00
|
|
|
<footer class="bd-footer py-1 py-md-2 mt-2 bg-body-tertiary">
|
2024-06-03 11:19:01 +03:00
|
|
|
<div class="container sticky-bottom py-1 py-md-2 px-3 px-md-3 text-body-secondary d-none d-md-block">
|
2024-02-09 16:48:50 +02:00
|
|
|
<div class="row">
|
|
|
|
{{- $currentPage := . }}
|
|
|
|
{{- range .Site.Menus.main }}
|
|
|
|
{{- if .HasChildren }}
|
|
|
|
<div class="col">
|
|
|
|
<ul class="list-unstyled list-group-flush">
|
|
|
|
{{- .Name }}
|
|
|
|
{{- range .Children }}
|
|
|
|
<li class="list-group-item"><a href="{{ .URL }}">{{ .Name }}</a></li>
|
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{ else }}
|
|
|
|
<div>{{ .Name }}</div>
|
|
|
|
{{ end }}
|
2019-05-30 00:10:22 +03:00
|
|
|
{{ end }}
|
2024-02-09 16:48:50 +02:00
|
|
|
<!--
|
|
|
|
<div class="col">
|
|
|
|
<ul class="list-unstyled list-group-flush">
|
|
|
|
Σύνδεσμοι
|
2019-05-30 00:10:22 +03:00
|
|
|
{{ range .Site.Data.main.links.hellug }}
|
2024-02-09 16:48:50 +02:00
|
|
|
<li class="list-group-item"><a href="{{ .url }}">{{ .name }}</a></li>
|
2019-05-30 00:10:22 +03:00
|
|
|
{{ end }}
|
2024-02-09 16:48:50 +02:00
|
|
|
</div>
|
|
|
|
-->
|
2019-05-30 00:10:22 +03:00
|
|
|
</div>
|
2021-08-19 12:14:29 +03:00
|
|
|
</div>
|
2024-02-09 16:48:50 +02:00
|
|
|
<p class="text-end lh-1 fw-lighter">
|
|
|
|
<small><a href="/credits">Συντελεστές Ιστοσελίδας</a></small>
|
|
|
|
</p>
|
|
|
|
<!-- Scripts -->
|
|
|
|
{{- partial "scripts.html" . }}
|
|
|
|
<!-- Scripts end -->
|
|
|
|
</footer>
|
2019-05-30 00:10:22 +03:00
|
|
|
</body>
|
|
|
|
</html>
|