With Bootstrap I know you can create a modal with remote content as follows:
<li><a data-toggle="modal" href="exemplo.html" data-target="#exemplo">Exemplo</a></li>
Is there something like this in Semantic ui? The official documentation only teaches you how to create it as follows:
$('.ui.modal').modal('show');
And this does not help much since my modal is another page, not a div with class ui modal , as in the example documentation