diff --git a/source/_posts/2015-06-18-updating-forked-github-repos.md b/source/_posts/2015-06-18-updating-forked-github-repos.md
index a6482b83..a629f596 100644
--- a/source/_posts/2015-06-18-updating-forked-github-repos.md
+++ b/source/_posts/2015-06-18-updating-forked-github-repos.md
@@ -50,15 +50,21 @@ $ git push origin master
This seems to have worked OK - the commits are still authored by the correct people and at the correct date and time - and I went ahead and created a new feature branch and pull request based on that master branch.
-
-
- The commits on my forked master branch after rebasing and pushing. All good!
-
+{% include 'figure' with {
+ image: {
+ src: '/images/blog/forked-github-repo-commits.png',
+ alt: 'The commits on my master branch after rebasing',
+ },
+ caption: 'The commits on my forked master branch after rebasing and pushing. All good!',
+} %}
-
-
- The new feature branch with the new commit.
-
+{% include 'figure' with {
+ image: {
+ src: '/images/blog/my-commit-to-the-rebased-branch.png',
+ alt: 'The new feature branch with my additional commit',
+ },
+ caption: 'The new feature branch with the new commit.',
+} %}
## Is There a Better Way?