Blame view

src/app/frontend/views/partial/cssAsset.php 171 Bytes
1ea3b987   Administrator   maby first commit
1
2
3
4
5
  <?php if(!empty($css)): ?>
      <?php foreach ($css as $item): ?>
          <link href='<?= $item ?>' rel='stylesheet' type='text/css'>
      <?php endforeach; ?>
  <?php endif;