-
Notifications
You must be signed in to change notification settings - Fork 338
Expand file tree
/
Copy pathsingle.html
More file actions
46 lines (43 loc) · 1.87 KB
/
single.html
File metadata and controls
46 lines (43 loc) · 1.87 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 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.title}} - {{site.title}}</title>
<link rel="stylesheet" type="text/css" href="{{site.url}}/css/website.css">
<meta property="og:url" content="{{site.url}}{{page.url}}">
<meta property="og:type" content="website">
<meta property="og:title" content="{{page.title}} - {{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.title}} 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.title}} - {{site.title}}">
<meta name="twitter:image" content="{{site.url}}/images/css-reference-share.png">
<meta name="twitter:description" content="Learn how {{page.title}} works in CSS.">
{% include favicons.html %}
</head>
<body>
{% include menu.html %}
<main class="main">
<a class="back" href="{{site.url}}/#{{page.title}}">
<i class="icon is-back"></i>
<strong>View in context</strong>
</a>
<section class="single">
{% assign property = page %}
{% include property.html %}
</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>
{% include noscript.html %}
</body>
</html>