6 lines
216 B
PHP
6 lines
216 B
PHP
|
|
<script src="/rss/js/main.js"></script>
|
||
|
|
<?php foreach($render['scripts'] as $s):?>
|
||
|
|
<script src="<?= $s['src'] ?>" <?= $s['type'] == 'module' ? 'type="module"' : '' ?>></script>
|
||
|
|
<?php endforeach;?>
|
||
|
|
</body>
|
||
|
|
</html>
|