Browse Source

Fix author not being referenced correctly

Apis Necros 2 years ago
parent
commit
ab1eead357
1 changed files with 1 additions and 1 deletions
  1. 1 1
      layouts/blog/single.html

+ 1 - 1
layouts/blog/single.html

@@ -6,7 +6,7 @@
 		{{ .Content }}
 	</div>
 	<div class="blog-post--footer">
-		<div class="blog-post--author">Author: {{ .Site.Author }}</div>
+		<div class="blog-post--author">Author: {{ .Site.Params.Author }}</div>
 		<div class="blog-post--updated">Updated: {{ .Date }}</div>
 	</div>
 </div>