17 lines
461 B
HTML
17 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.3.1/p5.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<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> |