-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
51 lines (47 loc) · 1.21 KB
/
index.html
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
---
layout: default
slug: "/"
last_modified: 3 June 2020
---
<section class="guide" id="guide">
{% for resource in site.resources %}
<article class="Post" id="{{ resource.slug }}">
<h1 class="Post__title">
<a href="#{{ resource.slug }}" class="Post__title__anchor">
{% include anchor-headings-icon.html %}
</a>
{{ resource.title }}
</h1>
<div class="Post__content">
{{ resource.content }}
</div>
</article>
{% endfor %}
</section>
<section class="social-media" id="social-media">
<h1 class="Post__title">
<a href="#social-media" class="Post__title__anchor">
{% include anchor-headings-icon.html %}
</a>
Share
</h1>
{% include share.html %}
</section>
<section class="glossary" id="glossary">
<h1 class="Post__title">
<a href="#glossary" class="Post__title__anchor">
{% include anchor-headings-icon.html %}
</a>
Glossary
</h1>
{% include glossary.html %}
</section>
<section class="resources" id="resources">
<h1 class="Post__title">
<a href="#resources" class="Post__title__anchor">
{% include anchor-headings-icon.html %}
</a>
More resources
</h1>
{% include resources.html %}
</section>