mirror of https://github.com/usememos/memos.git
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
|
<meta http-equiv="Pragma" content="no-cache" />
|
|
<meta http-equiv="Expires" content="0" />
|
|
<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" />
|
|
<!-- {{ printf "memos.metadata.head %s>" "--" }}
|
|
{{- with .FeedURL }}
|
|
<link rel="alternate" type="application/rss+xml" href="{{ . }}" title="{{ $.FeedTitle | default $.Title | html }}" />
|
|
{{ end }}
|
|
|
|
{{- range $name, $content := .MetaData }}
|
|
<meta name="{{ $name | html }}" content="{{ $content | html }}" />
|
|
{{ end }}
|
|
{{ printf "<%s" "!--" }} -->
|
|
<title>{{ .Title | html }}</title>
|
|
</head>
|
|
<body class="text-base w-full min-h-svh">
|
|
<div id="root" class="relative w-full min-h-full"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<!-- memos.metadata.body -->
|
|
</body>
|
|
</html>
|