Κάποιοι έλεγχοι απέτυχαν
		
		
	
	Hellug Projects/Hellug/www/pipeline/head There was a failure building this commit
				
			
		
			
				
	
	
		
			51 γραμμές
		
	
	
	
		
			1,2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 γραμμές
		
	
	
	
		
			1,2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{- partial "head.html" . }}
 | 
						||
<header>
 | 
						||
{{- partial "header.html" . }}
 | 
						||
{{ if .Params.bannertemplate }}
 | 
						||
{{ partial .Params.bannertemplate . }}
 | 
						||
{{else}}
 | 
						||
{{ partial "hellug-banner.html" . }}
 | 
						||
{{end}}
 | 
						||
</header>
 | 
						||
<!-- Main View -->
 | 
						||
<main>
 | 
						||
  <div class="master">
 | 
						||
<!-- Articles Section -->
 | 
						||
{{- $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>
 | 
						||
<cite>{{- dateFormat "02/01/2006" .Date }}</aside>
 | 
						||
{{ if lt $recentpostlimit .Date.Unix }}
 | 
						||
    <mark>Nέο</mark>{{- end }}
 | 
						||
</cite>
 | 
						||
<article>{{ .Summary | plainify | safeHTML }}
 | 
						||
</article>
 | 
						||
<!-- First Post End -->
 | 
						||
{{- else }}
 | 
						||
<h4><a href="{{.Permalink}}">{{ .Title }}</a></h4>
 | 
						||
<cite>{{- dateFormat "02/01/2006" .Date }}</aside>
 | 
						||
{{ if lt $recentpostlimit .Date.Unix }}
 | 
						||
    <mark>Nέο</mark>
 | 
						||
{{- end }}
 | 
						||
</cite>
 | 
						||
<article>
 | 
						||
{{- .Summary }}
 | 
						||
</article>
 | 
						||
{{- end}}
 | 
						||
{{- end }}
 | 
						||
<!-- End Articles Section -->
 | 
						||
  </div>
 | 
						||
  <div class="sidebar">
 | 
						||
<!-- Column 2 start -->
 | 
						||
{{- partial "column2.html" . }}
 | 
						||
<!-- Column 2 end -->
 | 
						||
</div>
 | 
						||
</main>
 | 
						||
<!-- Footer Start -->
 | 
						||
{{- partial "footer.html" . }}
 | 
						||
<!-- Footer End -->
 |