-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.45 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="CodeFrame - turn source code into high-resolution PNG images, entirely in your browser." />
<title>CodeFrame - Code to PNG</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<!-- PWA -->
<link rel="manifest" href="manifest.json" />
<meta name="theme-color" content="#09090b" />
<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="black-translucent" />
<link rel="apple-touch-icon" href="icon-192.png" />
<!-- Trunk pipeline -->
<link data-trunk rel="rust" href="crates/app/Cargo.toml" data-bin="codeframe" data-wasm-opt />
<link data-trunk rel="css" href="style.css" />
<link data-trunk rel="copy-dir" href="fonts" />
<link data-trunk rel="copy-file" href="favicon.svg" />
<link data-trunk rel="copy-file" href="static/pwa/manifest.json" />
<link data-trunk rel="copy-file" href="static/pwa/sw.js" />
<link data-trunk rel="copy-file" href="static/pwa/icon-192.png" />
<link data-trunk rel="copy-file" href="static/pwa/icon-512.png" />
<base data-trunk-public-url />
</head>
<body>
<!-- PWA banners + SW registration are handled by Leptos (crates/app/src/pwa.rs) -->
</body>
</html>