Query pages based on tags

This is because you haven’t mentioned post_type here and by default post_type is 'post' and hence it is missing the pages,

add the below in your query

'post_type' => array( 'post', 'page' )

Like this

$articles = new WP_Query( array(
    'showposts' => -1,
    'tag' => $tag,
    'meta_key' => 'date',
    'orderby' => 'meta_value_num',
    'order' => 'DESC',
    'post_type' => array( 'post', 'page' )
)