With the last release of Bootstrap, the .active property is set on the link class. How could we add this property to a Paginator->sort ?
An example :
$this->Paginator->templates([
'sort' => '<a class="nav-link" href="{{url}}">{{text}}</a>',
]);
<ul class="nav">
<li role="presentation" class="nav-item">
<?= $this->Paginator->sort('Results.points','Per points') ?>
</li>
<li role="presentation" class="nav-item">
<?= $this->Paginator->sort('Results.size','Per size') ?>
</li>
</ul>
How could we add active to the "Per points" or "Per size" link?