14 lines
		
	
	
		
			822 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			822 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <meta charset="utf-8">
 | |
| <meta name="viewport" content="width=device-width">
 | |
| {{ if .IsPage }}
 | |
|   <meta name="description" content="{{ .Summary | plainify }}">
 | |
| {{ else }}
 | |
|     <meta name="description" content="Hi, my name is Cassie. This is my personal blog and home of the esoteric bullshit that I am incomprehensibly fixated on, which includes books, video games, music, and thinking way too much about everything.">
 | |
| {{ end }}
 | |
| <meta name="fediverse:creator" content="@cass@social.lol" />
 | |
| <title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
 | |
| {{ partialCached "head/css.html" . }}
 | |
| {{ partialCached "head/js.html" . }}
 | |
| {{ with .OutputFormats.Get "rss" }}
 | |
|   {{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
 | |
| {{ end }} |