mirror of
https://github.com/usememos/memos.git
synced 2024-12-26 23:22:47 +08:00
be2db3f170
Co-authored-by: boojack <stevenlgtm@gmail.com>
16 lines
567 B
HTML
16 lines
567 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/logo.png" type="image/*" />
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f4f4f5" />
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#27272a" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
<title>Memos</title>
|
|
<!-- memos.metadata -->
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|