-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (99 loc) · 4.53 KB
/
Copy pathindex.html
File metadata and controls
110 lines (99 loc) · 4.53 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!--
Content Security Policy — enforces the "no uploads, 100% private" promise.
All resume data stays in the browser; there is no path for content to leave.
-->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'wasm-unsafe-eval' blob:; worker-src 'self' blob:; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' blob:; object-src 'none'; base-uri 'self'; form-action 'self'; manifest-src 'self'"
/>
<!-- SVG favicon (primary + only) -->
<link rel="icon" href="/icons/favicon.svg" type="image/svg+xml" />
<!-- Safari pinned tab -->
<link rel="mask-icon" href="/icons/favicon.svg" color="#059669" />
<!-- Viewport — `user-scalable=no, maximum-scale=1` disables the
browser's pinch-to-zoom on the page itself. The editor and
preview have their own scaling/scroll affordances; double-tap
zoom would just produce awkward layout shifts on phones. The
CSS `touch-action: manipulation` rule on body further suppresses
double-tap zoom on browsers that historically ignored
user-scalable=no. -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<!-- Theme -->
<meta name="theme-color" content="#059669" />
<meta name="color-scheme" content="light dark" />
<!-- iOS PWA -->
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
<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" />
<meta name="apple-mobile-web-app-title" content="CloakResume" />
<!-- SEO -->
<meta
name="description"
content="CloakResume — build beautiful, ATS-friendly resumes in your browser. Pick a template, choose a colour, and export to PDF. 100% private, nothing uploaded."
/>
<meta
name="keywords"
content="resume builder, ats resume, private resume builder, offline resume builder, free resume builder, resume pdf export, ats score, resume templates, cv builder"
/>
<link rel="canonical" href="https://resume.cloakyard.com/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://resume.cloakyard.com/" />
<meta property="og:title" content="CloakResume — Private Resume Builder with ATS Score" />
<meta
property="og:description"
content="Build beautiful, ATS-friendly resumes entirely in your browser. Pick a template, choose a colour, export to PDF. No uploads, 100% private."
/>
<meta property="og:image" content="https://resume.cloakyard.com/icons/og-image.png" />
<meta property="og:site_name" content="CloakResume" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CloakResume — Private Resume Builder" />
<meta
name="twitter:description"
content="Build beautiful, ATS-friendly resumes in your browser. No uploads, 100% private."
/>
<meta name="twitter:image" content="https://resume.cloakyard.com/icons/og-image.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "CloakResume",
"url": "https://resume.cloakyard.com",
"description": "Private, ATS-friendly resume builder that runs entirely in your browser. Pick a template, choose a colour, export to PDF. No uploads, 100% private.",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Beautiful Resume Templates",
"ATS Score & Keyword Matching",
"Customise Colours & Fonts",
"Reorder Sections",
"Export to PDF",
"Rich Text Editing",
"Works Offline",
"No Account Required"
],
"browserRequirements": "Requires a modern web browser with JavaScript enabled"
}
</script>
<title>CloakResume — Private Resume Builder with ATS Score</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>