solved.
For users information here’s the code:
<?php $last_posts = get_posts('numberposts=5');
if ( $last_posts ) foreach ( $last_posts as $last_post ) {
echo date('M', strtotime($last_post->post_date)).'<br />';
echo date('j', strtotime($last_post->post_date)).'<br />';
echo '<a href="'.get_permalink($last_post->ID).'">'.$last_post->post_title.'</a><br />';
echo $last_post->post_content.'<br />';
$last_posts_tags = wp_get_post_tags( $last_post->ID );
foreach ( $last_posts_tags as $last_post_tags ) {
echo $last_post_tags->name; }
} ?>