20 lines
636 B
PHP
20 lines
636 B
PHP
<!doctype html>
|
|
<html lang="<?php print $lang; ?>" class="h5p-iframe">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?php print $content['title']; ?></title>
|
|
<?php for ($i = 0, $s = count($scripts); $i < $s; $i++): ?>
|
|
<script src="<?php print $scripts[$i]; ?>"></script>
|
|
<?php endfor; ?>
|
|
<?php for ($i = 0, $s = count($styles); $i < $s; $i++): ?>
|
|
<link rel="stylesheet" href="<?php print $styles[$i]; ?>">
|
|
<?php endfor; ?>
|
|
</head>
|
|
<body>
|
|
<div class="h5p-content" data-content-id="<?php print $content['id']; ?>"></div>
|
|
<script>
|
|
H5PIntegration = <?php print json_encode($integration); ?>;
|
|
</script>
|
|
</body>
|
|
</html>
|