forked from anquinn/avatar-framer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.06 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
---
# this is an empty front matter
# needed for jekyll to interpret liquid
---
<!doctype html>
<html lang="en">
{% include head.html %}
<body class="bg-gray-500">
<div class="min-h-screen bg-white">
{% include nav.html %}
<div class="py-32 text-primary">
<main>
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="px-4 py-8 sm:px-16">
<div class="grid grid-cols-1 md:grid-cols-2 gap-x-24">
{% include steps.html %}
{% include canvas.html %}
</div>
<!-- <div style="margin-top:50px; font-size: large">
<p style="margin-bottom:20px">
Consider also using this cover photo. Click / tap to download:
</p>
<p>
<a href="img/covers/---.jpg" download>
<img src="img/covers/---.jpg" />
</a>
</p>
</div> -->
</div>
</div>
</main>
</div>
</div>
</body>
</html>