27 lines
825 B
HTML
27 lines
825 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>IWM Browser</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ combineCSS(
|
|
'/static/index.css',
|
|
'/static/main.css',
|
|
'/static/search/searchResults.css'
|
|
) }}">
|
|
<!-- Optional features -->
|
|
<script>
|
|
function copy(obj) {
|
|
// copies the contents of the
|
|
// input field to clipboard, and
|
|
// adds the "copied" css class
|
|
navigator.clipboard.writeText(obj.value);
|
|
//alert("Level code copied")
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
{% include "levelCard.html" %}
|
|
</body>
|
|
</html>
|