45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/options.build.css" />
|
|
<script src="/experimental/experimental.build.js" defer></script>
|
|
<title>Experimental Features</title>
|
|
</head>
|
|
|
|
<body class="text-fuchsia-900 p-3.5 lg:p-32" x-data="experimental">
|
|
<p>
|
|
<a href="/options.html" class="border-none hover:underline"
|
|
>← Back</a
|
|
>
|
|
</p>
|
|
<h1 class="text-3xl lg:text-6xl font-bold md:text-center">
|
|
Experimental Features
|
|
</h1>
|
|
<p class="mt-3 text-center font-bold italic">
|
|
These things may only work partially, or not work at all. Caveat
|
|
emptor!
|
|
</p>
|
|
|
|
<template x-for="feature in features" :key="feature[0]">
|
|
<div class="mt-4">
|
|
<input
|
|
class="checkbox"
|
|
type="checkbox"
|
|
:id="feature[0]"
|
|
x-model="feature[1]"
|
|
@change="change(feature[0], feature[1])"
|
|
/>
|
|
<label
|
|
:for="feature[0]"
|
|
x-text="feature[2]"
|
|
class="font-bold"
|
|
></label>
|
|
<p x-text="feature[3]" class="italic"></p>
|
|
</div>
|
|
</template>
|
|
</body>
|
|
</html>
|