diff --git a/CHANGELOG.md b/CHANGELOG.md
index 82435232e8aecbe9461389c675a311df4c944b34..e006e7bbce3cf830024eaba57b808dc8977f7cc4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,11 @@
 
 ## 1.1.1
 
-* Removed content folder and moved out the Fedipage site into a seperate repo.
+* Removed content folder and moved out the Fedipage site into a separate repo.
     This should make it easier for people who use this site to update from the
     upstream here without needing to worry about conflicts due to content.
+* Fixed links at the bottom of posts that direct people to the gitlab page for
+    the post.
 
 ## 1.1.0
 
diff --git a/layouts/partials/article_footer.html b/layouts/partials/article_footer.html
index fad1ff3a075847604ca8bc5092fe5874d68d2714..db34c82afcfc5d360f811dfb6097c90373c771b3 100644
--- a/layouts/partials/article_footer.html
+++ b/layouts/partials/article_footer.html
@@ -10,9 +10,9 @@
 </div>
 {{ end }}
 <div class="widgets source">
-<a href="{{ site.Params.siteRepoUrl }}/tree/master/content/{{.File.LogicalName}}" rel="nofollow">View Source</a>
+<a href="{{ site.Params.siteRepoUrl }}/tree/master/content/{{ .Section }}/{{.File.LogicalName}}" rel="nofollow">View Source</a>
 |
-<a href="{{ site.Params.siteRepoUrl }}/edit/master/content/{{.File.LogicalName}}" rel="nofollow">Make a correction</a>
+<a href="{{ site.Params.siteRepoUrl }}/edit/master/content/{{ .Section }}/{{.File.LogicalName}}" rel="nofollow">Make a correction</a>
 |
-<a href="{{ site.Params.siteRepoUrl }}/commits/master/content/{{.File.LogicalName}}" rel="nofollow">Correction history</a>
+<a href="{{ site.Params.siteRepoUrl }}/commits/master/content/{{ .Section }}/{{.File.LogicalName}}" rel="nofollow">Correction history</a>
 </div>