-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (20 loc) · 904 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: default
---
{% assign sections = site.sections | sort: 'order' %}
{% for section in sections %}
<section id="section-{{ section.name | split: '.' | first }}" class="wrapper {{ section.styles | join: ' ' }} {% if section.spotlights %} spotlights {% endif %} fade-up">
{%- capture imgpath -%}assets/img/{{ section.background }}{%- endcapture -%}
{%- if section.background -%}
{% responsive_image_block %}
path: {{ imgpath }}
template: _includes/responsive-image-section-background.html
{% endresponsive_image_block %}
{%- endif -%}
{% unless section.spotlights %}<div class="inner">{% endunless %}
{{ section.content }}
{% unless section.spotlights %}</div>{% endunless %}
</section>
{% endfor %}