25 lines
		
	
	
		
			607 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			607 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 
 | |
| 	<meta charset="UTF-8" />
 | |
| 	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
| 
 | |
| 	<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
 | |
| 
 | |
| 	<link rel="stylesheet" href="/css/style.css" type="text/css" media="all" />
 | |
| 	<link rel="icon" type="image/svg+xml" href="/img/Chaoszone.svg">
 | |
| 
 | |
| 
 | |
| 	{{ with .OutputFormats.Get "rss" -}}
 | |
| 		{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
 | |
| 	{{ end -}}
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| 
 | |
| {{ partial "nav.html" . }}
 | |
| 
 | |
| <main class="content">
 |