forked from color-js/color.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplain.njk
43 lines (32 loc) · 1.45 KB
/
plain.njk
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
<!DOCTYPE html>
<html>
<head>
<title>{% if title or default_title %}{{ title or default_title }} • Color.js{% else %}Color.js: Let’s get serious about color{% endif %}</title>
<meta name="viewport" content="width=device-width" />
<link rel="shortcut icon" href="{{ page | relative }}/logo.svg">
<link rel="stylesheet" href="{{ page | relative }}/assets/css/style.css">
<script src="{{ page | relative }}/color.js" type="module"></script>
{% if has_mavo %}
<link rel="stylesheet" href="https://get.mavo.io/mavo.css">
<script src="https://get.mavo.io/mavo.js" async></script>
{% endif %}
{{ includes | safe }}
</head>
<body class="{% if body_classes %} {{ body_classes }} {% else %} language-javascript {% endif %}">
{{ content | safe }}
<aside class="carbon">
<script async src="//cdn.carbonads.com/carbon.js?serve=CEAIPK7J&placement=colorjsio" id="_carbonads_js"></script>
</aside>
<footer>
From <a href="http://lea.verou.me">Lea Verou</a> (co-editor of CSS Color 4 and 5)
and <a href="https://svgees.us">Chris Lilley</a> (co-editor of CSS Color 3, 4, and 5; W3C representative to ICC)
<nav>
{% include "../templates/_nav.njk" %}
</nav>
</footer>
<script src="{{ page | relative }}/assets/js/prism.js"></script>
<script src="https://blissfuljs.com/bliss.shy.js"></script>
<script src="https://live.prismjs.com/src/prism-live.js?load=javascript" async></script>
<script src="{{ page | relative }}/assets/js/index.js" type="module"></script>
</body>
</html>