{{ if .Params.author }} Written by {{ .Params.author }} - {{ end }} Published on {{ .Date.Format "Monday 2 January 2006" }}
{{ .Title }}
{{ .Content }}
			
	{{ range (.Paginate .Data.Pages.ByDate.Reverse 30).Pages }}
		{{ $imagename := .Param "image" }}
		{{ $imagelocation := (printf "%s/%s" "images/blog/" $imagename) }}
		{{ $imageresource := resources.Get $imagelocation }}
		
			{{ if $imageresource }}
			
{{ if .Params.author }} Written by {{ .Params.author }} - {{ end }} Published on {{ .Date.Format "Monday 2 January 2006" }} 
	{{ end }}
	
	
				{{ $image := $imageresource.Resize "50x50 webp" }}
				 
			
			{{ end }}
			
				{{ .Title }}
				{{ if .Params.author }} Written by {{ .Params.author }} - {{ end }} Published on {{ .Date.Format "Monday 2 January 2006" }}
			{{ template "_internal/pagination.html" . }}