Files
ani-rss/ani-rss-ui/index.html

33 lines
923 B
HTML

<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<title>ANI-RSS</title>
<link rel="icon" href="/favicon.ico"/>
<link rel="manifest" href="/manifest.json"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="theme-color" id="themeColorMeta" content="#ffffff">
<meta name="robots" content="noindex">
<meta name="description" content="基于RSS自动追番、订阅、下载、刮削"/>
</head>
<script>
(() => {
if (location.pathname.endsWith('/')) {
return;
}
location.pathname += '/'
})()
</script>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<style>
@import "@/style.css";
</style>
<!--自定义CSS-->
<link rel="stylesheet" href="/api/custom.css"/>
<!--自定义JS-->
<script src="/api/custom.js"></script>
</html>