I'm currently using this for a nav list to highlight the active page:
<?= ($current_page == 'thema_list' ? 'class="on"' : '') ?>
Extending this to check another page would be:
<?= ($current_page == 'thema_list' || $current_page == 'thema_edit' ? 'class="on"' : '') ?>
Is there a way to avoid this repetition?