-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.html
46 lines (43 loc) · 2.01 KB
/
app.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#fcfaf6">
<title>Query.rs</title>
<link rel="icon" type="image/png" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/16x16.png">
<link rel="manifest" href="/assets/favicon/site.webmanifest">
<meta name="description" content="A search engine for Rust">
<meta name="keywords"
content="search rust docs, search crates, search rust attributes, search rust books, search clippy lints, search rust RFCs, search error codes, search docs by type signature" />
<meta property="og:type" content="website">
<meta property="og:title" content="Query.rs">
<meta property="og:description" content="A search engine for Rust">
<meta name="twitter:title" content="Query.rs">
<meta name="twitter:description" content="A search engine for Rust">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:image" content="https://query.rs/og.png">
<meta name="twitter:image" content="https://query.rs/og.png">
<link rel="search" href="/opensearch.xml" type="application/opensearchdescription+xml" title="Query.rs" />
<link rel='stylesheet' href='%sveltekit.assets%/css/balloon.min.css'>
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600&display=swap" rel="stylesheet">
<style>
:root {
/* Primary theme color */
--primary-color: #F9BB2D;
/* Primary theme text color */
--primary-text-color: #121212;
}
.dark {
background-color: #121213;
}
</style>
%sveltekit.head%
</head>
<body>
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>