~comcloudway/pages

4c64e748373e07891cf72af9e6f20b0918b05efb — Jakob Meier 16 days ago 1e6c55c
Add music meta data to blog posts

Blog posts with a music meta tag, will show a recommended music player
widget at the top
1 files changed, 7 insertions(+), 0 deletions(-)

M layouts/blog/single.html
M layouts/blog/single.html => layouts/blog/single.html +7 -0
@@ 18,6 18,13 @@
				{{ .TableOfContents }}
			</aside>
			{{ end }}
			{{ if (not (eq .Params.music nil)) }}
			<aside>
				I wrote this post while listening to the following album.
				Why not give it a listen?
				{{ partial "music.html" .Params.music }}
			</aside>
			{{ end }}
			{{.Content}}
		</main>
		{{ partial "footer.html" . }}