I want to echo the following HTML tag:
<ul class="uk-grid" data-uk-grid-margin>
I investigated yii2 HTML helper sources. It seems there's no possibility to echo the tag with HTML::tag() method. Am I right?
For sure I can simply do:
echo '<ul class="uk-grid" data-uk-grid-margin>';
but I am curious about different possibilities.
What is the best solution?