prettier, update to the dependencies (latest), remove nip26 and its artifacts, cleanup and renew

This commit is contained in:
Fishcake
2024-09-20 20:31:58 +09:00
parent 0477cc5cdf
commit e1c83597dd
37 changed files with 3136 additions and 2488 deletions

View File

@@ -1,34 +1,44 @@
<!DOCTYPE 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>
<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>
<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>
<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>