17 lines
453 B
HTML
17 lines
453 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script src="js/p5.js"></script>
|
|
</head>
|
|
<body style="background-color: beige; margin: 0;">
|
|
<script id="sketch"></script>
|
|
<script>
|
|
const params = new URLSearchParams(window.location.search);
|
|
const sketchName = "sketches/" + params.get('sketch');
|
|
if (sketchName) {
|
|
const script = document.getElementById('sketch');
|
|
script.src = sketchName;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |