cleaned shortcodes, automized header creation
This commit is contained in:
31
templates/index copy.html
Normal file
31
templates/index copy.html
Normal file
@@ -0,0 +1,31 @@
|
||||
{% extends "_default/base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<!-- Landing page template, has a banner and rows of page summaries -->
|
||||
<main class="pt-16">
|
||||
|
||||
<!-- Landing page banner -->
|
||||
{% include "partials/splitRow.html" %}
|
||||
|
||||
<!-- Landing page full width vertical image -->
|
||||
<img src="/images/threefold_img2.png" alt="">
|
||||
<br/>
|
||||
|
||||
{%- set section = get_section(path="about/community/_index.md") %}
|
||||
{% include "partials/splitRow.html" %}
|
||||
<br/>
|
||||
|
||||
<!-- Summary row of sustainability page -->
|
||||
{%- set section = get_section(path="about/sustainability/_index.md") %}
|
||||
{% include "partials/splitRow.html" %}
|
||||
<br/>
|
||||
|
||||
<!-- Summary row of creators page -->
|
||||
{%- set section = get_section(path="about/creators/_index.md") %}
|
||||
{% include "partials/splitRow.html" %}
|
||||
|
||||
|
||||
|
||||
|
||||
</main>
|
||||
{% endblock content %}
|
Reference in New Issue
Block a user