initial commit

This commit is contained in:
timurgordon
2022-02-03 14:39:30 +03:00
commit 6092adaa9b
70 changed files with 7123 additions and 0 deletions

31
templates/index.html Normal file
View File

@@ -0,0 +1,31 @@
{% extends "_default/base.html" %}
{% block content %}
<main class="pt-16">
<!-- Landing page banner -->
{% include "partials/splitRow.html" %}
<!-- Landing page vertical image -->
<img src="processed_images/threefold_img2.png" alt="">
{%- set section = get_section(path="about/community/_index.md") %}
<br/>
<!-- Landing page banner -->
{% include "partials/splitRow.html" %}
{%- set section = get_section(path="about/sustainability/_index.md") %}
<br/>
<!-- Landing page banner -->
{% include "partials/splitRow.html" %}
{%- set section = get_section(path="about/creators/_index.md") %}
<br/>
<!-- Landing page banner -->
{% include "partials/splitRow.html" %}
</main>
{% endblock content %}