36 lines
768 B
Plaintext
36 lines
768 B
Plaintext
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#206bc4">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<link rel="apple-touch-icon" href="/icons/icon.svg">
|
|
|
|
|
|
<title>
|
|
<%= title || "PantryHub" %>
|
|
</title>
|
|
|
|
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/css/tabler.min.css"
|
|
rel="stylesheet">
|
|
|
|
<script>
|
|
if ("serviceWorker" in navigator) {
|
|
navigator.serviceWorker.register("/service-worker.js", { updateViaCache: "none" });
|
|
}
|
|
</script>
|
|
|
|
|
|
<link
|
|
href="/css/style.css"
|
|
rel="stylesheet"> |