generated from grislyeye/vellum-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.liquid
53 lines (39 loc) · 1.16 KB
/
index.liquid
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>{{ site.title }}</title>
<link href="vendor/normalize.css/normalize.css" rel="stylesheet" />
<link href="vendor/magick.css/magick.css" rel="stylesheet" />
<link href="assets/styles/main.css" rel="stylesheet" />
<script type="module">
import './vendor/vellum-doc/vellum-doc.js'
</script>
<script type="importmap">
{
"imports": {
"lit": "/vendor/@lit/index.js",
"lit/": "/vendor/@lit/"
}
}
</script>
</head>
<body>
<vellum-doc anchors>
<main>
<article id="document" class="content">
{%- for page in collections.index -%}
<section>
{{ page.content }}
</section>
{%- endfor -%}
</article>
</main>
<footer>
<p>{{ site.title }} {{ project.version }} © {{ project.author }} 2024</p>
<p><a href="{{ site.url }}">{{ site.url }}</a></p>
</footer>
</vellum-doc>
</body>
</html>