-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (23 loc) · 910 Bytes
/
index.html
File metadata and controls
28 lines (23 loc) · 910 Bytes
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
{% extends 'default.html' %}
{% block head %}
{% include "social-tags.html" %}
{% inlinecss "home.css" %}
{% inlinejs "pages/home.js" %}
<script type="module" src="{{ site.baseurl }}/js/pages/home-components.js"></script>
{% if env.DEV %}
<!-- HACK: In dev mode, the logo renders before the stylesheet loads, so it
is initially visible, and then immediately fades away. This doesn't affect
prod because the whole stylesheet is inlined. -->
<style>.menu-button-and-logo { opacity: 0; }</style
{% endif %}
{% endblock %}
{% block content %}
{% include "./home/1-splash.html" %}
{% include "./home/2-advantages.html" %}
{% include "./home/3-tour.html" %}
{% include "./home/4-build-anything.html" %}
{% include "./home/5-who-is-using.html" %}
{% include "./home/6-explore.html" %}
{% include "./home/7-connect.html" %}
{% include "./home/8-open-governance.html" %}
{% endblock %}