You’d want to edit your theme’s functions.php file and use the filter “the_content”. The code to put at the end of the file would be something like this:
function add_my_extra_content( $content ) {
$content .= '<p>Latest articles</p>';
$content .= '[shortcode]';
return $content;
}
add_filter( 'the_content', 'add_my_extra_content' );