2022-10-27 18:05:10 +03:00
|
|
|
|
{{- partial "head.html" . }}
|
|
|
|
|
<header>
|
2024-02-09 10:59:23 +02:00
|
|
|
|
{{- if .Params.bannertemplate }}
|
|
|
|
|
{{- partial .Params.bannertemplate . }}
|
|
|
|
|
{{- else}}
|
|
|
|
|
{{- partial "hellug-banner.html" . }}
|
|
|
|
|
{{- end }}
|
2022-10-31 15:25:24 +02:00
|
|
|
|
{{- partial "header.html" . }}
|
2022-10-27 18:05:10 +03:00
|
|
|
|
</header>
|
|
|
|
|
<!-- Main View -->
|
|
|
|
|
<main>
|
2024-02-09 10:59:23 +02:00
|
|
|
|
<!-- Welcome -->
|
|
|
|
|
{{- partial "welcome.html" . }}
|
|
|
|
|
<!-- Welcome end-->
|
|
|
|
|
|
|
|
|
|
<!-- Notice -->
|
|
|
|
|
{{- partial "notice.html" . }}
|
|
|
|
|
<!-- Notice end -->
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
2022-10-27 18:05:10 +03:00
|
|
|
|
<!-- Articles Section -->
|
2024-02-09 10:59:23 +02:00
|
|
|
|
<div class="col">
|
2022-10-27 18:05:10 +03:00
|
|
|
|
{{- $counter := 0 }}
|
|
|
|
|
{{- $pages := .Site.RegularPages }}
|
|
|
|
|
{{- $recentpostlimit := (sub now.Unix 2592000 ) }}
|
|
|
|
|
{{- range first 5 $pages }}
|
|
|
|
|
{{- $counter = add $counter 1 }}
|
|
|
|
|
{{- if eq $counter 1 }}
|
|
|
|
|
<!-- First Post -->
|
|
|
|
|
<h3><a href="{{.Permalink}}">{{ .Title }}</a></h3>
|
2024-02-09 10:59:23 +02:00
|
|
|
|
<cite>{{- dateFormat "02/01/2006" .Date }}
|
|
|
|
|
{{- if lt $recentpostlimit .Date.Unix }}
|
|
|
|
|
<mark>Nέο</mark>
|
|
|
|
|
{{- end }}
|
2022-10-27 18:05:10 +03:00
|
|
|
|
</cite>
|
2024-02-09 10:59:23 +02:00
|
|
|
|
<article>{{- .Summary | plainify | safeHTML }}
|
2022-10-27 18:05:10 +03:00
|
|
|
|
</article>
|
|
|
|
|
<!-- First Post End -->
|
|
|
|
|
{{- else }}
|
|
|
|
|
<h4><a href="{{.Permalink}}">{{ .Title }}</a></h4>
|
2024-02-09 10:59:23 +02:00
|
|
|
|
<cite>{{- dateFormat "02/01/2006" .Date }}
|
2022-10-27 18:05:10 +03:00
|
|
|
|
{{ if lt $recentpostlimit .Date.Unix }}
|
|
|
|
|
<mark>Nέο</mark>
|
|
|
|
|
{{- end }}
|
|
|
|
|
</cite>
|
|
|
|
|
<article>
|
|
|
|
|
{{- .Summary }}
|
|
|
|
|
</article>
|
|
|
|
|
{{- end}}
|
|
|
|
|
{{- end }}
|
2024-02-09 10:59:23 +02:00
|
|
|
|
</div>
|
2022-10-27 18:05:10 +03:00
|
|
|
|
<!-- End Articles Section -->
|
|
|
|
|
<!-- Column 2 start -->
|
2024-02-09 10:59:23 +02:00
|
|
|
|
<div class="col-2">
|
2022-10-27 18:05:10 +03:00
|
|
|
|
{{- partial "column2.html" . }}
|
2024-02-09 10:59:23 +02:00
|
|
|
|
</div>
|
2022-10-27 18:05:10 +03:00
|
|
|
|
<!-- Column 2 end -->
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<!-- Footer Start -->
|
|
|
|
|
{{- partial "footer.html" . }}
|
|
|
|
|
<!-- Footer End -->
|