Page num dynamic tag for SEO

This should be the default for SEO in Bricks, for example insert the current page number into the meta description . I do it like this :slight_smile:

function paged ($text) {
    $paged = (get_query_var('paged')) ? $text . get_query_var('paged') : '';
    return $paged;
}
{echo:paged(' - Page ')}