the correct syntax to concatenate the static path with the dynamic image name. Change your template code to:
<img src="{% static 'blog/images/' %}{{ post.image }}" alt="Mountain" />
Or if post.image is a Django ImageField or FileField you should use:
<img src="{{ post.image.url }}" alt="Mountain" />