-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
27 lines (22 loc) · 843 Bytes
/
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
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head {{ HEAD_ATTRS }}>
<meta charset="utf-8" />
<!-- Facebook -->
<meta property="og:type" content="page" />
<meta property="og:url" content="https://travel-website-jos620.vercel.app" />
<meta property="og:title" content="Travel Website" />
<meta property="og:image" content="~/assets/img/home1.jpg" />
<meta property="og:description" content="An awesome travel website" />
<meta property="article:author" content="Mateus Ito Silva" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Travel Website" />
<meta name="twitter:creator" content="@jos620" />
<meta name="twitter:description" content="An awesome travel website" />
{{ HEAD }}
</head>
<body {{ BODY_ATTRS }}>
{{ APP }}
</body>
</html>