As you noticed on your blogger page blogger displayed current date only ones in your post even if you posted more posts in a day date not appear separately with each post, if you want to show date separately with all of your posts you have to edit in your Template variable data:post.dateHeader it's quit complex but you can easily done it to fallow some simple steps :
1. Firstly go to your blogger dashboard click on template and download your full template backup before edit in your template HTML.
2. Go to your Blogger Dashboard > Template> Edit HTML.
3. Search for code given below that looks like this (it doesn't have to be exactly like it):
<div class='blog-posts'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'>
<data:post.dateHeader/>
</h2> </b:if>
<b:include data='post' name='post'/>
4. Delete the Blue portion in code in, and replace it with the Red portion from given below:
<div class='blog-posts'>
<b:loop values='data:posts' var='post'>
<div class='date-header'>
<data:post.timestamp/>
</div>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "item"'>
5. After that you can set the date to your linking, by going to your Blogger Dashboard > Settings > Formatting and look for Timestamp Format and select the date format you desire.
6. Now view your blog date appear separately with each post.
1. Firstly go to your blogger dashboard click on template and download your full template backup before edit in your template HTML.
2. Go to your Blogger Dashboard > Template> Edit HTML.
3. Search for code given below that looks like this (it doesn't have to be exactly like it):
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'>
<data:post.dateHeader/>
</h2> </b:if>
<b:include data='post' name='post'/>
4. Delete the Blue portion in code in, and replace it with the Red portion from given below:
<div class='blog-posts'>
<b:loop values='data:posts' var='post'>
<div class='date-header'>
<data:post.timestamp/>
</div>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "item"'>
5. After that you can set the date to your linking, by going to your Blogger Dashboard > Settings > Formatting and look for Timestamp Format and select the date format you desire.
6. Now view your blog date appear separately with each post.