| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | <head> | 
					
						
							|  |  |  |   {{ $is_blog := and (eq .Type "blog") (eq .Kind "page") }} | 
					
						
							|  |  |  |   <meta charset="utf-8"> | 
					
						
							|  |  |  |   <meta name="robots" content="all,follow"> | 
					
						
							|  |  |  |   <meta name="googlebot" content="index,follow,snippet,archive"> | 
					
						
							|  |  |  |   <meta name="viewport" content="width=device-width, initial-scale=1"> | 
					
						
							|  |  |  |   {{ $title_plain := .Title | markdownify | plainify }} | 
					
						
							|  |  |  |   {{ if eq $title_plain "Blog"}} | 
					
						
							| 
									
										
										
										
											2025-05-02 15:06:02 +02:00
										 |  |  |   <title>{{ .Site.Params.Title }} | Blog</title> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |   {{ else if $is_blog}} | 
					
						
							| 
									
										
										
										
											2025-05-02 15:06:02 +02:00
										 |  |  |   <title>{{ .Site.Params.Title }} | Blog - {{ $title_plain }}</title> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |   {{ else }} | 
					
						
							| 
									
										
										
										
											2025-05-02 15:06:02 +02:00
										 |  |  |   <title>{{ .Site.Params.Title }} | {{ $title_plain }}</title> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  |   {{ end }} | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   <meta name="author" content="{{ .Param "author" }}"> | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   {{ $keywords := .Site.Params.defaultMetaKeywords | default (slice "" | first 0) }} | 
					
						
							|  |  |  |   {{ range .Params.metaKeywords }}{{ $keywords = $keywords | append . }}{{ end }} | 
					
						
							|  |  |  |     | 
					
						
							|  |  |  |   {{ if gt (len $keywords) 0 }} | 
					
						
							|  |  |  |   <meta name="keywords" content="{{ delimit (uniq $keywords) ", " }}"> | 
					
						
							|  |  |  |   {{ end }} | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   {{ $description_plain := default .Site.Params.defaultMetaDescription .Params.metaDescription | markdownify | plainify }} | 
					
						
							|  |  |  |   <meta name="description" content="{{ $description_plain }}"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {{ hugo.Generator }} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-01 17:30:30 +02:00
										 |  |  |   <link href="{{ "css/main.css" | relURL }}" rel="stylesheet"> | 
					
						
							|  |  |  |   <link href="{{ "css/custom.css" | relURL }}" rel="stylesheet"> | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   <!-- Favicon and Apple touch icons--> | 
					
						
							|  |  |  |   <link rel="shortcut icon" href="{{ "img/favicon.ico" | relURL }}" type="image/x-icon"> | 
					
						
							|  |  |  |   <link rel="apple-touch-icon" href="{{ "img/apple-touch-icon.png" | relURL }}"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {{ range .AlternativeOutputFormats -}} | 
					
						
							|  |  |  |     {{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} | 
					
						
							|  |  |  |   {{ end -}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {{ partial "opengraph.html" . }} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-15 18:20:21 +02:00
										 |  |  |   <script src="/js/htmx/htmx.min.js" defer></script> | 
					
						
							|  |  |  |   <script src="/js/main.js" defer></script> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {{ partial "analytics.html" . }} | 
					
						
							| 
									
										
										
										
											2024-10-04 11:58:15 +02:00
										 |  |  | </head> |