This is a pretty neat idea - thanks for sharing how you do this.
A little extra thing you can do to make the project feel more blog-like is to change the “Development log” heading on the project page to something like “Blog posts”. It requires some custom CSS, so assuming you have that enabled for your account, you can add this to your project’s CSS:
#devlog h2 {
visibility: hidden;
}
#devlog h2:before {
content: "Blog posts";
visibility: visible;
}