-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
65 lines (57 loc) · 2.32 KB
/
template.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>Please | On-demand commands</title>
<meta name="title" content="Please | On-demand commands" />
<meta
name="description"
content="Please is an on-demand, declarative package installer"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://please.dev" />
<meta property="og:title" content="Please | On-demand commands" />
<meta
property="og:description"
content="Please is an on-demand, declarative package installer"
/>
<meta property="og:image" content="https://please.dev/logo.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://please.dev" />
<meta property="twitter:title" content="Please | On-demand commands" />
<meta
property="twitter:description"
content="Please is an on-demand, declarative package installer"
/>
<meta property="twitter:image" content="https://please.dev/logo.png" />
%sapper.base%
<link rel="stylesheet" href="global.css" />
<link rel="manifest" href="manifest.json" crossorigin="use-credentials" />
<link rel="icon" type="image/svg" href="p.svg" />
<link rel="apple-touch-icon" href="logo-192.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Raleway&family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
<!-- Sapper creates a <script> tag containing `src/client.js`
and anything else it needs to hydrate the app and
initialise the router -->
%sapper.scripts%
<!-- Sapper generates a <style> tag containing critical CSS
for the current page. CSS for the rest of the app is
lazily loaded when it precaches secondary pages -->
%sapper.styles%
<!-- This contains the contents of the <svelte:head> component, if
the current page has one -->
%sapper.head%
</head>
<body>
<!-- The application will be rendered inside this element,
because `src/client.js` references it -->
<div id="sapper">%sapper.html%</div>
</body>
</html>