forked from jgthms/css-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.html
More file actions
65 lines (62 loc) · 2.14 KB
/
Copy pathsingle.html
File metadata and controls
65 lines (62 loc) · 2.14 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
<!DOCTYPE html>
<html class="is-single" data-template="single">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width" />
<title>{{page.property_name}} - {{site.title}}</title>
<meta
name="description"
content="Learn how {{page.property_name}} works in CSS."
/>
<link rel="stylesheet" type="text/css"
href="{{site.url}}/css/website.css?v={{ site.time | date: "%Y%m%d%H%M" }}">
<meta property="og:url" content="{{site.url}}{{page.url}}" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="{{page.property_name}} - {{site.title}}"
/>
<meta
property="og:image"
content="{{site.url}}/images/css-reference-share.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:description"
content="Learn how {{page.property_name}} works in CSS."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@jgthms" />
<meta name="twitter:creator" content="@jgthms" />
<meta
name="twitter:title"
content="{{page.property_name}} - {{site.title}}"
/>
<meta
name="twitter:image"
content="{{site.url}}/images/css-reference-share.png"
/>
<meta
name="twitter:description"
content="Learn how {{page.property_name}} works in CSS."
/>
{% include favicons.html %}
</head>
<body>
{% include menu.html %}
<main class="main">
<div class="ola">{% include bsa.html %}</div>
<section class="properties properties--single">
{% include ff.html %} {{content}}
</section>
</main>
{% include modals/share.html %} {% include google-fonts.html %}
<script src="{{site.url}}/javascript/clipboard.min.js"></script>
<script src="{{site.url}}/javascript/main.js"></script>
<script src="{{site.url}}/javascript/single.js"></script>
{% include noscript.html %}
</body>
</html>