-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.blade.php
More file actions
46 lines (41 loc) · 1.86 KB
/
main.blade.php
File metadata and controls
46 lines (41 loc) · 1.86 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
<!DOCTYPE html>
<html lang="{{ current_path_locale($page) }}">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ $page->title }}</title>
<!-- Primary Meta Tags -->
<meta name="title" content="LibreSign - Electronic signature of digital documents">
<link rel="canonical" href="{{ $page->getUrl() }}">
<meta name="description" content="{{ $page->description }}">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://uideck.com/play/">
<meta property="og:title" content="LibreSign - Electronic signature of digital documents">
<meta property="og:description" content="LibreSign - Electronic signature of digital documents">
<!-- TODO: Think about the image -->
<meta property="og:image" content="">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://uideck.com/play/">
<meta property="twitter:title" content="LibreSign - Electronic signature of digital documents">
<meta property="twitter:description" content="LibreSign - Electronic signature of digital documents">
<!-- TODO: Think about the image -->
<meta property="twitter:image" content="">
<!--====== Favicon Icon ======-->
<link
rel="shortcut icon"
href="{{ $page->baseUrl }}assets/images/favicon.png"
type="image/png"
/>
<!-- ===== All CSS files ===== -->
<link rel="stylesheet" href="{{ $page->baseUrl . mix('css/main.css', 'assets/build') }}">
<link rel="stylesheet" href="{{ $page->baseUrl }}assets/build/css/ud-styles.css" />
</head>
<body>
@include('_layouts.header')
@yield('body')
@include('_layouts.footer')
</body>
</html>