mirror of
				https://github.com/usememos/memos.git
				synced 2025-10-31 16:59:30 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
 | |
|     <link rel="icon" type="image/webp" href="/logo.webp" />
 | |
|     <link rel="manifest" href="/site.webmanifest" />
 | |
|     <meta name="theme-color" media="(prefers-color-scheme: light)" content="#f4f4f5" />
 | |
|     <meta name="theme-color" media="(prefers-color-scheme: dark)" content="#18181b" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
 | |
|     <!-- memos.metadata.head -->
 | |
|     <title>Memos</title>
 | |
|     <script>
 | |
|       // Prevent flash of light mode.
 | |
|       const appearance = localStorage.getItem("appearance");
 | |
|       if (appearance === `"dark"`) {
 | |
|         document.documentElement.classList.add("dark");
 | |
|       }
 | |
|     </script>
 | |
|   </head>
 | |
|   <body class="text-base w-full min-h-[100svh] bg-zinc-100 dark:bg-zinc-900">
 | |
|     <div id="root" class="relative w-full min-h-full"></div>
 | |
|     <script type="module" src="/src/main.tsx"></script>
 | |
|     <!-- memos.metadata.body -->
 | |
|   </body>
 | |
| </html>
 |